Displaying 1 result from an estimated 1 matches for "set_bind_mod".
Did you mean:
set_bind_mode
2007 Apr 18
1
[Bridge] Bridging vlans...
...t I'm going to need to bridge two vlans, 4 and 51. My
question is this: should the vlan interfaces on the linux firewall be
created first, then bridged; or should the bridge interface be created, then
vlans bound to that?
Here's the first:
ip link set eth0 up
ip link set eth1 up
vconfig set_bind_mode PER_DEVICE
vconfig set_name_type DEV_PLUS_VID_NO_PAD
vconfig add eth0 4
vconfig add eth1 4
vconfig add eth0 51
vconfig add eth1 51
ip link set eth0.4 up
ip link set eth1.4 up
ip link set eth0.51 up
ip link set eth1.51 up
brctl addbr br0
brctl addif br0 eth0.4
brctl addif br0 eth1.4
brctl stp br0...