Chinaunix首页 | 论坛 | 博客
  • 博客访问: 97498
  • 博文数量: 15
  • 博客积分: 126
  • 博客等级: 入伍新兵
  • 技术积分: 324
  • 用 户 组: 普通用户
  • 注册时间: 2011-08-20 08:46
文章分类
文章存档

2013年(15)

我的朋友

分类: LINUX

2013-01-11 21:33:54

要配置一个tftp server只需要简单的三步:
1.将以下内容放到/etc/xinetd.d/tftp
2.创建/tftpboot目录,并修改权限:chmod 777 /tftpboot
3.启动tftp server:xinetd -f /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.
#file exist :
#    this file conten must include by /etc/xinetd.d/tftp
#how to start tftp server:
#    xinetd -f /etc/xinetd.d/tftp
service tftp
{
    socket_type        = dgram
    protocol        = udp
    wait            = yes
    user            = root
    server            = /usr/sbin/in.tftpd
    server_args        = -s /tftpboot -c
    disable            = no
    per_source        = 11
    cps                = 1002
    flags            = IPv4
}

阅读(1402) | 评论(0) | 转发(0) |
0

上一篇:shell 参数输入

下一篇:tftp server

给主人留下些什么吧!~~