How To:Run Amanda Over IPv6: Difference between revisions

From wiki.zmanda.com
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
Amanda works in IPv6 environment. To use IPv6 addresses, set the protocol field to '''tcp46''' in '''xinetd''' or '''inetd''' amanda service entry.  Example: xinetd entry for amandad in IPv6 environment:
Amanda works with IPv6. It will be available in the next release (post-2.5.1). To use IPv6 addresses, set the flags field to '''ipv6''' in '''xinetd''' or '''inetd''' amanda service entry.  Example: xinetd entry for amandad that will accept connections from IPv4 as well as IPv6 addresses:


  service amanda
  service amanda
Line 5: Line 5:
     disable                = no
     disable                = no
     socket_type            = stream
     socket_type            = stream
     protocol                = tcp46
     protocol                = tcp
    flags                  = ipv6
     wait                    = no
     wait                    = no
     user                    = amandabackup
     user                    = amandabackup

Revision as of 00:25, 2 December 2006

Amanda works with IPv6. It will be available in the next release (post-2.5.1). To use IPv6 addresses, set the flags field to ipv6 in xinetd or inetd amanda service entry. Example: xinetd entry for amandad that will accept connections from IPv4 as well as IPv6 addresses:

service amanda
{
    disable                 = no
    socket_type             = stream
    protocol                = tcp
    flags                   = ipv6
    wait                    = no
    user                    = amandabackup
    group                   = disk
    groups                  = yes
    server                  = /usr/local/libexec/amandad
    server_args             = -auth=bsdtcp amdump amindexd amidxtaped
}