RedHat系统使能TFTP服务

来源:互联网 发布:北京乐乎青年公寓客服 编辑:程序博客网 时间:2024/05/17 03:36

在RedHat系统要使能TFTP服务,

通过编辑文件/etc/xinetd.d/tftp,

移除掉:disable = yes

或者把disable =yes 改为 disable = no

或者注释掉它:

# 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 //server端主目录

#       disable                 = yes

        per_source              = 11

        cps                     = 100 2

}

此外,确保/tftpboot目录存在,而且有访问权限(至少应该"dr-xr-xr-x")。

这样就已经打开了主机linux中的tftp服务。

原创粉丝点击