Ubuntu tftp 安装和配置
安装
sudo apt-get install tftp-hpa tftpd-pha openbsd-inetd
配置
# /etc/default/tftpd-hpa
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftpboot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="-l -c -s /tftpboot"
验证
ps aux |grep tftp
重启
sudo /etc/init.d/tftpd-hpa restart