COMPUTER TIPS

Home | Previous Page| About Us | Set As Home Page

 

Google

  Google Groups Beta Subscribe to Computer free Tips                                                  

Email:

June, 10 , 08                    Today's Tip                              Add to Favorites  

                                                                              

   

Previous Tips e

08-06-08
07-06-08
06-06-08
05-06-08
04-06-08
03-06-08
02-06-08
01-06-08
30-05-08
29-05-08
28-05-08
27-05-08
26-05-08
25-05-08
24-05-08
23-05-08
22-05-08
21-05-08
20-05-08
19-05-08
18-05-08
17-05-08
16-05-08
15-05-08
14-05-08
13-05-08
12-05-08
11-05-08
10-05-08
09-05-08
08-05-08
07-05-08
06-05-08
05-05-08
04-05-08
03-05-08
02-05-08
01-05-08
30-04-08
29-04-08
28-04-08
27-04-08
26-04-08
25-04-08
24-04-08
23-04-08
22-04-08
21-04-08
20-04-08
19-04-08
18-04-08
17-04-08
16-04-08
15-04-08
14-04-08
13-04-08
12-04-08
11-04-08
10-04-08
09-04-08
08-04-08
07-04-08
06-04-08
05-04-08
04-04-08
03-04-08
02-04-08
01-04-08
30-03-08
29-03-08
28-03-08
27-03-08
26-03-08
25-03-08
24-03-08
23-03-08
22-03-08
21-03-08
20-03-08
19-03-08
18-03-08
17-03-08
16-03-08
15-03-08
14-03-08
13-03-08
12-03-08
11-03-08
10-03-08
09-03-08
08-03-08
07-03-08
06-03-08
05-03-08
04-03-08
03-03-08
02-03-08
01-03-08
28-02-08
27-02-08
26-02-08
25-02-08
24-02-08
23-02-08
22-02-08
21-02-08
20-02-08
19-02-08
18-02-08
17-02-08
16-02-08
15-02-08
14-02-08
13-02-08
12-02-08
11-02-08
10-02-08
09-02-08
08-02-08
07-02-08
06-02-08
05-02-08
04-02-08
03-02-08
02-02-08
01-02-08

 Jan-08-Tips

Dec-07-Tips

Nov-07-Tips

October 07-Tips

September 07-Tips

August 07-Tips

July 07- Tips

June 07- Tips

May 07- Tips

April 07- Tips

March, 07- Tips

February, 07- Tips

January, 07- Tips

 

 

 

 

 

 

How to configure MSTP on the Cisco multilayer switches?

 

 

 

MSTP short for Multiple Spanning Tree Protocol is an IEEE standard was inspired by Cisco Multiple Instances Spanning Tree Protocol. In MSTP, you can create a multiple groups for different types of VLANs and then run single instance of spanning tree for a single group of VLANs. But in traditional PVST, there is a different instance of spanning tree for each VLAN. Single instance for a group of VLANs reduce the number of BPDUs, root bridges and root ports in the network. You can perform a proper load balancing across redundant links using MSTP group instances. 

Today tip will help you to configure Multiple Spanning Tree Protocol for different VLANS using three switches. In this case, we will try to configure three different switches with two MSTP instances.

Follow the network topology of three switches to manage the group of VLANS in given figure:

MSTP configuration on Switch-A 

In global configuration mode

SWITCH-A(config)#vlan 10-30

SWITCH-A(config-vlan)#exit

SWITCH-A(config)#vtp domain Marketing

SWITCH-A(config)#spanning-tree mode mst

SWITCH-A(config)#spanning-tree mst configuration

SWITCH-A(config-mst)#name morning

SWITCH-A(config-mst)#revision 10

SWITCH-A(config-mst)#instance 1 vlan 10-20

SWITCH-A(config-mst)#instance 2 vlan 21-30

SWITCH-A(config-mst)#exit 

SWITCH-A(config)#spanning-tree mst 1 root primary  

SWITCH-A(config)#spanning-tree mst 2 root secondary  

SWITCH-A(config)#exit 

MSTP configuration on Switch-B 

In global configuration mode

SWITCH-B(config)#spanning-tree mode mst

SWITCH-B(config)#spanning-tree mst configuration

SWITCH-B(config-mst)#name morning

SWITCH-B(config-mst)#revision 10

SWITCH-B(config-mst)#instance 1 vlan 10-20

SWITCH-B(config-mst)#instance 2 vlan 21-30

SWITCH-B(config-mst)#exit 

SWITCH-B(config)#spanning-tree mst 2 root primary

SWITCH-B(config)#spanning-tree mst 1 root secondary

SWITCH-B(config)#exit 

MSTP configuration on Switch-C

In global configuration mode 

SWITCH-C(config)#spanning-tree mode mst

SWITCH-C(config)#spanning-tree mst configuration

SWITCH-C(config-mst)#name morning

SWITCH-C(config-mst)#revision 10

SWITCH-C(config-mst)#instance 1 vlan 10-20

SWITCH-C(config-mst)#instance 2 vlan 21-30

SWITCH-C(config-mst)#exit

Now verify the MSTP status on switch SWITCH-C for instance 1 and 2, run the command

SWITCH-C# show spanning-tree mst 1 

MST1       vlans mapped:   10-20

Bridge        address 001a.a181.1880  priority      32769 (32768 sysid 1)

Root          address 000c.85d7.d780  priority      24577 (24576 sysid 1)

              port    Fa0/2           cost          200000    rem hops 19 

Interface        Role Sts Cost      Prio.Nbr Type

---------------- ---- --- --------- -------- --------------------

Fa0/1            Altn   BLK  200000    128.3    P2p Pre-STD-Rx

Fa0/2            Root  FWD 200000    128.4    P2p Pre-STD-Rx

 

SWITCH-C# show spanning-tree mst 2 

MST2    vlans mapped:   21-30

Bridge         address 001a.a181.1880  priority      32770 (32768 sysid 2)

Root           address 000c.85de.1100  priority      24578 (24576 sysid 2)

              port    Fa0/1           cost          200000    rem hops 19 

Interface        Role Sts Cost      Prio.Nbr Type

---------------- ---- --- --------- -------- -----------------------

Fa0/1            Root FWD 200000    128.3    P2p Pre-STD-Rx

Fa0/2            Altn  BLK  200000    128.4    P2p Pre-STD-Rx 

                          

Yesterday Tip.

How to uninstall the windows XP using command prompt?