今天在Ubuntu linux安装配置了TFTP服务,下面就将我的安装配置过程分享出来。
一、安装TFTP等软件
首先需要安装tftp服务器,供需要安装3个软件分别是tftp、tftpd和xinetd。在这里我是采用apt-get方 式来进行安装的。
二、配置TFTP服务器
tftp软件安装好了以后,默认的是关闭的。因此需要修该tftp的配置文件 /etc/xinetd.d/tftp,
tftp的具体内容如下:
service tftp { socket_type =dgram protocol =udp wait =yes user =root server =/usr/sbin/in.tftpd server_args =-s /var/lib/tftproot disable =no per_source =11 cps =100 2
flags =IPv4
} |
其中的server_args指定tftp服务器的路径为/varlib/tftproot,且需要设置访问权限
sudo chmod 777 /var/lib/tftproot
还要注意user = root 你也可以改为自己, 这样操作就很方便了。
三、启动TFTP服务
sudo /etc/init.d/xinetd reload
sudo /etc/init.d/xinetd restart
四、测试TFTP服务
在tftp服务器的路径下创建一个新文件hello.c,然后进行简单的测试
tftp 192.168.7.110
get hello.c
q
最后如果没有出现错误提示。则表示tftp服务配置成功。会在当前目录下存在hello.c
阅读(400) | 评论(0) | 转发(0) |