|
|

楼主 |
发表于 2004-10-24 21:16:01
|
显示全部楼层
[root@shlinux /]# ls -ld tftpboot/
drwxrwxrwx 4 root root 4096 Oct 24 21:16 tftpboot//
[root@shlinux /]# 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
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
per_source = 11
cps = 100 2
flags = IPv4
}
[root@shlinux /]# cat /etc/services | grep tftp
tftp 69/udp
tftp 69/tcp
tftp-mcast 1758/tcp
tftp-mcast 1758/udp
[root@shlinux /]# cd /tftpboot/
[root@shlinux tftpboot]# ls
bb* default* initrd.img* options.msg* pxelinux.0* README* snake.msg* vmlinuz*
boot.msg* general.msg* ok* param.msg* pxelinux.cfg/ rescue.msg* syslinux.cfg/
[root@shlinux tftpboot]# chkconfig --list | grep tftp
tftp: on
[root@shlinux tftpboot]# netstat -al | grep 69
udp 0 0 *:32769 *:*
unix 2 [ ACC ] STREAM LISTENING 1013001 /root/tmp/orbit-root-28a86808/linc-698-0-4fab4011efad7
unix 2 [ ACC ] STREAM LISTENING 1013027 /root/tmp/orbit-root-28a86808/linc-69c-0-238c2307620e5
unix 3 [ ] STREAM CONNECTED 1013569
unix 3 [ ] STREAM CONNECTED 1013244 /root/tmp/orbit-root-28a86808/linc-69c-0-238c2307620e5
unix 3 [ ] STREAM CONNECTED 1013169 /root/tmp/orbit-root-28a86808/linc-69c-0-238c2307620e5
unix 3 [ ] STREAM CONNECTED 1013139 /root/tmp/orbit-root-28a86808/linc-69c-0-238c2307620e5
unix 3 [ ] STREAM CONNECTED 1013034 /root/tmp/orbit-root-28a86808/linc-69c-0-238c2307620e5
unix 3 [ ] STREAM CONNECTED 1013030 /root/tmp/orbit-root-28a86808/linc-69c-0-238c2307620e5
unix 3 [ ] STREAM CONNECTED 1013004 /root/tmp/orbit-root-28a86808/linc-698-0-4fab4011efad7
unix 2 [ ] DGRAM 6906
[root@shlinux tftpboot]# netstat -al | grep tftp
udp 0 0 *:tftp *:*
有这么多信息.......
到底我哪里做错了??? |
|