Chinaunix首页 | 论坛 | 博客
  • 博客访问: 617321
  • 博文数量: 486
  • 博客积分: 10125
  • 博客等级: 上将
  • 技术积分: 5842
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-27 18:34
文章分类

全部博文(486)

文章存档

2011年(52)

2010年(107)

2009年(289)

2008年(38)

我的朋友

分类: LINUX

2009-09-17 14:09:07

tftp 安装与配置


 

1、先安装xinetd 服务:yum install xinetd

#service xinetd  start //重启 xinetd 服务


2
、安装tftp

 tftp-severyum install tftp tftp-sever
可以在这个网站搜索下载rpm包直接安装


3、配置:
更改tftp配置文件 /etc/xinetd.d/tftp
vim /etc/xinetd.d/tftp
# default: off
# description: The tftp server serves files using the trivial file transfer \
# protocol. The tftp protocol is often used to boot diskless \
# workstations, download configuration files to network-aware printers, \
# and to start the installation process for some operating systems.
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
}

提醒:把distable=yes 改为
no
#service xinetd restart //
重启 xinetd 服务

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