On 04/06/2012 01:08 AM, gene heskett wrote:
Beside having inet and xinetd file, which one are the machine using?
root@shop:/etc# cat xinetd.d/amanda
# default: on
# description: The amanda service
service amanda
{
# only_from =<coyote.coyote.den>
socket_type = dgram
protocol = udp
wait = yes
user = backup
group = backup
groups = yes
server = /usr/lib/amanda/amandad
server_args = -auth=bsdtcp amdump amindexd amidxtaped
disable = no
}
This file is wrong, it listen on udp and expect a tcp connection
(-auth=bsdtcp)
For bsdtcp, you need:
service amanda
{
# only_from =<coyote.coyote.den>
socket_type = stream
protocol = tcp
wait = no
user = backup
group = backup
groups = yes
server = /usr/lib/amanda/amandad
server_args = -auth=bsdtcp amdump amindexd amidxtaped
disable = no
}