1a97ad2b13ee13d62b56f8d3eb16ef99509e0266
[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 '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 Amanda 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>Amanda 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)).</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 Amanda(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 Amanda 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 additional information including example configurations, 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 Amanda. 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   <para>By default, Amanda use the "amanda" service name and associated port set in /etc/services. It can be changed by setting the dumptype <emphasis remap='I'>client_port</emphasis> option to a different port number or a different service name.
92   All examples are for the service name "amanda" that uses the default port 10080.</para>
93
94
95   <refsect2><title>.amandahosts file</title>
96     <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>
97
98     <para>Amanda looks for the .amandahosts file in the Amanda user's home directory, commonly /var/lib/amanda.</para>
99
100     <para>Each authorization is on its own line in the following format</para>
101
102 <para><emphasis remap='I'>hostname</emphasis> [ <emphasis remap='I'>username</emphasis> [ <emphasis remap='I'>service...</emphasis> ] ]</para>
103
104 <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>
105 configuration file.</para>
106
107 <para><emphasis remap='I'>service...</emphasis> is a space-delimited list of services the client is authorized to execute:
108
109 <emphasis remap='B'>noop</emphasis>,
110 <emphasis remap='B'>selfcheck</emphasis>,
111 <emphasis remap='B'>sendsize</emphasis>,
112
113 <emphasis remap='B'>sendbackup</emphasis>,
114 <emphasis remap='B'>amdump</emphasis> (a shortcut for the previous four services which are required on clients),
115 <emphasis remap='B'>amindexd</emphasis>, and
116 <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>
117
118 <para>If service is omitted, it defaults to <emphasis remap='B'>noop selfcheck sendsize sendbackup</emphasis> (which is equivalent to <emphasis remap='B'>amdump</emphasis>).</para>
119
120     <para>Example of the .amandahosts file on an Amanda client
121
122 <programlisting>
123     <emphasis remap='B'>amandaserver.example.com   amandabackup   amdump</emphasis>
124 </programlisting>
125     </para>
126
127     <para>Example of the .amandahosts file on an Amanda server
128
129 <programlisting>
130     <emphasis remap='B'>amandaclient1.example.com   root   amindexd amidxtaped</emphasis>
131 </programlisting>
132     </para>
133   </refsect2>
134
135   <refsect2><title>bsd communication and authentication</title>
136     <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>
137   </refsect2>
138
139   <refsect2><title>bsdudp communication and authentication</title>
140      <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>
141   </refsect2>
142
143   <refsect2><title>bsdtcp communication and authentication</title>
144     <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>
145   </refsect2>
146
147   <refsect2><title>USING INETD SERVER</title>
148     <para>Template for Amanda client inetd service entry
149
150 <programlisting>
151 <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>
152 </programlisting>
153     </para>
154     <para>Client example of using <emphasis remap='B'>bsd</emphasis> authorization for inetd server given Amanda user is "amandabackup":
155
156 <programlisting>
157 <emphasis remap='B'>   amanda dgram udp wait amandabackup /path/to/amandad amandad -auth=bsd amdump</emphasis>
158 </programlisting>
159     </para>
160     <para>The same could be used for <emphasis remap='B'>bsdudp</emphasis> if specifying -auth=bsdudp instead of -auth=bsd.</para>
161     <para>Client example of using <emphasis remap='B'>bsdtcp</emphasis> authorization for inetd server given Amanda user is "amandabackup":
162
163 <programlisting>
164 <emphasis remap='B'>   amanda stream tcp nowait amanda /path/to/amandad amandad -auth=bsdtcp amdump</emphasis>
165 </programlisting>
166     </para>
167     <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>
168     <para>Server example of using <emphasis remap='B'>bsdtcp</emphasis> authorization for inetd server given Amanda user is "amandabackup":
169
170 <programlisting>
171 <emphasis remap='B'>   amanda stream tcp nowait amanda /path/to/amandad amandad -auth=bsdtcp amdump amindexd amidxtaped</emphasis>
172 </programlisting>
173     </para>
174     <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>
175
176 <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>
177
178 <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
179
180 <programlisting>
181 <emphasis remap='B'>   amandaidx stream tcp nowait amanda /usr/local/libexec/amanda/current/amindexd   amindexd</emphasis>
182 <emphasis remap='B'>   amidxtape stream tcp nowait amanda /usr/local/libexec/amanda/current/amidxtaped amidxtaped</emphasis>
183 </programlisting>
184 </para>
185   </refsect2>
186
187   <refsect2><title>USING XINETD SERVER</title>
188     <para>Template for Amanda client xinetd service file
189
190 <programlisting>
191 service amanda
192 {
193         only_from               = <emphasis remap='I'>Amanda server</emphasis>
194         socket_type             = <emphasis remap='I'>socket type</emphasis>
195         protocol                = <emphasis remap='I'>protocol</emphasis>
196         wait                    = <emphasis remap='I'>yes/no</emphasis>
197         user                    = <emphasis remap='I'>amanda backup user</emphasis>
198         group                   = <emphasis remap='I'>amanda backup user group id</emphasis>
199         groups                  = yes
200         server                  = <emphasis remap='I'>absolute path to amandad</emphasis>
201         server_args             = <emphasis remap='I'>amandad server arguments</emphasis>
202         disable                 = no
203 }
204 </programlisting>
205     </para>
206     <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>
207     <para>Client example of using <emphasis remap='B'>bsd</emphasis> authorization for xinetd server and for Amanda user "amandabackup":
208
209 <programlisting>
210 service amanda
211 {
212         only_from       = amandaserver.example.com
213         socket_type     = dgram
214         protocol        = udp
215         wait            = yes
216         user            = amandabackup
217         group           = disk
218         groups          = yes
219         server          = /path/to/amandad
220         server_args     = -auth=bsd amdump
221         disable         = no 
222 }
223 </programlisting>
224     </para>
225     <para>The same could be used for <emphasis remap='B'>bsdudp</emphasis> if specifying -auth=bsdudp instead of -auth=bsd.</para>
226     <para>Client example of using <emphasis remap='B'>bsdtcp</emphasis> authorization for xinetd server and for Amanda user "amandabackup":
227
228 <programlisting>
229 service amanda
230 {
231         only_from       = amandaserver.example.com amandaclient.example.com
232         socket_type     = stream
233         protocol        = tcp
234         wait            = no
235         user            = amandabackup
236         group           = disk
237         groups          = yes
238         server          = /path/to/amandad
239         server_args     = -auth=bsdtcp amdump
240         disable         = no 
241 }
242 </programlisting>
243     </para>
244     <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>
245     <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>
246
247 <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>
248
249 <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
250 <programlisting>
251 service amandaidx
252 {
253         socket_type             = stream
254         protocol                = tcp
255         wait                    = no
256         user                    = amanda
257         group                   = disk
258         server                  = /usr/local/libexec/amanda/amindexd 
259         disable                 = no
260 }
261
262 service amidxtape
263 {
264         socket_type             = stream
265         protocol                = tcp
266         wait                    = no
267         user                    = amanda
268         group                   = disk
269         server                  = /usr/local/libexec/amanda/amidxtaped
270         disable                 = no
271 }
272
273 </programlisting>
274 </para>
275   </refsect2>
276
277   <refsect2><title>PORT USAGE</title>
278     <para>List of TCP/UDP ports used by network service communication methods for Amanda server and client.
279
280 <programlisting>
281    Key:
282        UP = Unreserved Port
283     RPpAP = Reserved Port per Amanda Process
284    UPpDLE = Unreserved Port per DLE
285      [..] = Configure options that can be used at compile time to define port ranges
286
287 Authentication  Protocol        Amanda server                                   Amanda client
288 bsd                     udp             1 RPpAP [--with-udpportrange]           10080
289                         tcp             1 UP [--with-tcpportrange]              3 UPpDLE [--with-tcpportrange]
290 bsdudp          udp             1 RPpAP [--with-udpportrange]           10080
291                         tcp             1 UP [-with-tcpportrange]               1 UPpDLE [--with-tcpportrange]
292 bsdtcp          tcp             1 RPpAP [--with-low-tcpportrange]       10080
293 </programlisting>
294 </para>
295     <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>
296 <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>
297   </refsect2>
298 </refsect1>
299
300 <refsect1><title>KERBEROS COMMUNICATION AND AUTHENTICATION</title>
301 For more detail, see http://wiki.zmanda.com/index.php/Kerberos_authentication.
302
303 <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>
304
305 <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>
306
307 <refsect2><title>KERBEROS v4</title>
308 Please note that support for Kerberos 4 will be removed in the next release.
309
310 Kerberos 4 uses UDP protocol and the number of DLEs is limited by UDP packet size.
311
312 The kerberized AMANDA service uses a different port on the client hosts. The /etc/services line is:
313
314     kamanda      10081/udp
315
316 <para>And the /etc/inetd.conf line is:
317
318 <programlisting>
319     kamanda dgram udp wait root /usr/local/libexec/amanda/amandad amandad -auth=krb4
320 </programlisting>
321 </para>
322
323 <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>
324
325 <para>The following dumptype options apply to krb4:
326
327 <programlisting>
328 auth "krb4"    # use krb4 auth for this host
329                # (you can mingle krb hosts and bsd .rhosts in one conf)
330 kencrypt       # encrypt this filesystem over the net using the krb4
331                # session key.  About 2x slower.  Good for those root
332                # partitions containing your keyfiles.  Don't want to
333                # give away the keys to an ethernet sniffer!
334                # This is currently always enabled.  There is no
335                # way to disable it.  This is a bug.
336 </programlisting>
337 </para>
338 </refsect2>
339
340 <refsect2><title>KERBEROS v5</title>
341 <para>Kerberos 5 uses TCP and the server uses only one TCP port and data streams are multiplexed to this port.</para>
342
343 The <emphasis remap='B'>krb5</emphasis> driver script defaults to:
344
345 /*
346  * The lifetime of our tickets in minutes.
347  */
348 #define AMANDA_TKT_LIFETIME     (12*60)
349
350 /*
351  * The name of the service in /etc/services.
352  */
353 #define AMANDA_KRB5_SERVICE_NAME        "k5amanda"
354
355 You can currently only override these by editing the source code.
356
357 The kerberized AMANDA service uses a different port on the client hosts. The /etc/services line is:
358
359    k5amanda      10082/tcp
360
361 <para>And the /etc/inetd.conf line is:
362
363 <programlisting>
364    k5amanda stream tcp nowait root /usr/local/libexec/amanda/amandad amandad -auth=krb5
365 </programlisting>
366 </para>
367
368 <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>
369
370 <para>The following dumptype options apply to <emphasis remap='B'>krb5</emphasis>:
371
372 <programlisting>
373    auth "krb5"    # use krb5 auth for this host
374                   # (you can mingle krb hosts and bsd .rhosts in one conf)
375 </programlisting>
376 </para>
377
378 <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)
379
380 <programlisting>
381    krb5keytab
382    krb5principal
383 </programlisting>
384 </para>
385
386 <para>For example:
387
388 <programlisting>
389    krb5keytab     "/etc/krb5.keytab-amanda"
390    krb5principal  "amanda/saidin.omniscient.com"
391 </programlisting>
392 </para>
393
394 <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:
395
396 <programlisting>
397    addprinc -randkey amanda/saidin.omniscient.com
398    ktadd -k /etc/krb5.keytab-amanda amanda/saidin.omniscient.com
399 </programlisting>
400 </para>
401
402 <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>
403
404 <para>You must also configure each client to allow the amanda principal in for dumps.</para>
405
406 <para>There are several ways to go about authorizing a server to connect to a client.</para>
407
408 <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>
409
410 <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>
411
412 <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>
413
414 <para>Here are examples of valid entries in the .k5amandahosts:
415
416 <programlisting>
417    service/amanda
418    service/amanda@TEST.COM
419    dumpmaster.test.com service/amanda
420    dumpmaster.test.com service/amanda@TEST.COM
421 </programlisting>
422 </para>
423
424 <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>
425
426 <para>There is no attempt to verify the realm in this case (only a concern if you have cross-realm authentication setup).</para>
427 </refsect2>
428 </refsect1>
429
430 <refsect1><title>LOCAL COMMUNICATION</title>
431 <para>The Amanda server communicates with the client internally versus over the network, ie. the client is also the server.</para>
432 <para>This is the only method that requires no authentication as it is clearly not needed.</para>
433 </refsect1>
434
435 <refsect1><title>RSH COMMUNICATION AND AUTHENTICATION</title>
436 For more detail, see http://wiki.zmanda.com/index.php/Configuring_rsh_authentication.
437
438 <para>The Amanda server communicates with its client as the Amanda user via the RSH protocol.</para>
439
440 <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>
441
442 <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>
443
444 <para>General information including compilation is given above (see <emphasis remap='B'>COMPILATION AND GENERAL INFORMATION</emphasis> above).</para>
445
446 <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.
447
448 <programlisting>
449 For example:
450 define dumptype rsh_example {
451          ...
452          auth "rsh"
453          client_username "amandabackup"
454          amandad_path "/usr/lib/exec/amandad"
455          ...
456 }
457 </programlisting>
458 </para>
459 </refsect1>
460
461 <refsect1><title>SSH COMMUNICATION AND AUTHENTICATION</title>
462 For more detail, see http://wiki.zmanda.com/index.php/How_To:Set_up_transport_encryption_with_SSH.
463
464 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.
465
466 General information including compilation is given above (see <emphasis remap='B'>COMPILATION AND GENERAL INFORMATION</emphasis> above).
467
468 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.
469
470 <emphasis remap='B'>   /path/to/ssh -l <emphasis remap='I'>user_name</emphasis> client.zmanda.com $libexecdir/amandad</emphasis>
471
472 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.
473
474 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.
475
476 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:
477
478   auth "ssh"
479   ssh_keys "/home/amandabackup/.ssh/id_rsa_amdump"
480
481 <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
482
483   client_username "otherusername"
484
485 If your server &amandad; path and client &amandad; path are different, you should also add
486
487   amandad_path "/client/amandad/path"
488
489 <para>For a marginal increase in security, prepend the keys used for AMANDA in the clients' authorized_keys file with the following:
490
491 <programlisting>
492   from="amanda_server.your.domain.com",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/absolute/path/to/amandad -auth=ssh amdump"
493 </programlisting>
494 </para>
495
496 <para>This will limit that key to connect only from Amanda server and only be able to execute &amandad;(8).</para>
497
498 <para>In the same way, prepend the key used for AMANDA in the server's authorized_keys file with:
499
500 <programlisting>
501   from="amanda_client.your.domain.com",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/absolute/path/to/amandad -auth=ssh amindexd amidxtaped"
502 </programlisting>
503 </para>
504
505 <para>You can omit the from=.. option if you have too many clients to list, although this has obvious security implications.</para>
506
507 <para>Set ssh_keys and any other necessary options in /etc/amanda/amanda_client.conf:
508
509 <programlisting>
510   auth "ssh"
511   ssh_keys "/root/.ssh/id_rsa_amrecover"
512   client_username "amanda"
513   amandad_path "/server/amandad/path"
514 </programlisting>
515 </para>
516
517 <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:
518
519 <programlisting>
520   $ ssh client1.zmanda.com
521   The authenticity of host 'client1.zmanda.com (192.168.10.1)' can't be established.
522   RSA key fingerprint is 26:4e:df:a2:be:c8:cb:20:1c:68:8b:cc:c0:3b:8e:9d.
523   Are you sure you want to continue connecting (yes/no)?yes
524 </programlisting>
525 </para>
526
527 <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>
528 </refsect1>
529
530 <seealso>
531 <manref name="amanda.conf" vol="5" />
532 <manref name="amanda-client.conf" vol="5" />
533 <manref name="disklist" vol="5" />
534 <manref name="amdump" vol="8" />
535 <manref name="amrecover" vol="8" />
536 </seealso>
537
538
539 </refentry>