服务器之01 TFTP

1检查安装与否

rpm -qa | grep tftp


2安装

yum -y install tftp tftp-server


3配置文件


vim /etc/xinetd.d/tftp


---------------------------------------------------

service tftp

{

        socket_type             = dgram

        protocol                = udp

        wait                    = yes

        user                    = root

        server                  = /usr/sbin/in.tftpd

        server_args             = -u nobody -s /tftpboot

        disable                 = no

        per_source              = 11

        cps                     = 100 2

        flags                   = IPv4

}

---------------------------------------------------


改2个


server_args = -u 使用人 -s /var/lib/tftpboot 默认上传地址改成/tftpboot


disable = no


手动建立/tftpboot给权限


mkdir /tftpboot

chmod 777 /tftpboot 


重启服务


service xinetd restart


设置开机自启动

chkconfig xinetd on

你可能感兴趣的:(TFTP,服务器之01)