Tftp on CentOS

Nov 24, 2014 17:04

Ув.олл,

Буду рад помощи/подсказке по сабжу. Ситуация следующая :

CentOS 6.5.Пытаюсь заставить работать на нем tftp server,пока без особого успеха:(. Что сделал :

*yum install tftp-server xinetd
* xinetd based services:
...
tcpmux-server: off
telnet: off
tftp: on

* cat /etc/xinetd.d/tftp

# default: off
# description: The tftp server serves files using the trivial file transfer \
# protocol. The tftp protocol is often used to boot diskless \
# workstations, download configuration files to network-aware printers, \
# and to start the installation process for some operating systems.
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -c -s /var/lib/tftpboot -v -v -v

disable = no
per_source = 11
cps = 100 2
flags = IPv4
}

* [root@linux ~]# sestatus
SELinux status: disabled
[root@linux ~]# service iptables status
iptables: Firewall is not running.
[root@linux ~]#

* chmod 777 /var/lib/tftpboot/

* /var/lib/
drwxrwxrwx. 2 root root 4096 Nov 24 14:49 tftpboot

or

drwxrwxrwx. 2 nobody nobody 4096 Nov 24 14:49 tftpboot

TFTP на свой же локальный IP работает. С других машин - нет. Tcpdump показывает тщетные попытки типа :
20 WRQ "testfile.txt" octet
20 WRQ "testfile.txt" octet
20 WRQ "testfile.txt" octet
20 WRQ "testfile.txt" octet
23 ERROR EUNDEF "timeout on receive"
(тоже самое почти в /var/log/messages

Чего еще можно проверить? Есть какой-то еще лог в котором можно поискать ответ на вопрос : "А чего еще ему надо то?".:)

Заранее огромное спасибо.
Previous post Next post
Up