Nope no other ideas.
I tried the following
Code:
# yum install tftp-server
My config file (in /etc/xinetd.d/tftp) looks like this
Code:
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /var/lib/tftpboot
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
I then started xinetd
Code:
# service xinetd start
I then checked for the service with the following...
Code:
[root@localhost Download]# grep tftp /etc/services
tftp 69/tcp
tftp 69/udp
tftp-mcast 1758/tcp
tftp-mcast 1758/udp
mtftp 1759/udp spss-lm
subntbcst_tftp 247/tcp # SUBNTBCST_TFTP
subntbcst_tftp 247/udp # SUBNTBCST_TFTP
etftp 1818/tcp # Enhanced Trivial File Transfer Protocol
etftp 1818/udp # Enhanced Trivial File Transfer Protocol
tftps 3713/tcp # TFTP over TLS
tftps 3713/udp # TFTP over TLS
[root@localhost Download]# ps aux |grep tftp
root 2770 0.0 0.0 10480 748 ? Ss 12:45 0:00 in.tftpd -s /var/lib/tftpboot
root 2787 0.0 0.0 83708 772 pts/0 R+ 12:47 0:00 grep tftp
[root@localhost Download]# netstat -pan |grep tftp
unix 2 [ ] DGRAM 16957 2770/in.tftpd
[root@localhost Download]# netstat -pan |grep :69
udp 0 0 0.0.0.0:69 0.0.0.0:* 2736/xinetd
And double checked by the following...
Code:
[root@localhost Download]# tftp localhost
tftp> status
Connected to localhost.localdomain.
Mode: netascii Verbose: off Tracing: off Literal: off
Rexmt-interval: 5 seconds, Max-timeout: 25 seconds
tftp> verbose
Verbose mode on.
tftp> get install.log
getting from localhost.localdomain:install.log to install.log [netascii]
Received 51481 bytes in 0.1 seconds [2950411 bit/s]
[root@localhost Download]# ll
total 60
-rw-r--r-- 1 root root 50304 2008-06-17 12:51 install.log
Beyond this I don't have any more ideas, perhaps it's be good to check the output of pstree.