linux环境搭建之tftp tftpd服务器

    xiaoxiao2022-07-02  100

    一、搭建TFTP服务器

        1)sudo apt-get install xinetd

        2)sudo apt-get install tftp tftpd

        3)建立TFTP配置文件,sudo vi /etc/xinetd.d/tftp配置一下内容,其中server_args 为服务器目录,客户端需要的文件要放到此处,否则找不到

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

        4)sudo /etc/init.d/xinetd restart  启动tftp服务器

     

    二、ubuntu tftp获取文件

        1)windows中打开Tftpd64

        2)获取文件

    最新回复(0)