linux tftp 服务
Posted mthoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux tftp 服务相关的知识,希望对你有一定的参考价值。
TFTP(Trivial File Transfer Protocol)是基于UDP协议开发,用来在客户机与server之间进行简单文件传输的协议,提供不复杂、开销不大的文件传输服务。
一、改动/etc/xinetd.d/tftp配置文件,例如以下:
$ cat /etc/xinetd.d/tftp
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = /tmp/tftproot
disable = no
}
二、执行服务
$ service xinetd start
三、查看服务是否启动。69相应/etc/xinetd.d/tftp配置文件里的port端口
$ sudo netstat -anpu | grep 69
udp 0 0 0.0.0.0:69 0.0.0.0:* 14890/xinetd
以上是关于linux tftp 服务的主要内容,如果未能解决你的问题,请参考以下文章
嵌入式Linux | 搭建TFTP服务器(UbuntuArch Linux)
在linux上装了tftp服务,可是运行service tftp start 结果是:tftp:未被识别的服务,啥意思,