标签:
目的:
在嵌入式开发中,分为宿主机和目标机。
tftp服务器作为工作于宿主机上的软件,主要提供
对目标机的主要映像文件的下载工作。
1、安装tftp-server(我的系统为x86_64系统,安装包为centos6.5自带):
rpm -ivh tftp-server-0.49-7.el6.x86_64.rpm
2、创建共享目录:mkdir /tftpboot
3、设置tftp启动文件:
vi /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 = -s /tftpboot
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
将22、23行修改为上面所示。保存退出。
4、重启服务:
/etc/init.d/xinetd start 或者 /etc/init.d/xinetd restart
5 查看tftp是否启动: netstat -a | grep tftp
标签:
原文地址:http://www.cnblogs.com/paladinzxl/p/4828956.html