ubuntu tftp服務的配置

2021-06-22 01:07:19 字數 680 閱讀 4522

ubuntu tftp服務的配置步驟:

sudo apt-get install tftpd tftp xinetd

2、建立配置檔案

在/etc/xinetd.d/下建立乙個配置檔案tftp

sudo vim tftp

在檔案中輸入以下內容:

service tftp

儲存退出

sudo mkdir /tftpboot

sudo chmod 777 /tftpboot -r

4、重新啟動服務

sudo /etc/init.d/xinetd restart

至此ubuntu tftp服務已經安裝完成了,下面可以對其進行一下測試。(假設在當前目錄下有乙個測試檔案test.txt)

$tftp 127.0.0.1                     

tftp> put test.txt

sent 1018 bytes in 0.0 seconds

tftp> get test.txt

received 1018 bytes in 0.1 seconds

tftp> quit

建立檔案:touch ***

檢視檔案: less ***

接把防火牆給解除安裝(sudo apt-get remove iptables)

Ubuntu tftp服務的步驟配置

配置ubuntu tftp服務的步驟 ubuntu tftp 服務端 tftp 客戶端 xinetd sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案 tftp sudo vi tftp 在檔案中輸入以下...

ubuntu tftp伺服器配置

yelei ubuntu sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案tftp yelei ubuntu etc xinetd.d sudo gedit tftp 在檔案中輸入 以下內容 servic...

ubuntu tftp服務安裝和配置

1 安裝相關軟體包 ubuntu tftp 服務端 tftp 客戶端 xinetd sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案tftp sudo vim tftp在檔案中輸入以下內容 service...