openwrt交换机配置命令-swconfig

swconfig

swconfig 是交换接口 (switch) 配置命令.

交换机是二层设备,是我们用来配置vlan的必备利器。
使用swconfig list可以列出当前可用的 SWITCH 设备信息(dev 参数)

[root@PandoraBox_166C:/etc/config]#swconfig
swconfig list
swconfig dev <dev> [port <port>|vlan <vlan>] (help|set <key> <value>|get <key>|load <config>|show)
[root@PandoraBox_166C:/etc/config]#swconfig list
Found: switch0 - mt762x
[root@PandoraBox_166C:/etc/config]#

使用swconfig dev switch0 show可以用来显示当前 switch 接口配置信息。

[root@PandoraBox_166C:/etc/config]#swconfig dev switch0 show
Global attributes:
  enable_vlan: 1
Port 0:
  pvid: 2
  link: port:0 link:up speed:100baseT full-duplex 
Port 1:
  pvid: 1
  link: port:1 link:up speed:100baseT full-duplex 
Port 2:
  pvid: 0
  link: port:2 link:up speed:100baseT full-duplex 
Port 3:
  pvid: 0
  link: port:3 link:down
Port 4:
  pvid: 3
  link: port:4 link:down
Port 5:
  pvid: 0
  link: port:5 link:down
Port 6:
  pvid: 0
  link: port:6 link:up speed:1000baseT full-duplex 
Port 7:
pvid: 0
  link: port:7 link:down
VLAN 1:
  vid: 1
  ports: 1 6t 
VLAN 2:
  vid: 2
  ports: 0 6t 
VLAN 3:
  vid: 3
  ports: 4 

以我手中的这台中国移动的和路由为例(已刷pandorabox),其CPU是mt7620。该芯片有port0~port8等8个交换接口,其中一个和CPU内核连接port6,其余可通过RJ45接口引出,和路由这款路由器只引出其中3个口,这3个口一个作为wan口port0,其余两个作为lan口port1,port2

将平台虚拟网卡eth0,划分出3个Vlan,前两个分别对应为eth0.1(lan)-及lan组, eth0.2(wan)-即wan组。最后一组vlan3瞎划的,请忽视(/▽\);
注意:wan口与lan口需要在不同的Vlan下,如下图

openwrt交换机配置命令-swconfig

余下内容整理自网络

https://blog.csdn.net/strugglelg/article/details/68945203

VLAN的pvid/vid; tag/untag

http://blog.csdn.net/zqixiao_09/article/details/52078178

Trunk口   Trunk口上可以同时传送多个VLAN的包,一般用于交换机之间的链接。

Access口  Access口只能属于1个VLAN,一般用于连接计算机的端口

pvid     即端口vlan id号,是非标记端口的vlan id 设定,当非标记数据包进入交换机,交换机将检查vlan设定并决定是否进行转发。一个ip包进入交换机端口的时候,如果没有带tag头,且该端口上配置了pvid,那么,该数据包就会被打上相应的tag头!如果进入的ip包已经带有tag头(vlan数据)的话,那么交换机一般不会再增加tag头,即使是端口上配置了pvid号;当非标记数据包进入交换机。

vid    即vlan id;  1:vlan1(eth0.1); 2:vlan2(eth0.2);

http://blog.csdn.net/shienquan/article/details/52077846

openwrt交换机配置命令-swconfig

以mt7620为例:

pvid
{
  Port0的pvid是0;
  Port1的pvid是1;
  Port2的pvid是2;
  Port3的pvid是3;
  Port4的pvid是4;
  Port5的pvid是5;
}

vid
{
  vid=1:成员有 Port1 Port6 Port7;
  vid=2:成员有 Port4          Port6 Port7;
}

这里说的 (已标记/未标记) tag / untag,都是说 Tx出去的包

openwrt交换机配置命令-swconfig

openwrt交换机配置命令-swconfig

openwrt交换机配置命令-swconfig

有线网卡eth0; 划分了vlan0即lan口, vlan1即wan口

无线网卡 eth1;

br0桥接口 = eth1 + eth0.0

上一篇:openwrt下挂载USB存储设备


下一篇:17 -> 详解 openWRT 的 gpio 配置关系说明