ubuntu下安裝tftp服務

1、安裝相關軟件包

apt-get install tftpd      (服務端)
apt-get install tftp      (客戶端)  
apt-get install xinetd  

2、建立配置文件

cd /etc/xinetd.d/
vi tftp
輸入
service tftp
{
           socket_type                = dgram
           protocol                   = udp
           wait                       = yes
           user                       = root
           server                     = /usr/sbin/in.tftpd
           server_args                = -s /tftpboot
           disable                    = no
           per_source                 = 11
           cps                

發佈了49 篇原創文章 · 獲贊 10 · 訪問量 13萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章