Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1229113
  • 博文数量: 479
  • 博客积分: 12240
  • 博客等级: 上将
  • 技术积分: 4999
  • 用 户 组: 普通用户
  • 注册时间: 2007-10-24 17:12
文章分类

全部博文(479)

文章存档

2014年(1)

2013年(1)

2012年(1)

2011年(95)

2010年(177)

2009年(167)

2008年(16)

2007年(21)

分类: LINUX

2009-11-18 08:50:58

tftp服务器配置

以RedHat Linux 9.0为例。

首先需要tftp软件,如果是完全安装的系统,应该是有的。可以查询:

[root@localhost root]# rpm -qa |grep tftp
tftp-0.32-4
tftp-server-0.32-4

如果有这样的结果,只需配置tftp即可。
修改 /etc/xinetd.d/tftp 文件,将其中的disable改为no:

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

然后重启xinetd即可:
[root@localhost root]# /etc/rc.d/init.d/xinetd restart




阅读(1127) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~