共计 1062 个字符,预计需要花费 3 分钟才能阅读完成。
这篇“ubuntu 如何配置 tftp 服务”文章的知识点大部分人都不太理解,所以丸趣 TV 小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“ubuntu 如何配置 tftp 服务”文章吧。
若 /etc/xinetd.d/ 下存在 tftp,执行下列操作
关闭 xinetd 服务
$sudo service xinetdstop
删除 tftp 文件
$sudo rm /etc/xinetd.d/tftp
启动 xinetd 服务
$sudo service xinetdstart
安装 tftp 客户端和服务器端
$sudo apt-getinstall tftp-hpa
$sudo apt-getinstall tftpd-hpa
修改 tftpd-hpa 配置文件
$vim /etc/default/tftpd-hpa
修改 “/var/lib/tftpboot” 为 “/tftpboot”修改 --secure 为 --secure -c 允许上传新文件
若 /tftpboot 不存在,创建该目录
$sudo mkdir /tftpboot
$sudo chmod 777 /tftpboot
重启 tftpd-hpa 服务
$sudo service tftpd-hpa restart
若服务重启成功,能查看到相应的进程
$ps -ef |grepin.tftpd
测试
在终端执行命令:
tftp 对方 ip 地址
下载文件:get 文件名
上传文件:put 文件名
退出:quit
至此 tftp 服务已经安装完成了,下面可以对其进行一下测试。(假设在当前目录下有一个测试文件 test.txt)
$tftp127.0.0.1
tftp put test.txt
sent 1018 bytes in 0.0seconds
tftp get test.txt
received1018 bytes in 0.1 seconds
tftp quit
$
通过 get 命令,可以把当前目录下的 test.txt 文件,通过 tftp 上传到它的服务文件目录。这时,在 /tftpboot 下面会出现 test.txt 文件。通过 put 命令,可以从 /tftpboot 下, 下载 test.txt 文件。这样就验证了 tftp 服务配置的正确性。当文件上传与下载结束后,可以通过 quit 命令退出。
以上就是关于“ubuntu 如何配置 tftp 服务”这篇文章的内容,相信大家都有了一定的了解,希望丸趣 TV 小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注丸趣 TV 行业资讯频道。