0fb1715b7ce3ed5da3a4a256785d1dd14679e0e8
[debian/amanda] / man / xml-source / amanda-auth.7.xml
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
3                    "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"
4 [
5   <!-- entities files to use -->
6   <!ENTITY % global_entities SYSTEM '../entities/global.entities'>
7   %global_entities;
8 ]>
9
10 <refentry id='amanda-auth.7'>
11
12 <refmeta>
13   <refentrytitle>amanda-auth</refentrytitle>
14   <manvolnum>7</manvolnum>
15 &rmi.source;
16 &rmi.version;
17 &rmi.manual.7;
18 </refmeta>
19 <refnamediv>
20   <refname>amanda-auth</refname>
21   <refpurpose>Communication/Authentication methods between &A; server and client</refpurpose>
22 </refnamediv>
23 <refentryinfo>
24   &author.jlm;
25   &author.dustin;
26   &author.pby;
27 </refentryinfo>
28
29 <!-- body begins here -->
30
31 <refsect1><title>DESCRIPTION</title>
32   <para>&A; offers 7 methods of communication between Amanda server (sometimes also called the tape server) and clients, each with its own authentication method.  The desired communication method is specified by the <emphasis remap='I'>auth</emphasis> parameter in the amanda.conf file (&amconf;) commonly as a dumptype.  Valid values to the <emphasis remap='I'>auth</emphasis> parameter are <emphasis remap='B'>bsd</emphasis>, <emphasis remap='B'>bsdudp</emphasis>, <emphasis remap='B'>bsdtcp</emphasis>, <emphasis remap='B'>krb4</emphasis>, <emphasis remap='B'>krb5</emphasis>, <emphasis remap='B'>local</emphasis>, <emphasis remap='B'>rsh</emphasis>, and <emphasis remap='B'>ssh</emphasis>. Please note that <emphasis remap='B'>krb4</emphasis> will be removed in the next release.  The authentication and communication method is used during the backup process &amdump; (amdump(8)) as well as the recovery process &amrecover; (amrecover(8)).  For detailed information, please see http://wiki.zmanda.com/index.php/Server/Client_authentication.</para>
33 </refsect1>
34
35 <refsect1><title>COMPILATION AND GENERAL INFORMATION</title>
36   <para>The communication method and thus type of authentication that will be used by the Amanda server is specified by the <emphasis remap='I'>auth</emphasis> parameter in the dumptype for each disklist entry (DLE).  The <emphasis remap='I'>auth</emphasis> parameter thus may be easily and globally specified in the "global" dumptype.  If <emphasis remap='I'>auth</emphasis> is not specified, the <emphasis remap='B'>bsd</emphasis> communication method is used.  See &amconf; for more information on Amanda configuration and dumptypes, and &disklist; for more information on disklists.</para>
37
38 <para>On the client side, the Amanda daemon &amandad; validates the connection depending on the value of the <emphasis remap='B'>auth</emphasis> argument passed to it (see &A;(8)).  Also, when it comes to recovery, the <emphasis remap='B'>auth</emphasis> parameter can be specified in the &amclientconf; file to specify the communication method to be used by the client to the server.</para>
39
40   <para>When &A; is being built from source code, desired communication and thus authentication methods (shown as "Authentication") must be specified as configure options at compilation time.
41 <programlisting>
42 Authentication    Configure option(s)
43  bsd                    --with-bsd-security      --with-amandahosts (pre-2.6)
44  bsdtcp         --with-bsdtcp-security   --with-amandahosts (pre-2.6)
45  bsdudp         --with-bsdudp-security   --with-amandahosts (pre-2.6)
46  krb5           --with-krb5-security
47  local           (always included)
48  rsh                    --with-rsh-security
49  ssh                    --with-ssh-security
50 </programlisting>
51   </para>
52  
53 <para>There are additional configure options for <emphasis remap='B'>bsd</emphasis>, <emphasis remap='B'>bsdudp</emphasis>, and <emphasis remap='B'>bsdtcp</emphasis> to allow for specifying explicit UDP and TCP port ranges.
54
55 <programlisting>
56    --with-udpportrange
57    --with-tcpportrange
58    --with-low-tcpportrange
59 </programlisting>
60 </para>
61
62 <para>See <emphasis remap='B'>PORT USAGE</emphasis> below for more information.</para>
63
64 <para>There are additional configure options for Kerberos if you so desire.  All but the last option are for Kerberos 4.  Defaults shown in square brackets.
65
66 <programlisting>
67    --with-server-principal=ARG    server host principal  [amanda]
68    --with-server-instance=ARG     server host instance   []
69    --with-server-keyfile=ARG      server host key file   [/.amanda]
70    --with-client-principal=ARG    client host principal  [rcmd]
71    --with-client-instance=ARG     client host instance   [HOSTNAME_INSTANCE]
72    --with-client-keyfile=ARG      client host key file   [KEYFILE]
73    --with-ticket-lifetime=ARG     ticket lifetime        [128]
74    --with-krb4-security=DIR       where libkrb.a lives   [see below]
75    --with-krb5-security=DIR       where libkrb.a lives   [see below]
76 </programlisting>
77 </para>
78
79 <para>If configuring with --with-krb4-security and/or --with-krb5-security, the configure script will search under /usr/kerberos/lib, /usr/cygnus/lib, /usr/lib, and /opt/kerberos/lib for the kerberos bits, libkrb.a, in this order.  Kerberos support will not be added if it does not find them.  If the kerberos bits are found under some other hierarchy, you can specify this via --with-krb5-security=DIR and/or --with-krb4-security=DIR, where DIR is where the kerberos bits live.  The configure script will then look in the 'lib' directory under this hierarchy for libkrb.a.</para>
80
81 <para>The <emphasis remap='B'>auth</emphasis> parameter selects a communication/authentication method to use between the client and the backup server. These methods are described each in their own section below.</para>
82 </refsect1>
83
84 <refsect1><title>BSD, BSDUDP, AND BSDTCP COMMUNICATION AND AUTHENTICATION</title>
85 <para>For more detail, see http://wiki.zmanda.com/index.php/Configuring_bsd/bsdudp/bsdtcp_authentication.</para>
86
87   <para>The <emphasis remap='B'>bsd</emphasis>, <emphasis remap='B'>bsdudp</emphasis>, and <emphasis remap='B'>bsdtcp</emphasis> communication methods use either UDP, TCP, or both protocols operating as a network service to authenticate and exchange data between server and clients.</para>
88
89   <para>In addition to compilation and general configuration (see <emphasis remap='B'>COMPILATION AND GENERAL INFORMATION</emphasis> above), the authentication method that the client is configured to receive is specified by the <emphasis remap='B'>auth</emphasis> parameter in the network service configuration for &A;. The authentication method used by an Amanda client to reach the server during recovery is the authentication method specified by the <emphasis remap='I'>auth</emphasis> parameter in the client's Amanda network service configuration or in its amanda-client.conf file (see amanda-client.conf(5)).</para>
90                         
91   <refsect2><title>.amandahosts file</title>
92     <para> Servers and clients using the bsd, bsdudp, and bsdtcp authentication methods refer to the .amandahosts file to control access.  Amanda should be compiled for this access control if one of these methods will be used and is the default compilation option for Amanda 2.6 (use --with-amandahosts when compiling pre-2.6 versions of Amanda).</para>
93
94     <para>Amanda looks for the .amandahosts file in the Amanda user's home directory, commonly /var/lib/amanda.</para>
95
96     <para>Each authorization is on its own line in the following format</para>
97
98 <para><emphasis remap='I'>hostname</emphasis> [ <emphasis remap='I'>username</emphasis> [ <emphasis remap='I'>service...</emphasis> ] ]</para>
99
100 <para>If <emphasis remap='I'>username</emphasis> is ommitted, it defaults to the user running <emphasis remap='B'>amandad</emphasis>, i.e. the user listed in the <emphasis remap='B'>inetd</emphasis> or <emphasis remap='B'>xinetd</emphasis>
101 configuration file.</para>
102
103 <para><emphasis remap='I'>service...</emphasis> is a space-delimited list of services the client is authorized to execute:
104
105 <emphasis remap='B'>noop</emphasis>,
106 <emphasis remap='B'>selfcheck</emphasis>,
107 <emphasis remap='B'>sendsize</emphasis>,
108
109 <emphasis remap='B'>sendbackup</emphasis>,
110 <emphasis remap='B'>amdump</emphasis> (a shortcut for the previous four services which are required on clients),
111 <emphasis remap='B'>amindexd</emphasis>, and
112 <emphasis remap='B'>amidxtaped</emphasis>.  The last two services are required on a server for clients to connect to it using <emphasis remap='B'>amrecover</emphasis>.</para>
113
114     <para>Example of the .amandahosts file on an Amanda client
115
116 <programlisting>
117     <emphasis remap='B'>amandaserver.example.com   amandabackup   amdump</emphasis>
118 </programlisting>
119     </para>
120
121     <para>Example of the .amandahosts file on an Amanda server
122
123 <programlisting>
124     <emphasis remap='B'>amandaclient1.example.com   root   amindexd amidxtaped</emphasis>
125 </programlisting>
126     </para>
127   </refsect2>
128
129   <refsect2><title>bsd communication and authentication</title>
130     <para>The authentication is done using .amandahosts file in the Amanda user's home directory. The protocol between Amanda server and client is UDP. The number of disk list entries (DLEs)--number of Amanda clients--is limited by the UDP packet size. This authentication protocol will use a different port for each data stream (see PORT USAGE below)</para>
131   </refsect2>
132
133   <refsect2><title>bsdudp communication and authentication</title>
134      <para>The authentication is done using .amandahosts files in the Amanda user's home directory. It uses UDP protocol between Amanda server and client for data and hence the number of DLEs is limited by the UDP packet size. It uses one TCP port to establish the connection and multiplexes all data streams using one port on the server (see PORT USAGE below).</para>
135   </refsect2>
136
137   <refsect2><title>bsdtcp communication and authentication</title>
138     <para>The authentication is done using .amandahosts files in the backup user's (for example: amandabackup) home directory. It uses TCP protocol between Amanda server and client. On the client, two reserved ports are used. On the server, all data streams are multiplexed to one port (see PORT USAGE below).</para>
139   </refsect2>
140
141   <refsect2><title>USING INETD SERVER</title>
142     <para>Template for Amanda client inetd service entry
143
144 <programlisting>
145 <emphasis remap='I'>   service_name</emphasis> <emphasis remap='I'>socket_type</emphasis> <emphasis remap='I'>protocol</emphasis> <emphasis remap='I'>wait/nowait</emphasis> <emphasis remap='I'>amanda_backup_user</emphasis> <emphasis remap='I'>absolute_path_to_amandad</emphasis> amandad <emphasis remap='I'>server_args</emphasis>
146 </programlisting>
147     </para>
148     <para>Client example of using <emphasis remap='B'>bsd</emphasis> authorization for inetd server given Amanda user is "amandabackup":
149
150 <programlisting>
151 <emphasis remap='B'>   amanda dgram udp wait amandabackup /path/to/amandad amandad -auth=bsd amdump</emphasis>
152 </programlisting>
153     </para>
154     <para>The same could be used for <emphasis remap='B'>bsdudp</emphasis> if specifying -auth=bsdudp instead of -auth=bsd.</para>
155     <para>Client example of using <emphasis remap='B'>bsdtcp</emphasis> authorization for inetd server given Amanda user is "amandabackup":
156
157 <programlisting>
158 <emphasis remap='B'>   amanda stream tcp nowait amanda /path/to/amandad amandad -auth=bsdtcp amdump</emphasis>
159 </programlisting>
160     </para>
161     <para><emphasis remap='B'>amindexd</emphasis> and <emphasis remap='B'>amidxtaped</emphasis> would typically be added at the end of the line as &amandad; server arguments for an Amanda server.</para>
162     <para>Server example of using <emphasis remap='B'>bsdtcp</emphasis> authorization for inetd server given Amanda user is "amandabackup":
163
164 <programlisting>
165 <emphasis remap='B'>   amanda stream tcp nowait amanda /path/to/amandad amandad -auth=bsdtcp amdump amindexd amidxtaped</emphasis>
166 </programlisting>
167     </para>
168     <para>For Amanda version 2.5.0 and earlier, remember that neither <emphasis remap='B'>bsdudp</emphasis> nor <emphasis remap='B'>bsdtcp</emphasis> are supported and the Amanda daemon &amandad; accepts no arguments.  Because of the latter, &amrecover; as of Amanda version 2.5.1  is not compatible with 2.5.0 and earlier servers.  Thus, servers that are 2.5.0 or earlier must, in addition to the <emphasis remap='I'>amanda</emphasis> service, run <emphasis remap='I'>amindexd</emphasis> and <emphasis remap='I'>amidxtaped</emphasis> Amanda services as their own network services, amandaidx and amidxtape, respectively (see below).</para>
169
170 <para>There are no compatibility issues if server and clients are all 2.5.0 or earlier.  If your server is 2.5.1 or later, you can still have clients that are 2.5.0 and earlier although you must then use <emphasis remap='B'>bsd</emphasis> communication/authentication with these clients and must also run <emphasis remap='I'>amindexd</emphasis> and <emphasis remap='I'>amidxtaped</emphasis> Amanda services on the server as their own network services, amandaidx and amidxtape, respectively (see below).  If you have a server that is 2.5.0 and earlier, clients of a later version on which you wish to run &amrecover; must use <emphasis remap='B'>amoldrecover</emphasis> instead and, again, the server must be running the amandaidx and amidxtape network services.</para>
171
172 <para>Example of amindexd and amidxtaped Amanda daemon services configured as their own network services for a 2.5.0 or earlier server or a newer server having 2.5.0 or earlier clients
173
174 <programlisting>
175 <emphasis remap='B'>   amandaidx stream tcp nowait amanda /usr/local/libexec/amanda/current/amindexd   amindexd</emphasis>
176 <emphasis remap='B'>   amidxtape stream tcp nowait amanda /usr/local/libexec/amanda/current/amidxtaped amidxtaped</emphasis>
177 </programlisting>
178 </para>
179   </refsect2>
180
181   <refsect2><title>USING XINETD SERVER</title>
182     <para>Template for Amanda client xinetd service file
183
184 <programlisting>
185 service amanda
186 {
187         only_from               = <emphasis remap='I'>Amanda server</emphasis>
188         socket_type             = <emphasis remap='I'>socket type</emphasis>
189         protocol                = <emphasis remap='I'>protocol</emphasis>
190         wait                    = <emphasis remap='I'>yes/no</emphasis>
191         user                    = <emphasis remap='I'>amanda backup user</emphasis>
192         group                   = <emphasis remap='I'>amanda backup user group id</emphasis>
193         groups                  = yes
194         server                  = <emphasis remap='I'>absolute path to amandad</emphasis>
195         server_args             = <emphasis remap='I'>amandad server arguments</emphasis>
196         disable                 = no
197 }
198 </programlisting>
199     </para>
200     <para>The <emphasis remap='I'>only_from</emphasis> parameter can be used with xinetd but is usually in addition to the primary form of access control via the .amandahosts file.</para>
201     <para>Client example of using <emphasis remap='B'>bsd</emphasis> authorization for xinetd server and for Amanda user "amandabackup":
202
203 <programlisting>
204 service amanda
205 {
206         only_from       = amandaserver.example.com
207         socket_type     = dgram
208         protocol        = udp
209         wait            = yes
210         user            = amandabackup
211         group           = disk
212         groups          = yes
213         server          = /path/to/amandad
214         server_args     = -auth=bsd amdump
215         disable         = no 
216 }
217 </programlisting>
218     </para>
219     <para>The same could be used for <emphasis remap='B'>bsdudp</emphasis> if specifying -auth=bsdudp instead of -auth=bsd.</para>
220     <para>Client example of using <emphasis remap='B'>bsdtcp</emphasis> authorization for xinetd server and for Amanda user "amandabackup":
221
222 <programlisting>
223 service amanda
224 {
225         only_from       = amandaserver.example.com amandaclient.example.com
226         socket_type     = stream
227         protocol        = tcp
228         wait            = no
229         user            = amandabackup
230         group           = disk
231         groups          = yes
232         server          = /path/to/amandad
233         server_args     = -auth=bsdtcp amdump
234         disable         = no 
235 }
236 </programlisting>
237     </para>
238     <para><emphasis remap='B'>amindexd</emphasis> and <emphasis remap='B'>amidxtaped</emphasis> would typically be added as additional &amandad; <emphasis remap='I'>server_args</emphasis> for an Amanda server.</para>
239     <para>For Amanda version 2.5.0 and earlier, remember that neither <emphasis remap='B'>bsdudp</emphasis> nor <emphasis remap='B'>bsdtcp</emphasis> are supported and the Amanda daemon &amandad; accepts no arguments.  Because of the latter, &amrecover; as of Amanda version 2.5.1  is not compatible with 2.5.0 and earlier servers.  Thus, servers that are 2.5.0 or earlier must, in addition to the <emphasis remap='I'>amanda</emphasis> service, run <emphasis remap='I'>amindexd</emphasis> and <emphasis remap='I'>amidxtaped</emphasis> Amanda services as their own network services, amandaidx and amidxtape, respectively (see below).</para>
240
241 <para>There are no compatibility issues if server and clients are all 2.5.0 or earlier.  If your server is 2.5.1 or later, you can still have clients that are 2.5.0 and earlier although you must then use <emphasis remap='B'>bsd</emphasis> communication/authentication with these clients and must also run <emphasis remap='I'>amindexd</emphasis> and <emphasis remap='I'>amidxtaped</emphasis> Amanda services on the server as their own network services, amandaidx and amidxtape, respectively (see below).  If you have a server that is 2.5.0 and earlier, clients of a later version on which you wish to run &amrecover; must use <emphasis remap='B'>amoldrecover</emphasis> instead and, again, the server must be running the amandaidx and amidxtape network services.</para>
242
243 <para>Example of amindexd and amidxtaped Amanda daemon services configured as their own network services for a 2.5.0 or earlier server or a newer server having 2.5.0 or earlier clients
244 <programlisting>
245 service amandaidx
246 {
247         socket_type             = stream
248         protocol                = tcp
249         wait                    = no
250         user                    = amanda
251         group                   = disk
252         server                  = /usr/local/libexec/amanda/amindexd 
253         disable                 = no
254 }
255
256 service amidxtape
257 {
258         socket_type             = stream
259         protocol                = tcp
260         wait                    = no
261         user                    = amanda
262         group                   = disk
263         server                  = /usr/local/libexec/amanda/amidxtaped
264         disable                 = no
265 }
266
267 </programlisting>
268 </para>
269   </refsect2>
270
271   <refsect2><title>PORT USAGE</title>
272     <para>List of TCP/UDP ports used by network service communication methods for Amanda server and client.
273
274 <programlisting>
275    Key:
276        UP = Unreserved Port
277     RPpAP = Reserved Port per Amanda Process
278    UPpDLE = Unreserved Port per DLE
279      [..] = Configure options that can be used at compile time to define port ranges
280
281 Authentication  Protocol        Amanda server                                   Amanda client
282 bsd                     udp             1 RPpAP [--with-udpportrange]           10080
283                         tcp             1 UP [--with-tcpportrange]              3 UPpDLE [--with-tcpportrange]
284 bsdudp          udp             1 RPpAP [--with-udpportrange]           10080
285                         tcp             1 UP [-with-tcpportrange]               1 UPpDLE [--with-tcpportrange]
286 bsdtcp          tcp             1 RPpAP [--with-low-tcpportrange]       10080
287 </programlisting>
288 </para>
289     <para>Amanda server also uses two ports (dumper process) to communicate with the chunker/taper processes. These ports are in the range set by --with-tcpportrange.</para>
290 <para>You can override the default port ranges that Amanda was compiled with in each configuration using the <emphasis remap='I'>reserved-udp-port</emphasis>, <emphasis remap='I'>reserved-tcp-port</emphasis>, and <emphasis remap='I'>unreserved-tcp-port</emphasis> parameters in amanda.conf and amanda-client.conf configuration files (see &amconf; and &amclientconf;).</para>
291   </refsect2>
292 </refsect1>
293
294 <refsect1><title>KERBEROS COMMUNICATION AND AUTHENTICATION</title>
295 For more detail, see http://wiki.zmanda.com/index.php/Kerberos_authentication.
296
297 <para>Amanda supports Kerberos 4 and 5 communication methods between Amanda server and client. Please note, however, that support for Kerberos 4 will be removed in the next release.</para>
298
299 <para>General information including compilation are given above (see <emphasis remap='B'>COMPILATION AND GENERAL INFORMATION</emphasis> above).  Below sections give specific Kerberos 4 and 5 information.</para>
300
301 <refsect2><title>KERBEROS v4</title>
302 Please note that support for Kerberos 4 will be removed in the next release.
303
304 Kerberos 4 uses UDP protocol and the number of DLEs is limited by UDP packet size.
305
306 The kerberized AMANDA service uses a different port on the client hosts. The /etc/services line is:
307
308     kamanda      10081/udp
309
310 <para>And the /etc/inetd.conf line is:
311
312 <programlisting>
313     kamanda dgram udp wait root /usr/local/libexec/amanda/amandad amandad -auth=krb4
314 </programlisting>
315 </para>
316
317 <para>Note that you're running this as root, rather than as your dump user. AMANDA will set its uid down to the dump user at times it doesn't need to read the srvtab file, and give up root permissions entirely before it goes off and runs dump. Alternately you can change your srvtab files to be readable by user amanda.</para>
318
319 <para>The following dumptype options apply to krb4:
320
321 <programlisting>
322 auth "krb4"    # use krb4 auth for this host
323                # (you can mingle krb hosts and bsd .rhosts in one conf)
324 kencrypt       # encrypt this filesystem over the net using the krb4
325                # session key.  About 2x slower.  Good for those root
326                # partitions containing your keyfiles.  Don't want to
327                # give away the keys to an ethernet sniffer!
328                # This is currently always enabled.  There is no
329                # way to disable it.  This is a bug.
330 </programlisting>
331 </para>
332 </refsect2>
333
334 <refsect2><title>KERBEROS v5</title>
335 <para>Kerberos 5 uses TCP and the server uses only one TCP port and data streams are multiplexed to this port.</para>
336
337 The <emphasis remap='B'>krb5</emphasis> driver script defaults to:
338
339 /*
340  * The lifetime of our tickets in minutes.
341  */
342 #define AMANDA_TKT_LIFETIME     (12*60)
343
344 /*
345  * The name of the service in /etc/services.
346  */
347 #define AMANDA_KRB5_SERVICE_NAME        "k5amanda"
348
349 You can currently only override these by editing the source code.
350
351 The kerberized AMANDA service uses a different port on the client hosts. The /etc/services line is:
352
353    k5amanda      10082/tcp
354
355 <para>And the /etc/inetd.conf line is:
356
357 <programlisting>
358    k5amanda stream tcp nowait root /usr/local/libexec/amanda/amandad amandad -auth=krb5
359 </programlisting>
360 </para>
361
362 <para>Note that you're running this as root, rather than as your dump user.  AMANDA will set its UID down to the dump user at times it doesn't need to read the keytab file, and give up root permissions entirely before it goes off and runs dump.  Alternately you can change your keytab files to be readable by user amanda. You should understand the security implications of this before changing the permissions on the keytab.</para>
363
364 <para>The following dumptype options apply to <emphasis remap='B'>krb5</emphasis>:
365
366 <programlisting>
367    auth "krb5"    # use krb5 auth for this host
368                   # (you can mingle krb hosts and bsd .rhosts in one conf)
369 </programlisting>
370 </para>
371
372 <para>The principal and keytab files that Amanda uses must be set in the amanda.conf file for kerberos 5 dumps to work. You can hardcode this in the source code if you really want to (common-src/krb5-security.c)
373
374 <programlisting>
375    krb5keytab
376    krb5principal
377 </programlisting>
378 </para>
379
380 <para>For example:
381
382 <programlisting>
383    krb5keytab     "/etc/krb5.keytab-amanda"
384    krb5principal  "amanda/saidin.omniscient.com"
385 </programlisting>
386 </para>
387
388 <para>The principal in the second option must be contained in the first. The keytab should be readable by the amanda user (and definitely not world readable!) and is (obviously) on the server.  In MIT's kadmin, the following:
389
390 <programlisting>
391    addprinc -randkey amanda/saidin.omniscient.com
392    ktadd -k /etc/krb5.keytab-amanda amanda/saidin.omniscient.com
393 </programlisting>
394 </para>
395
396 <para>will do the trick. You will obviously want to change the principal name to reflect something appropriate for the conventions at your site.</para>
397
398 <para>You must also configure each client to allow the amanda principal in for dumps.</para>
399
400 <para>There are several ways to go about authorizing a server to connect to a client.</para>
401
402 <para>The normal way is via a .k5amandausers file or a .k5login file in the client user's home directory. The determination of which file to use is based on the way you ran configure on AMANDA. By default, AMANDA will use .k5amandahosts, but if you configured with --without-amandahosts, AMANDA will use .k5login. (similar to the default for .rhosts/.amandahosts-style security). The .k5login file syntax is a superset of the default <emphasis remap='B'>krb5</emphasis> .k5login. The routines to check it are implemented in amanda rather than using krb5_kuserok because the connections are actually gssapi based.</para>
403
404 <para>This .k5amandahosts/.k5login is a hybrid of the .amandahosts and a .k5login file. You can just list principal names, as in a .k5login file and the principal will be permitted in from any host. If you do NOT specify a realm, then there is no attempt to validate the realm (this is only really a concern if you have cross-realm authentication set up with another realm or something else that allows you multiple realms in your kdc. If you do specify a realm, only that principal@realm will be permitted to connect.</para>
405
406 <para>You may prepend this with a hostname and whitespace, and only that principal (with optional realm as above) will be permitted to access from that hostname.</para>
407
408 <para>Here are examples of valid entries in the .k5amandahosts:
409
410 <programlisting>
411    service/amanda
412    service/amanda@TEST.COM
413    dumpmaster.test.com service/amanda
414    dumpmaster.test.com service/amanda@TEST.COM
415 </programlisting>
416 </para>
417
418 <para>Rather than using a .k5amandahosts or .k5login file, the easiest way is to use a principal named after the destination user, (such as amanda@TEST.COM in our example) and not have either a .k5amandahosts or .k5login file in the destination user's home directory.</para>
419
420 <para>There is no attempt to verify the realm in this case (only a concern if you have cross-realm authentication setup).</para>
421 </refsect2>
422 </refsect1>
423
424 <refsect1><title>LOCAL COMMUNICATION</title>
425 <para>The Amanda server communicates with the client internally versus over the network, ie. the client is also the server.</para>
426 <para>This is the only method that requires no authentication as it is clearly not needed.</para>
427 </refsect1>
428
429 <refsect1><title>RSH COMMUNICATION AND AUTHENTICATION</title>
430 For more detail, see http://wiki.zmanda.com/index.php/Configuring_rsh_authentication.
431
432 <para>The Amanda server communicates with its client as the Amanda user via the RSH protocol.</para>
433
434 <para>Please note that RSH protocol itself is insecure and should be used with caution especially on any servers and clients with public IPs.</para>
435
436 <para>Each Amanda client communicates with the server using one TCP port and all data streams from the client are multiplexed over one port. The number of Amanda clients is limited by the number of reserved ports available on the Amanda server. Some versions of RSH do not use reserved ports and, thus, this restriction is not valid.</para>
437
438 <para>General information including compilation is given above (see <emphasis remap='B'>COMPILATION AND GENERAL INFORMATION</emphasis> above).</para>
439
440 <para>In addition to specifying the <emphasis remap='I'>auth</emphasis> field in dumptype definition, it might be required to specify <emphasis remap='I'>client_username</emphasis> and &amandad; fields. If the backup user name is different on the Amanda client, the user name is specified as <emphasis remap='B'>client_username</emphasis>. If the location of the Amanda daemon &amandad; is different on the Amanda client, the location is specified as <emphasis remap='I'>amandad_path</emphasis> field value.
441
442 <programlisting>
443 For example:
444 define dumptype rsh_example {
445          ...
446          auth "rsh"
447          client_username "amandabackup"
448          amandad_path "/usr/lib/exec/amandad"
449          ...
450 }
451 </programlisting>
452 </para>
453 </refsect1>
454
455 <refsect1><title>SSH COMMUNICATION AND AUTHENTICATION</title>
456 For more detail, see http://wiki.zmanda.com/index.php/How_To:Set_up_transport_encryption_with_SSH.
457
458 Amanda client sends data to the server using SSH. SSH keys have to be set up so that Amanda server can communicate with its clients using SSH.
459
460 General information including compilation is given above (see <emphasis remap='B'>COMPILATION AND GENERAL INFORMATION</emphasis> above).
461
462 SSH provides transport encryption and authentication. To set up an SSH authentication session, Amanda will run the equivalent of the following to start the backup process.
463
464 <emphasis remap='B'>   /path/to/ssh -l <emphasis remap='I'>user_name</emphasis> client.zmanda.com $libexecdir/amandad</emphasis>
465
466 To use SSH, you need to set up SSH keys either by storing the passphrase in cleartext, using ssh-agent, or using no passphrase at all.  All of these options have security implications which should be carefully considered before adoption.
467
468 When you use a public key on the client to do data encryption (see http://wiki.zmanda.com/index.php/How_To:Set_up_data_encryption), you can lock away the private key in a secure place. Both, transport and storage will be encrypted with such a setup. See http://wiki.zmanda.com/index.php/Encryption for an overview of encryption options.
469
470 Enable SSH authentication and set the ssh_keys option in all DLEs for that host by adding the following to the DLE itself or to the corresponding dumptype in amanda.conf:
471
472   auth "ssh"
473   ssh_keys "/home/amandabackup/.ssh/id_rsa_amdump"
474
475 <emphasis remap='I'>ssh_keys</emphasis> is the path to the private key on the client. If the username to which Amanda should connect is different from the default, then you should also add
476
477   client_username "otherusername"
478
479 If your server &amandad; path and client &amandad; path are different, you should also add
480
481   amandad_path "/client/amandad/path"
482
483 <para>For a marginal increase in security, prepend the keys used for AMANDA in the clients' authorized_keys file with the following:
484
485 <programlisting>
486   from="amanda_server.your.domain.com",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/absolute/path/to/amandad -auth=ssh amdump"
487 </programlisting>
488 </para>
489
490 <para>This will limit that key to connect only from Amanda server and only be able to execute &amandad;(8).</para>
491
492 <para>In the same way, prepend the key used for AMANDA in the server's authorized_keys file with:
493
494 <programlisting>
495   from="amanda_client.your.domain.com",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/absolute/path/to/amandad -auth=ssh amindexd amidxtaped"
496 </programlisting>
497 </para>
498
499 <para>You can omit the from=.. option if you have too many clients to list, although this has obvious security implications.</para>
500
501 <para>Set ssh_keys and any other necessary options in /etc/amanda/amanda_client.conf:
502
503 <programlisting>
504   auth "ssh"
505   ssh_keys "/root/.ssh/id_rsa_amrecover"
506   client_username "amanda"
507   amandad_path "/server/amandad/path"
508 </programlisting>
509 </para>
510
511 <para>Besides user keys, SSH uses host keys to uniquely identify each host, to prevent one host from impersonating another. Unfortunately, the only easy way to set up these host keys is to make a connection and tell SSH that you trust the identity:
512
513 <programlisting>
514   $ ssh client1.zmanda.com
515   The authenticity of host 'client1.zmanda.com (192.168.10.1)' can't be established.
516   RSA key fingerprint is 26:4e:df:a2:be:c8:cb:20:1c:68:8b:cc:c0:3b:8e:9d.
517   Are you sure you want to continue connecting (yes/no)?yes
518 </programlisting>
519 </para>
520
521 <para>As Amanda will not answer this question itself, you must manually make every connection (server to client and client to server) that you expect Amanda to make. Note that you must use the same username that Amanda will use (that is, ssh client and ssh client.domain.com are distinct).</para>
522 </refsect1>
523
524 <refsect1><title>SEE ALSO</title>
525 <para>
526 &amconf;,
527 &amclientconf;,
528 &disklist;,
529 &amdump;(8),
530 &amrecover;(8)
531 <ulink url="http://wiki.zmanda.com"/>
532 </para>
533 </refsect1>
534
535 </refentry>