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的部份注释删掉:

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

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

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

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

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

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

重启xinetd:

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

测试:

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

到此,说明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

2009-10-23 11:19:36

linux服务器搭建

2010-01-07 15:19:07

Ubuntu tftp

2011-02-23 12:18:28

DebianProFTPd服务器

2010-09-14 14:01:55

ubuntu tftp

2010-09-14 11:09:36

Linux TFTP服

2010-09-10 20:13:49

tftp server

2022-07-18 10:15:14

文件传输协议TFTPLinux

2010-09-09 17:54:07

TFTP服务器

2010-09-14 10:29:43

配置tftp服务器

2010-09-14 14:36:04

fedora12 tf

2009-08-21 10:32:33

2010-09-14 11:33:39

Linux下设置tft

2009-09-17 17:37:05

Nis服务器

2010-09-17 15:17:20

TFTP服务器路由设置

2010-07-27 13:59:53

Linux NFS服务

2015-12-25 14:30:47

LinuxISC DHCP服务器

2010-09-09 17:46:43

TFTP服务器
点赞
收藏

51CTO技术栈公众号