Debian Linux tftp服务器配置步骤分析

网络 网络管理
下面我们针对Linux的一个版本,讲解了tftp服务器的设定内容。那么通过文章我们能够对Debian Linux tftp服务器配置的具体过程有一个具体的了解。

虽然我们讲解过不少关于tftp服务器的设置,但是针对某一个系统版本的具体配置我们讲解的并不多。那么这里我们就讲解一下Debian Linux tftp服务器配置的内容。我用的系统环境是debian 5.0。

首先,安装tftp客户端和服务端,因为debian5.0默认下是不安装的

sudo  apt-get install tftp tftpd

然后,安装xinetd,因为默认下用的是openbsd-inetd ,而tftp需要xinetd这个网路管理的背景程式的支持

sudo apt-get  install xinetd

Debian Linux tftp服务器配置inetd.conf

將/etc/inetd.conf中关于tftp的部份注释删掉:

  1. #:BOOT: TFTP service is provided primarily for booting.  Most sites  
  2.  
  3. #       run this only on machines acting as "boot servers."  
  4.  
  5. #tftp           dgram   udp     wait    nobody  /usr/sbin/tcpd  /usr/sbin/in.tftpd /home/creater/image             #将这句的注删掉  

其中/home/creater/image为你要下载的文件所在的目录

接下来在/etc/xinetd.d/下新建一个tftp的文件:

  1. sudo vim /etc/xinetd.d/tftp 

Debian Linux tftp服务器配置中添加如下内容:

  1. service tftp  
  2.  
  3. {  
  4.  
  5. socket_type     = dgram 
  6.  
  7. protocol        = udp 
  8.  
  9. wait            = yes 
  10.  
  11. user            = root 
  12.  
  13. server          = /usr/sbin/in.tftpd  
  14.  
  15. server_args     = -s /home/creater/image    #替换为你的目录,注意权限  
  16.  
  17. disable         = no 
  18.  
  19. per_source      = 11 
  20.  
  21. cps             = 1002 
  22.  
  23. flags           = IPv4 
  24.  
  25. }  

重启xinetd:

  1. sudo  /etc/init.d/xinetd  reload  
  2.  
  3. sudo /etc/init.d/xinetd   restart  

测试:

  1. tftp  localhost  
  2.  
  3. tftp>get  u-boot.bin         #一开始在image下有u-boot.bin  
  4.  
  5. Received  97353  bytes in  0.1  seconds 

到此,说明Debian Linux tftp服务器配置已经完成了。

转自:http://my.oschina.net/jtihj/blog/1932

责任编辑:佟健 来源: hi.baidu.com
相关推荐

2010-09-10 16:19:31

配置tftp服务器

2010-09-14 11:24:03

Windows tft

2010-09-14 13:55:27

redhat 9 tf

2010-01-07 15:19:07

Ubuntu tftp

2009-10-23 11:19:36

linux服务器搭建

2011-02-23 12:18:28

DebianProFTPd服务器

2010-09-14 14:01:55

ubuntu tftp

2022-07-18 10:15:14

文件传输协议TFTPLinux

2010-09-14 11:09:36

Linux TFTP服

2010-09-09 17:54:07

TFTP服务器

2010-09-14 14:36:04

fedora12 tf

2010-09-10 20:13:49

tftp server

2010-09-14 10:29:43

配置tftp服务器

2010-09-14 11:33:39

Linux下设置tft

2009-09-17 17:37:05

Nis服务器

2009-08-21 10:32:33

2015-12-25 14:30:47

LinuxISC DHCP服务器

2010-09-17 15:17:20

TFTP服务器路由设置

2010-07-27 13:59:53

Linux NFS服务

2010-09-09 17:46:43

TFTP服务器
点赞
收藏

51CTO技术栈公众号