Ubuntu 12.04LTS tftp服务搭建

本文指导如何在Linux系统中安装并配置TFTP服务器,包括安装必要软件、创建共享目录、设置权限、配置TFTP服务,以及通过命令行进行测试。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原文出处未知~~~~~~~~~~~~~~ 个人修改一部分:

安装tftp-hpa   tftpd-hpa  xinetd


sudo apt-get install tftp-hpa tftpd-hpa xinetd

在根目录下创建文件夹/tftpboot/root

修改目录权限chmod -R 777 /tftpboot/root

 修改tftp配置文件,如果没有就创建

#vim /etc/xinetd.d/tftp

service tftp
         {
             disable         = no
             socket_type     = dgram
             protocol        = udp
             wait            = yes
             user            = root
             server          = /usr/sbin/in.tftpd
             server_args     = -s /tftpboot/root
             source          = 11
             cps             = 100 2
             flags =IPv4
         }


修改inetd.conf文件
# vim /etc/inetd.conf

 tftp  dgram    udp    wait    nobody    /usr/sbin/tcpd
 /usr/sbin/in.tftpd   /tftpboot/root

其中/tftpboot/root为 tftp共享目录

修改tftpd-hpa文件
# vim /etc/default/tftpd-hpa

#RUN_DAEMON="no"
#OPTIONS="-s /tftpboot/root -c -p -U tftpd"

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftpboot/root"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="-l -c -s"

在/tftpboot/root下创建测试文件xxx

#cd /tftpboot/root

#touch xxx

#chmod 777 xxx

测试一下 tftp服务:

#cd /

#tftp 127.0.0.1

#tftp>get xxx

#tftp>q

#ls

查看当前目录,发现xxx文件已在当前目录

但是此时如果你在xxx文件里输入的内容可能会显示不出来,此时需要重启一下服务。

输入以下命令:

sudo /etc/tc/init.d/xinetd reload

sudo /etc/init.d/xinetd restart

sudo service tftpd-hpa restart


如果上述设置还不行的话,那么就要把selinux禁用掉:

#vim /etc/selinux/config      //如果没有selinux/config这个文件,则创建。

# This file controls the state of SELinux on the system.
# 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

把上面的SELINUX=enforcing 改为:SELINUX=disable  禁用SeLinux
然后reboot重启PC

重启后再进行tftp测试。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值