Syslog:
May 27 09:59:21 new atftpd[8728]: Advanced Trivial FTP server started (0.7)
May 27 09:59:21 new atftpd[8729]: atftpd: can't bind port :69/udp

iptables -L | grep tftp
ACCEPT udp -- anywhere anywhere udp dpt:tftp

iptables -L -n | grep 69
ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 udp dpt:69

netstat -npa | grep 69
udp 0 0 0.0.0.0:69 0.0.0.0:* 1872/inetd

Port is used by inetd, but in inetd.conf I see only following record:
tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd --tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758 --mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 --verbose=5 /tftpboot

Why inetd binds to port 69 without been configured?

Thanks.