1、安装相关软件包:Ubuntu tftp(服务端),tftp(客户端),xinetd
sudo apt-get install tftpd tftp xinetd
2、建立配置文件
在/etc/xinetd.d/下建立一个配置文件tftp,如图,
在文件中输入以下内容:
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}
保存退出
3、建立Ubuntu tftp服务文件目录(上传文件与下载文件的位置),并且更改其权限,如图,
4、重新启动服务,如图,
至此Ubuntu tftp服务已经安装完成了下面检测下,如图,
学习时间 189分钟
操作时间 36分钟
按键次数 1153次
实验次数 10次
报告字数 1173字
是否完成 完成