How To:Run Amanda Over IPv6: Difference between revisions

From wiki.zmanda.com
Jump to navigation Jump to search
(removed Category:How To and added {{How To Header}})
(add link)
 
Line 1: Line 1:
{{How To Header}}
{{How To Header}}
Amanda works with IPv6. It will be available in the next release (post-2.5.1). To use IPv6 addresses, make changes to the '''xinetd''' or '''inetd''' amanda service entry.   
Amanda works with IPv6. It will be available in the next release (post-2.5.1). To use IPv6 addresses, make changes to the '''xinetd''' or '''inetd''' amanda service entry.   


Line 21: Line 21:


  amanda stream tcp46 nowait amandabackup /usr/local/libexec/amandad amandad
  amanda stream tcp46 nowait amandabackup /usr/local/libexec/amandad amandad
See {{man|7|amanda-auth}} for detailed information about configuring Amanda authentication.

Latest revision as of 17:57, 13 January 2009

This article is a part of the How Tos collection.

Amanda works with IPv6. It will be available in the next release (post-2.5.1). To use IPv6 addresses, make changes to the 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
}

Example: inetd entry for amandad that will accept connections from IPv4 as well as IPv6 addressess:

amanda stream tcp46 nowait amandabackup /usr/local/libexec/amandad amandad

See amanda-auth(7) for detailed information about configuring Amanda authentication.