在我們將路由器韌體刷成開源的基於linux核心的openwrt系統後,由於openwrt預設未安裝web管理介面,所以我們需要先通過ssh或者telnet對路由器進行網路設定,設定完成後可通過openwrt的軟體包管理opkg安裝web設定介面luci。
設定lan ip(即訪問路由的ip)
uci set network.lan.ipaddr=[lan ip]
使用pppoe設定
uci set network.wan.proto=pppoe //設定wan口型別為pppoe
uci set network.wan.username=[上網帳戶]
uci set network.wan.password=[上網密碼] //這兩行設定pppoe使用者名稱和密碼
如果要掛在上級路由下面,就需要進行下面的設定
uci set network.wan.proto=none //關掉wan
uci set network.lan.gateway=[上級路由ip] //閘道器指向上級路由
uci set network.lan.dns=[上級路由ip] //dns指向上級路由
uci set dhcp.lan.ignore=1 //關掉lan的dhcp
最後對無線網路進行配置
uci set wireless.@wifi-device[0].disabled=0 //開啟無線
uci set wireless.@wifi-device[0].txpower=17 //設定功率為17dbm 太高會燒無線模組
uci set wireless.@wifi-device[0].channel=6 //設定無線通道為6
uci set wireless.@wifi-iface[0].mode=ap //設定無線模式為ap
uci set wireless.@wifi-iface[0].ssid=[自己設定ssid] //設定無線ssid
uci set wireless.@wifi-iface[0].network=lan //無線鏈結到lan上
uci set wireless.@wifi-iface[0].encryption=psk2 //設定加密為wpa2-psk
uci set wireless.@wifi-iface[0].key=[密碼] //設定無線密碼
提交應用配置
uci commit //應用
/etc/init.d/network restart //重啟網路服務
安裝luci管理介面
opkg update // 更新軟體列表
opkg list-installed // 檢視已安裝軟體
opkg install luci // 安裝luci
opkg install luci-i18n-chinese // 支援中文
即可完成luci的安裝。
輸入以下命令開啟支援web服務的uhttpd,並設定其為自啟動:
/etc/init.d/uhttpd enable # 開機自啟動
/etc/init.d/uhttpd start # 啟動uhttpd
OPENWRT使用命令列設定無線和有線網路
openwrt使用命令列設定無線和有線網路 在我們將 路由器韌體刷成開源的基於linux核心的openwrt系統後,由於openwrt預設未安裝web管理介面,所以我們需要先通過ssh或者telnet對路由器進行網路設定,設定完成後可通過openwrt的軟體包管理opkg安裝web設定介面luci。...
OPENWRT使用命令列設定無線和有線網路
在我們將 路由器韌體刷成開源的基於linux核心的openwrt系統後,由於openwrt預設未安裝web管理介面,所以我們需要先通過ssh或者telnet對路由器進行網路設定,設定完成後可通過openwrt的軟體包管理opkg安裝web設定介面luci。設定lan ip 即訪問路由的ip shel...
mysql使用命令列工具 MySQL命令列工具
shell mysql user user name password your password db name shell mysql help shell mysql 選項 protocol mysql 命令 有些命令mysql可以自己解釋。要檢視這些命令,在mysql 提示下輸入help或 ...