[Centos] opentftp + selinux 安裝及設定

URL Link //n.sfs.tw/10659

2017-01-23 14:19:17 By 張○○

系統

Centos 5.3

一、下載 opentftp

目前最新版本為 1.66
http://sourceforge.net/projects/tftp-server/files/tftp%20server%20single%20port/

解壓
# tar zxvf opentftpspV1.66.tar.gz

二、建立存放下載檔案的目錄

# mkdir /home/axer/routeconf

三、設定 selinux 給 tftp 使用

# chcon -t tftpdir_t /home/axer/routeconf/

四、設定 opentftp.ini 設定內容

opentftp.ini就在解壓後的目錄中,編輯內容( 符號 ' #都代表註解)

[LISTEN-ON]
0.0.0.0

[HOME]
/home/axer/routeconf

[LOGGING]
'None
Errors
'All

[ALLOWED-CLIENTS]
'192.168.0.1-192.168.0.254
'10.0.0.1-10.255.255.254
'33.67.8.123

[TFTP-OPTIONS]
... 未更動略 ...

# 最大SIZE
blksize=65464

Read=Y
Write=Y
Overwrite=Y

五、拷背 opentftp.ini 到 /etc

# cp opentftp.ini /etc

六、開啟防火牆

請將 UDP 69 port 打開

七、啟動 opentftp server

# ./opentftp -v


原文 2012-03-26 14:05:38