ubuntu中配置tftp服務

2021-07-02 02:40:16 字數 1913 閱讀 8196

1、安裝

sudo apt-get install tftp

sudo apt-get install xinetd

2、建立共享目錄

sudo mkdir /tftpboot

3、把共享目錄修改為最大許可權

sudo chmod 777 tftpboot

4、修改配置檔案(/etc/inetd.conf)

1、我們看下我們預設的配置檔案,配置檔案如下

# /etc/inetd.conf:  see inetd(8) for further informations.

## internet superserver configuration database##

# lines starting with "#:label:" or "##" should not

# be changed unless you know what you are doing!

## if you want to disable an entry so it isn't touched during

# package updates just comment it out with a single '#' character.

## packages should modify this file by using update-inetd(8)##

##:internal: internal services

#discard stream tcp nowait root internal

#discard dgram udp wait root internal

#daytime stream tcp nowait root internal

#time stream tcp nowait root internal

#:standard: these are standard services.

#:bsd: shell, login, exec and talk are bsd protocols.

#:mail: mail, news and uucp services.

#:info: info services

#:boot: tftp service is provided primarily for booting.  most sites

#       run this only on machines acting as "boot servers."

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

#:rpc: rpc based services

#:ham-radio: amateur-radio services

#:other: other services

2、修改配置檔案內容(新增我們剛才新建的共享工作資料夾)

把該行 tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /srv/tftp

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

5、啟動tftp伺服器

sudo /etc/init.d/xinetd restart

sudo in.tftpd -l /tftpboot

6、測試

1、在共享資料夾中新建乙個檔案

touch test.txt

2、啟動tftp

tftp 192.168.0.148

說明,ip位址是自己的ip位址,查詢方法,ifconfig

3、get test.txt

如果在當前資料夾看到test.txt則設定成功,否則重新檢查配置

Ubuntu下配置tftp服務

tftp伺服器的內容,不知道大家現在掌握的如何。那麼對於它的一些基本的概念和原理,我們這裡都不在進行講解,這次,主要針對ubuntu tftp伺服器安裝的內容,進行一下具體的闡述。ubuntu tftp伺服器安裝1.安裝tftpd tftp伺服器 tftp tftp客戶端 以及xinetd 超級伺服...

Ubuntu下配置tftp服務

方法一 推薦方法 1.安裝tftp軟體 sudo apt get install tftp hpa tftpd hpa tftp hpa是客戶端,tftpd hpa是伺服器端 2.建立tftpboot目錄,作為伺服器的目錄 sudo mkdir tftpboot 釋放許可權 伺服器目錄,需要設定許可...

Ubuntu中搭建TFTP服務

tftp配置 2012 08 16 09 34 11 分類 linux 成功配置 tftp配置的限制條件 1 需要網路連線 2 主機端需要tftp伺服器軟體 3 目標機需要tftp客戶端軟體支援 優點 1 傳輸速度快。2 嵌入式目標系統的tftp client支援。主機端tftp伺服器配置 1.安裝...