实践Linux的理论
全部博文(61)
分类: LINUX
2014-06-18 11:32:50
原文地址:ubuntu12.4下tftp设置(精华) 作者:sagane
因调试6410开发板,需在ubuntu12.04下搭建tftp服务器,在网搜了多个ubuntu下配置tftp的文件,发现都有或多或少的问题,如下是我的配置过程,已验证通过可供参考!!!
1)安装tftp-hpa,tftpd-hpa, xinetd
~$ sudo apt-get install tftp-hpa , tftpd-hpa, xinetd
2) 在/etc/xinetd.d/下创建并配置tftp文件
~$ sudo vim /etc/xinetd.d/tftp
1 service tftp
2 {
3 socket_type = dgram
4 protocol = udp
5 wait = yes
6 user = root
7 server = /usr/sbin/in.tftpd
8 server_args = -s/tftpboot -c
9 disable = no
10 per_source = 11
11 cps =100 2
12 flags = IPv4
13 }
-c 用于开启上传功能。
3)配置tftpd-hpa
~$ sudo vim /etc/default/tftpd-hpa
sudo service tftpd-hpa restart
sudo gedit /etc/selinux/config //如果没有selinux/config这个文件,则创建。
# This file controls the state of SELinux on the system.
把上面的SELINUX=enforcing 改为:SELINUX=disable 禁用SeLinux
sudo /etc/init.d/xinetd reload
sudo /etc/init.d/xinetd restart
6)本机测试
在/t下创建测试文件love
#cd /t
#echo xuguodongaigongxia > love
#chmod 777 love
测试一下 tftp服务:
重新打开一个终端
#tftp 127.0.0.1
tftp>get love
tftp>q
#ls
退出后,查看当前目录,发现love文件已在当前目录。
如果上述设置还不行的话,那么就要把selinux禁用掉:
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - SELinux is fully disabled.
SELINUX=enforcing
# SELINUXTYPE= type of policy in use. Possible values are:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted
然后reboot重启PC