ubuntu10.04 下安裝tftp軟體
tftp-hpa是客戶端,tftpd-hpa是伺服器端
sudo aptitude install tftp-hpa tftpd-hpa
2.配置tftp伺服器
sudo gedit /etc/default/tftpd-hpa
將原來的內容改為:
# /etc/default/tftpd-hpa
tftp_username="tftp"
#tftp_directory="/var/lib/tftpboot"
tftp_address="0.0.0.0:69"
#tftp_options="--secure"
#伺服器目錄,需要設定許可權為777,chomd 777
#這個目錄要改為你自己的tftp根目錄~~~
tftp_directory="/home/stone/tmp"
tftp_options="-l -c -s"
3.重新啟動tftp服務
sudo service tftpd-hpa restart
4.測試
cd ~/tftpboot echo "hello tftp service">>a.txt
echo "hello tftp service,put to tftp serive">>b.txt
tftp localhost
get a.txt
put b.txt
其中get是取得檔案,put是將檔案上傳到tftp伺服器上。
Ubuntu 10 04 TFTP 伺服器配置
ubuntu 10.04 tftp 伺服器配置 1.安裝 sudo aptitude install tftpd hpa tftp hpa xinetd 2.配置 tftp hpa 的配置檔案為 etc default tftpd hpa sudo gedit etc default tftpd h...
ubuntu 10 04 tftp配置,測試通過
網路上介紹tftp配置的方法一大堆,有些方法好像不行,最後折騰了半天,把我成功的方法記下來,其實很簡單,網上有些說得太複雜了。1.ubuntu10.04 下安裝tftp軟體 tftp hpa是客戶端,tftpd hpa是伺服器端 sudo apt get install tftp hpa tftpd...
ubuntu10 04 安裝配置tftp
tftpd hpa 是乙個功能增強的tftp伺服器。它提供了很多tftp的增強功能,它已經被移植到大多數的現代unix系統。安裝 sudo apt get install tftpd hpa 配置tftp hpa 的配置檔案為 etc default tftpd hpa run daemon yes...