1
0
mirror of https://github.com/CumulusNetworks/ifupdown2.git synced 2024-05-06 15:54:50 +00:00
Roopa Prabhu 7e39bbdfcf Add vlan aware bridge examples
Ticket: CM-3346
Reviewed By: pending review
Testing Done: example files are tested
2014-11-15 23:22:01 -08:00

56 lines
1.3 KiB
Groff

#
# vlan-aware bridge access ports and pruned vlan example
#
# bridge br is a vlan aware bridge with all ports (swp1-52).
# native vlan is by default 1
#
# 'bridge-vids' attribute is used to declare vlans.
# 'bridge-pvid' attribute is used to specify native vlans if other than 1
# 'bridge-access' attribute is used to declare access port
#
#
# The following is an access port to vlan 310, no trunking
auto swp1
iface swp1
bridge-access 310
mstpctl-portautoedge yes
mstpctl-bpduguard yes
# The following is a truk port that is "pruned".
# native vlan is 1, but only .1q tags of 707, 712, 850 are
# sent and received
#
auto swp2
iface swp2
bridge-vids 707 712 850
mstpctl-portautoedge yes
mstpctl-bpduguard yes
# The following port is the trunk uplink and inherits all vlans
# from bridge br
auto swp49
iface swp49
mstpctl-portpathcost 10
# The following port is the trunk uplink and inherits all vlans
# from bridge br
auto swp50
iface swp50
mstpctl-portpathcost 0
#
# ports swp3-swp48 are trunk ports which inherit vlans from the bridge br
# ie vlans 310,700,707,712,850,910
#
# the following is a vlan aware bridge with ports swp1-swp52
# It has stp on
#
auto br
iface br
bridge-vlan-aware yes
bridge-ports glob swp1-52
bridge-stp on
bridge-vids 310 700 707 712 850 910