Aaron Gray wrote: ..
I guess, it is running as a xinetd controlled daemon, if so, is there anything else
listening on the tftp port?
How do I ascertain this ?
- "netstat" utility should be display xinetd daemon listening at udp port 69 :
# netstat -a -n -p --ip|grep 69 udp 0 0 0.0.0.0:69 0.0.0.0:* 1595/xinetd
- and You "/etc/xinetd.d/tftp" should be as (note "disable = no"):
service tftp { disable = no socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args = -s /var/lib/tftpboot per_source = 11 cps = 100 2 flags = IPv4 }
- and xinetd daemon must be running; on F14 you can use command: service xinetd status and on F15 command: systemctl status xinetd.service