Ubuntu下搭建tftp伺服器最簡單方法

2021-07-04 04:38:20 字數 2168 閱讀 8215

ubuntu12.4下tftp設定

ubuntu12.4下tftp設定精華

因除錯6410開發板,需在ubuntu12.04下搭建tftp伺服器,在網搜了多個ubuntu下配置tftp的檔案,發現都有或多或少的問題,如下是我的配置過程,已驗證通過可供參考!!!

1)安裝tftp-hpa,tftpd-hpa, xinetd

~$ sudo apt-get install tftp-hpa , tftpd-hpa, xinetd

2) 在/etc/xinetd.d/下建立並配置tftp檔案

~$ sudo vim /etc/xinetd.d/tftp

1 service tftp

2 -c 用於開啟上傳功能。

3)配置tftpd-hpa

~$ sudo vim /etc/default/tftpd-hpa 

1 #/etc/default/tftpd-hpa

2 3 tftp_username="tftp"

4 tftp_directory="/tftpboot"

5 tftp_address="0.0.0.0:69"

6 tftp_options="-l -c -s"

其中/tftpboot為 tftp共享目錄

4) 修改xinetd.conf檔案

~$ sudo vim /etc/xinetd.conf 

defaults

6 13 

14 #includedir /etc/xinetd.d

15 tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /tftpboot

5) 重啟tftp服務並測試

sudo service tftpd-hpa restart

sudo /etc/init.d/xinetd reload

sudo /etc/init.d/xinetd restart

6)本機測試

在/tftpboot下建立測試檔案love

#cd /tftpboot

#echo  xuguodongaigongxia > love

#chmod 777 love

測試一下 tftp服務:

重新開啟乙個終端

#tftp 127.0.0.1

tftp>get love

tftp>q      

#ls退出後,檢視當前目錄,發現love檔案已在當前目錄。

如果上述設定還不行的話,那麼就要把selinux禁用掉:

sudo gedit /etc/selinux/config      //如果沒有selinux/config這個檔案,則建立。

# this file controls the state of se

linux on the system.

# selinux= can take one of these three values:

#       enforcing - selinux security policy is enforced.

#       permissive - selinux prints warnings instead of enforcing.

#       disabled - selinux is fully disabled.

selinux=enforcing

# selinuxtype= type of policy in use. possible values are:

#       targeted - only targeted network daemons are protected.

#       strict - full selinux protection.

selinuxtype=targeted

把上面的selinux=enforcing 改為:selinux=disable  禁用selinux

然後reboot重啟p

c

1,兩個host(ahostis any computer connected to a network)之間通過tftp protocol通訊,必須有乙個host上裝有tftp server(兩個host都有也行),而且另一方裝有tftp client。

ubuntu下搭建tftp服務

tftp安裝與建立 1.安裝xinetd sudo apt get install xinetd xinetd是乙個系統守護程式,它取代inetd用於控制tcp,udp的連線。2.安裝tftp,tftpd sudo apt get install tftp hpa tftpd hpa linux下的...

Ubuntu下tftp服務搭建

1 安裝軟體包 sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案tftp sudo vi etc xinetd.d tftp 內容如下 service tftp socket type dgram pro...

Ubuntu下tftp服務搭建

1 安裝軟體包 sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案tftp sudo vi etc xinetd.d tftp 內容如下 service tftp 3 建立tftp服務檔案目錄 sudo m...