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

相关内容

    暂无相关文章