关于linux开发中的tftp使用的方式

选用tftp-hpa,TFTP   Server的配置文件是/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.
#server_args = -s /home/kernel
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /work/ftproot
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
这里制定了/tftpboot为TFTP   Server的根目录位置。 
启动TFTP   Server 

在Linux   Server上,service   xinetd   restart。

设置完成后一定要记得执行上面命令, 不然server_args还是使用的是原来的参数.

你可能感兴趣的:(linux,socket,server,service,File,download)