搭建tftp服務器
阿新 • • 發佈:2018-03-09
fault stop apt lin class ces inetd oca 127.0.0.1
1、apt-get install tftp-hpa tftpd-hpa xinetd
2、vi /etc/default/tftpd-hpa
# /etc/default/tftpd-hpa
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftpboot" //修改成自己要使用的tftpboot目錄
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="--secure -c" //-c 表示可以創建文件 -c create
3.創建tftp目錄
mkdir /tftpboot
chmod 777 /tftpboot
4.重新啟動服務
sudo /etc/init.d/xinetd restart
sudo /etc/init.d/tftpd-hpa restart
service tftpd-hpa restart
tftpd-hpa stop/waiting
tftpd-hpa start/running, process 6287
5.測試tftp
root@Linux:/# tftp localhost(tftp 127.0.0.1)
tftp> get zImage
tftp> q
搭建tftp服務器