博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux服务器---安装tftp-server
阅读量:6469 次
发布时间:2019-06-23

本文共 1339 字,大约阅读时间需要 4 分钟。

安装tftp-server

1、安装tftp-server

      [root@localhost weijie]# 
yum install -y tftp-server

      Loaded plugins: fastestmirror, refresh-packagekit, security

      Running Transaction

        Installing : tftp-server-0.49-8.el6.i686                                  1/1 

        Verifying  : tftp-server-0.49-8.el6.i686                                  1/1 

      Installed:

        tftp-server.i686 0:0.49-8.el6                                                 

      Complete!


2、打开配置文件“/etc/xinetd.d/tftp“
 

      [root@localhost weijie]# 
gedit /etc/xinetd.d/tftp
 

      service tftp

     
 {
             socket_type = dgram
      protocol = udp
      wait = yes
      user = root
      server = /usr/sbin/in.tftpd
      server_args = -s /var/lib/tftpboot          //默认目录
      disable = no                                //是否启动
      per_source = 11
      cps = 100 2
      flags = IPv4
      }


3、修改防火墙,允许udp端口号69

      [root@localhost weijie]# 
gedit /etc/sysconfig/iptables

      
-A INPUT -m state --state NEW -m udp -p udp --dport 69 -j ACCEPT


4、重启服务

      [root@localhost weijie]# 
service iptables restart               //重启防火墙

      iptables:将链设置为政策 ACCEPT:filter nat                [确定]

      iptables:清除防火墙规则:                                 [确定]

      iptables:正在卸载模块:                                   [确定]

      iptables:应用防火墙规则:                                 [确定]

      iptables:载入额外模块:nf_conntrack_ftp                   [确定]

      You have new mail in /var/spool/mail/root

      [root@localhost weijie]# 
service xinetd restart              //重启xinetd,tftp依赖xinetd服务

      停止 xinetd:                                              [确定]

      正在启动 xinetd:                                          [确定]


5、测试

      [root@localhost weijie]# 
tftp 192.168.1.8           //连接服务器

      
tftp> get 11.c                                           //获取文件
      tftp> quit                                                //退出

      You have new mail in /var/spool/mail/root

      [root@localhost weijie]# 
ls                           //查看文件,已经获取到

      1   11.c  1.zip  2.c.bz2  4.c  6.c~  rec000012.c.bz2

      1.  1.c   2.c    3.c      5.c  col   res.zip

转载地址:http://qujko.baihongyu.com/

你可能感兴趣的文章
三篇文章了解 TiDB 技术内幕 —— 说计算
查看>>
copy strong weak assign的区别
查看>>
OpenCV 入门
查看>>
css 3D transform变换
查看>>
ele表格合并行之后的selection选中
查看>>
正则表达式分解剖析(一文悟透正则表达式)
查看>>
解决UILable标点符号居中的问题
查看>>
HTML5新特性教程
查看>>
SpringBoot 实战 (十七) | 整合 WebSocket 实现聊天室
查看>>
ImageOptim-无损图片压缩Mac版
查看>>
12 Go语言map底层浅析
查看>>
vue-resumer 项目中 element-ui 遇到的 textarea autosize 问题
查看>>
以主干开发作为持续交付的基础
查看>>
PHP扩展库PEAR被攻击,近半年下载者或被影响
查看>>
传统运维团队转型应该注意哪些问题?
查看>>
JavaScript函数(二)
查看>>
Airbnb改进部署管道安全性,规范部署顺序
查看>>
腾讯最大规模裁撤中层干部,让贤年轻人
查看>>
当我们谈性能的时候,我们实际上在谈什么?
查看>>
Spring Boot 2.0将会增强Actuator端点的特性
查看>>