12-01-2010 11:36 PM
i need to know how to integerate VRRP with MSTP lest say i have two core Switches i need to make 1 core primary for specfic number of vlan and other core fot specific numbe of vlan
Thanks
12-02-2010 01:38 PM - edited 12-02-2010 01:38 PM
core switch 1 mstp config example:
mstp {
configuration-name test.com;
revision-level 1;
bridge-priority 8k;
msti 1 {
bridge-priority 8k;
vlan 1-499;
}
msti 2 {
bridge-priority 8k;
vlan 500-999;
}
msti 3 {
bridge-priority 8k;
vlan 1000-1499;
}
msti 4 {
bridge-priority 8k;
vlan 1500-1999;
}
msti 5 {
bridge-priority 16k;
vlan 2000-2499;
}
msti 6 {
bridge-priority 16k;
vlan 2500-2999;
}
msti 7 {
bridge-priority 16k;
vlan 3000-3499;
}
msti 8 {
bridge-priority 16k;
vlan 3500-3999;
}
bpdu-block-on-edge;
}
core switch 2 mstp example config:
mstp {
configuration-name test.com;
revision-level 1;
bridge-priority 16k;
msti 1 {
bridge-priority 16k;
vlan 1-499;
}
msti 2 {
bridge-priority 16k;
vlan 500-999;
}
msti 3 {
bridge-priority 16k;
vlan 1000-1499;
}
msti 4 {
bridge-priority 16k;
vlan 1500-1999;
}
msti 5 {
bridge-priority 8k;
vlan 2000-2499;
}
msti 6 {
bridge-priority 8k;
vlan 2500-2999;
}
msti 7 {
bridge-priority 8k;
vlan 3000-3499;
}
msti 8 {
bridge-priority 8k;
vlan 3500-3999;
}
bpdu-block-on-edge;
}
core switch 1 vrrp example configuration:
interfaces {
vlan {
unit 100 {
family inet {
address 192.168.100.2/24 {
vrrp-group 100 {
virtual-address 192.168.100.1;
priority 254;
}
}
}
}
unit 2000 {
family inet {
address 192.168.200.2/24 {
vrrp-group 200 {
virtual-address 192.168.200.1;
}
}
}
}
}
}
core switch 2 vrrp example configuration:
interfaces {
vlan {
unit 100 {
family inet {
address 192.168.100.3/24 {
vrrp-group 100 {
virtual-address 192.168.100.1;
}
}
}
}
unit 2000 {
family inet {
address 192.168.200.3/24 {
vrrp-group 200 {
virtual-address 192.168.200.1;
priority 254;
}
}
}
}
}
}
12-05-2010 07:40 AM
Hi hanks,
What the effect if in VRRP command i put one priority 254 n 253. Refer to your statemnet just put the priority ti master 254. How about if the secondary we still put priroty? Is there any effect?
12-06-2010 01:17 PM - edited 12-06-2010 01:33 PM
The default VRRP priority is 100 and the higher priority always wins. If you hard code a priority on the secondary node, just make sure it's lower than the node you want to be the primary.
12-08-2010 03:05 AM
Hi Hanks,
How we want to make sure our MSTP functioning correctly or not? What command should we use? For example i use command "Show ethernet switching interface" at access switch n see just one link will be active but second link will be block. Need your confimation. Thanks..