setup tftp on ubuntu

1. sudo apt-get install tftp-hpa tftpd-hpa xinetd

2. 配置/etc/default/tftpd-hpa,内容如下:

# /etc/default/tftpd-hpa
TFTP_USERNAME=
"tftp"
TFTP_DIRECTORY=
"/var/tftp"
TFTP_ADDRESS=
"0.0.0.0:69"

TFTP_OPTIONS="--secure -c"

3. 设置工作目录/var/tftp权限

$ sudo chmod -R 777 /var/tftp

4、重新启动服务

$ sudo /etc/init.d/tftpd-hpa restart

5、通过tftpgetput进行测试:

$ tftp localhost
tftp> get xx
tftp> put yy

你可能感兴趣的:(setup tftp on ubuntu)