openwrt下VLAN的配置

2021-07-03 19:40:55 字數 1801 閱讀 1820

分類: openwrt&路由器

2014-08-21 11:38

5576人閱讀收藏 

舉報想要改變你的路由器wan口和lan口配置或者新增wan口等就需要用到vlan配置

openwrt中的配置檔案為/etc/config/network

如下將port0設定為wan口

[plain]view plain

copy

config switch_vlan  

option device eth0  

option vlan 0  

option ports "1 2 3 4 5*"            #port1、2、3、4和cpu 5屬於vlan 0  

config switch_vlan  

option device eth0  

option vlan 1  

option ports "0 5*"                    #port0和cpu 5屬於vlan 1  

config inte***ce lan  

option type     bridge  

option ifname   eth0.0               #把vlan 0配置成lan口,即port1、2、3、4都是lan口了。  

option proto    static  

option ipaddr   192.168.0.168  

option netmask  255.255.255.0  

option gateway 192.168.0.1  

option dns 192.168.0.1  

option nat      1  

config inte***ce wan  

option ifname eth0.1                  #把vlan 1配置成wan口,即port0就是wan口了。  

option proto dhcp  

上面的配置檔案只有乙個wan口

如果想要增加乙個wan口,需要再增加乙個config switch_vlan,如下

[plain]view plain

copy

config switch_vlan  

option device eth0  

option vlan 0  

option ports "1 2 3 5*"               #port1、2、3和cpu 5屬於vlan 0  

config switch_vlan  

option device eth0  

option vlan 1  

option ports "0 5*"                    #port0和cpu 5屬於vlan 1  

config switch_vlan  

option device eth0  

option vlan 2  

option ports "4 5*"                    #port4和cpu 5屬於vlan 2  

config inte***ce wan2  

option ifname eth0.2                 #把vlan 2配置成wan2口,即port4就是wan2了  

option proto dhcp  

當然wan口增加了乙個,lan口就要減少乙個。

配置這個的方法也可以看luci頁面的額配置,更加直觀。

openwrt下VLAN的配置

想要改變你的路由器wan口和lan口配置或者新增wan口等就需要用到vlan配置 openwrt中的配置檔案為 etc config network 如下將port0設定為wan口 config switch vlan option device eth0 option vlan 0 option ...

Linux下如何配置Vlan

vlan是虛擬區域網的縮寫。乙個物理交換機上可以共存多個vlan,這些交換機通過linux軟體配置,而不是通過硬體介面 您仍然需要配置實際的硬體交換機 vlan作為名稱建議一次組合多個lan。但是,vlan的優點是什麼?高效能.易於管理.安全.為了安全起見,vlan為提供了劃分lan的能力。當將伺服...

實驗 VLAN環境下DHCP的配置

虛擬情景 企業有多個部門,這些部門的主機都連線在一台多接 換機上,不同的部門分別被劃分在不同的vlan中,為了盡快部署,要求使用dhcp對這些屬於不同vlan的主機進行ip位址分配。實驗拓撲如下 配置步驟概述 1.在交換機上建立vlan。在該實驗中我們建立了vlan 10,20,30。2.在將換機上...