[OpenWRT] OpenWRT 的設定 (1): 時區和同步
在完成 OpenWRT 的移植之後,
接下來就要開始設定 OpenWRT 的設置,
畢竟, 都建立了一個以 Linux 為基底的 WiFi AP,
當然會希望它可以完成比既有 WiFi AP 更多的功能.
在 OpenWRT (以backfire為例) 中, 關於功能的設定,
都放在 /etc/config 資料夾之下
root@OpenWrt:/etc/config# ls
dhcp dropbear firewall fstab mountd network openflow system wireless
其中, dropbear 是 OpenWRT 的 SSH server,
fstab, mountd 負責檔案系統部分,
dhcp, firewall 如其名稱所示, 負責 IP 位置請求以及防火牆,
openflow 為 openflow 的相關設定,
network 為有線網路的設定, wireless 為無線網路的設定,
這兩部分應該會找時間再記錄細節.
system 為一些系統上的設定, 例如所在時區.
config 'system'
option 'hostname' 'OpenWrt'
option 'timezone' 'UTC'
config 'timeserver' 'ntp'
list 'server' '0.openwrt.pool.ntp.org'
list 'server' '1.openwrt.pool.ntp.org'
list 'server' '2.openwrt.pool.ntp.org'
list 'server' '3.openwrt.pool.ntp.org'
config 'led' 'wlan_led'
option 'name' 'WLAN'
option 'sysfs' 'tl-wr1043nd:green:wlan'
option 'trigger' 'phy0rx'
其中, 設定了主機名稱 (hostname), 所在時區 (UTC),
以及 ntp (network time protocol) 隊時的主機,
至於最下方 'led' 的部分, 則是用以控制 WiFi AP 的LED燈號變化,
以此檔案為例, 可以更改 option 'timezone' 'UTC' 為 'CST-8',
留言
張貼留言