1.在配置檔案當中:
沒有名稱的 section 都是以 config.@section-type[index]這樣的格式表示的具有相同型別的匿名section, 按照index 從 0
開始編號。
2.system 下配置了hostname
3.如果新增本地網域名稱解析,可以在裝置的/etc/hosts中新增,例如新增: 192.168.11.2 www.maclinux.com
root@zjh-openwrt:~# vi /etc/hosts
實現的效果就是會將www.maclinux.com 解析到192.168.11.2
4.原始碼的配置問題
下面用表示 openwrt 原始碼樹頂層目錄。openwrt所有的軟體包都都儲存在/package目錄下,
乙個軟體包佔乙個子目錄。 乙個典型的openwrt 使用者空間軟體包, 例如 helloworld, 如下所示
/package/helloworld/makefile
/package/helloworld/files/
/package/helloworld/patches/
其中files 目錄是可選的, 一般存放配置檔案和啟動指令碼。 patches 目錄也是可選的,一般存放 bug 修復或者程式優化的
補丁。5.原始碼package中
openwrt下VLAN的配置
想要改變你的路由器wan口和lan口配置或者新增wan口等就需要用到vlan配置 openwrt中的配置檔案為 etc config network 如下將port0設定為wan口 config switch vlan option device eth0 option vlan 0 option ...
openwrt下VLAN的配置
分類 openwrt 路由器 2014 08 21 11 38 5576人閱讀收藏 舉報想要改變你的路由器wan口和lan口配置或者新增wan口等就需要用到vlan配置 openwrt中的配置檔案為 etc config network 如下將port0設定為wan口 plain view plai...
OpenWrt網路配置 1
網路配置檔案放在 etc config network裡面,被分為各個介面配置。介面配置不是乙太網 wifi配置就是乙個包含多個介面的 橋 它看起來就是這樣的 config inte ce lan option ifname eth0 option proto static option ipadd...