Lab 2. Spanning Tree Protocols. Overview. JNCIS-ENT++ Bootcamp

Size: px
Start display at page:

Download "Lab 2. Spanning Tree Protocols. Overview. JNCIS-ENT++ Bootcamp"

Transcription

1 Lab 2 Spanning Tree Protocols Overview This lab demonstrates basic configuration and monitoring tasks when implementing spanning tree and some related protection features on EX Series switches. In this lab, you use the command-line interface (CLI) to configure and monitor RSTP as well as bridge protocol data unit (BPDU) and loop protection. In addition, you will use the command-line interface (CLI) to configure and monitor the Multiple Spanning Tree Protocol (MSTP) and VLAN STP (VSTP). All devices are connected to a common management network which facilitates access to the CLI. These exercises assume you already have some basic understanding of the JUNOS CLI interfaces or you have read the JNCIA-JUNOS documentation or similar. Note that your lab login (password given to you separately) grants you all permissions needed to complete this lab; however, some restrictions have been made to prevent loss of connectivity to the devices. Please be careful, and have fun! By completing this lab, you will perform the following tasks: Update the existing configuration. Configure and monitor RSTP. Configure and monitor BPDU protection. Configure and monitor MSTP Configure and monitor VSTP Please refer to the next page lab diagram to perform this exercise: 1

2 Lab Diagram Lab 2: Implementing Spanning Tree Bridge Priority: 4K Bridge Priority: 8K / /24 srxx-1 ge-0/0/1 ge-0/0/2 srxx / /24 Bridge Priority: 32K (default) ge-0/0/8 ge-0/0/10 ge-0/0/10 ge-0/0/8 Bridge Priority: 32K (default) ge-0/0/9 exx-1 exx-2 ge-0/0/9 VLAN: v /24 vr11 ge-0/0/6 ge-0/0/7 VLAN: v /24 vr12 Virtual Routers VLAN: v /24 vr21 ge-0/0/6 ge-0/0/7 VLAN: v /24 vr22 2

3 Part 1: Logging In Using the CLI The goal of this lab part is to become familiar with the access details for your pod of routers & switches and to log in through the CLI. To perform this lab you will have to login in 2x EX switches and 2x SRX devices. 4 sessions in total! srxx-1, srxx-2, exx-1 & exx-2 (being X the initial of the POD being assigned to you) Note Please do NOT delete interface ge-0/0/0 or me0 as this is your management interface which provides access to your session!! Do NOT delete either the security section of your configurations. This allows your system to allow any traffic in/out. Note 2 It is recommended that you use the console connection to access your assigned station. Using the console connection ensures persistent connectivity even when the management network access is unavailable. If needed, review the instructions about how to connect to your system using the console port. Having said that, you can also use the management IP address to perform this lab. Chose the one you want Note 3 Remember that the exercise proposed in this documentation is generic and the examples given here apply only to one particular pod of devices. Please adapt the example to your assigned set of devices (srxa-1, srxa-2, exa-1 & exa-2 or srxb-1, srxb-2, exb-1 & exb-2 or srxc-1, srxc-2, exc-1 & exc-2 or srxd-1, srxd-2, exd-1 & exd-2). Look at you lab diagram and mind the pod of systems that you have been assigned! Step 1.1 Log in to both EX systems with the username lab using the password given to you. Note that both the name and password are case-sensitive. You can connect to your SRX or EX Series devices either using the console connection through the terminal server or through a Telnet or SSH session using the SRX Series device s management IP address. Use the one access method that you prefer. Here is an example on how to login via console into your exx-1 switch. Please open a similar session to the pairing switch exx-2 [luis@js2 ~]$ telnet Trying Connected to ( ). Escape character is '^]'. 3

4 exa-1 (ttyu0) login: lab Password: Enter configuration mode and load the lab2-start configuration from the /var/home/lab/jncis++/ directory. Commit your changes when complete. {master:0 configure Entering configuration mode {master:0[edit] load override jncis++/lab2-start load complete {master:0[edit] commit configuration check succeeds commit complete {master:0[edit] Repeat the same for the other switch exx-2. Login in the system, load the lab5-start configuration file, etc. ~]$ telnet Step 1.2 Open a separate session to your two assigned SRX Series devices. Note you can connect to your SRX Series device using the console connection through the terminal server or through a Telnet or SSH session using the SRX Series device s management IP address. [luis@js2 ~]$ telnet Trying Connected to ( ). Escape character is '^]'. login: lab Password: --- JUNOS 12.1R1.9 built :12:49 UTC lab@srxa-1> 4

5 Enter configuration mode and load the lab2-start configuration from the /var/home/lab/jncis++/ directory. Commit your changes when complete. configure Entering configuration mode [edit] load override jncis++/lab2-start load complete [edit] commit commit complete Exiting configuration mode Note Not likely, but if you happen to get a message like this: lab@host1-a# commit warning: You have changed mpls flow mode. You have to reboot the system for your change to take effect. If you have deployed a cluster, be sure to reboot all nodes. commit complete As the message suggest, please reboot the machine by issuing a request system reboot and keep going. Ignore this note if you do not receive a warning of this kind Repeat the same for the other SRX srxx-2. Login in the system, load the lab5-start.config configuration file, etc. [luis@js2 ~]$ telnet Part 2: Modifying the existing configuration Step 2.1 In this lab part, you will modify the configuration to prepare for subsequent lab parts. Refer to network diagram for this lab for topological and configuration details. Return to your assigned exx-1 switch. From your assigned EX switch, navigate to the [edit vlans] hierarchy level and add the VLANs assigned to virtual routers attached to the remote switch (your other assigned EX switch). Once this step is done, you should see a total of four VLANs defined on your switch; v11, v12, v21, and v22. {master:0[edit] lab@exa-1# edit vlans 5

6 {master:0[edit vlans] show v11 { vlan-id 11; l3-interface vlan.11; v12 { vlan-id 12; l3-interface vlan.12; {master:0[edit vlans] lab@exa-1# set remote-network1-vlan-name vlan-id remote-network1-vlan-id {master:0[edit vlans] lab@exa-1# set remote-network2-vlan-name vlan-id remote-network2-vlan-id {master:0[edit vlans] lab@exa-1# show v11 { vlan-id 11; l3-interface vlan.11; v12 { vlan-id 12; l3-interface vlan.12; v21 { vlan-id 21; v22 { vlan-id 22; Step 2.2 Navigate to the [edit interfaces] hierarchy and associate ge-0/0/8.0 with all vlans. {master:0[edit vlans] lab@exa-1# top edit interfaces {master:0[edit interfaces] lab@exa-1# show ge-0/0/8 unit 0 { family ethernet-switching { port-mode trunk; vlan { members [ v11 v12 ]; {master:0[edit interfaces] lab@exa-1# delete ge-0/0/8 unit 0 family ethernet-switching vlan 6

7 {master:0[edit interfaces] set ge-0/0/8 unit 0 family ethernet-switching vlan members all {master:0[edit interfaces] lab@exa-1# show ge-0/0/8 unit 0 { family ethernet-switching { port-mode trunk; vlan { members all; Step 2.3 Use the copy command to replicate the configuration associated with ge-0/0/8 to the ge-0/0/10 interface. {master:0[edit interfaces] lab@exa-1# copy ge-0/0/8 to ge-0/0/10 {master:0[edit interfaces] lab@exa-1# show ge-0/0/10 unit 0 { family ethernet-switching { port-mode trunk; vlan { members all; Step 2.4 Activate the configuration changes using the commit command. Next, issue the run show ethernet-switching interfaces command. Note Do NOT forget to follow these steps again and configure the other switch exx-2!! {master:0[edit interfaces] lab@exa-1# commit configuration check succeeds commit complete {master:0[edit interfaces] lab@exa-1# run show ethernet-switching interfaces Interface State VLAN members Tag Tagging Blocking 7

8 ge-0/0/1.0 down default untagged unblocked ge-0/0/6.0 up v11 11 untagged unblocked ge-0/0/7.0 up v12 12 untagged unblocked ge-0/0/8.0 up v11 11 tagged unblocked v12 12 tagged unblocked v21 21 tagged unblocked v22 22 tagged unblocked ge-0/0/10.0 up v11 11 tagged unblocked v12 12 tagged unblocked v21 21 tagged unblocked v22 22 tagged unblocked Based on the resulting output, are any of the listed interfaces currently blocking traffic? As shown in the sample output, you should see all interfaces in the unblocked blocking state, which means all interfaces should be forwarding traffic rather than blocking traffic. Part 3: Configuring and Monitoring RSTP In this lab part, you will configure and monitor RSTP. First, you will perform some ping tests on your SRX Series device to identify the need for spanning tree within a Layer 2 network. Next, you will configure RSTP on your assigned devices. Finally, you will verify the effects of enabling RSTP in a Layer 2 network with redundant paths. You will need to refer to the network diagram for this lab for some of the configuration tasks performed in this lab part. Step 3.1 Note The next lab steps are performed on your assigned SRX Series devices. If needed, refer to the management network diagram for access details. Return to one of your assigned SRX Series device. From your assigned SRX Series device, attempt to ping the IP addresses assigned to the VLAN interfaces defined on your EX Series switch. That is the network1-address and network2-address or the addresses of the vr devices. Refer to the network diagram for this lab, if needed. [edit] lab@srxa-1# run ping PING ( ): 56 data bytes 64 bytes from : icmp_seq=0 ttl=64 time=9.501 ms 64 bytes from : icmp_seq=0 ttl=63 time= ms (DUP!) 64 bytes from : icmp_seq=1 ttl=64 time=1.937 ms 8

9 64 bytes from : icmp_seq=2 ttl=64 time=1.798 ms 64 bytes from : icmp_seq=3 ttl=64 time=1.769 ms ^C ping statistics packets transmitted, 4 packets received, +1 duplicates, 50% packet loss round-trip min/avg/max/stddev = 1.769/10.992/39.953/ ms [edit] lab@srxa-1# run ping count 5 PING ( ): 56 data bytes 64 bytes from : icmp_seq=0 ttl=64 time=2.765 ms 64 bytes from : icmp_seq=0 ttl=64 time=3.678 ms (DUP!) 64 bytes from : icmp_seq=1 ttl=64 time=2.201 ms 64 bytes from : icmp_seq=1 ttl=64 time=3.558 ms (DUP!) 64 bytes from : icmp_seq=2 ttl=64 time=7.214 ms 64 bytes from : icmp_seq=2 ttl=64 time=8.276 ms (DUP!) 64 bytes from : icmp_seq=3 ttl=64 time=4.154 ms 64 bytes from : icmp_seq=3 ttl=64 time=5.055 ms (DUP!) 64 bytes from : icmp_seq=4 ttl=64 time=2.223 ms ping statistics packets transmitted, 5 packets received, +4 duplicates, 0% packet loss round-trip min/avg/max/stddev = 2.201/4.347/8.276/2.024 ms [edit] lab@srxa-1# run ping PING ( ): 56 data bytes 64 bytes from : icmp_seq=0 ttl=64 time=9.370 ms 64 bytes from : icmp_seq=0 ttl=63 time= ms (DUP!) 64 bytes from : icmp_seq=1 ttl=64 time=1.751 ms 64 bytes from : icmp_seq=2 ttl=64 time=1.797 ms 64 bytes from : icmp_seq=3 ttl=64 time=1.734 ms ^C ping statistics packets transmitted, 8 packets received, +1 duplicates, 30% packet loss round-trip min/avg/max/stddev = 1.734/6.872/40.006/ ms Do the ping tests succeed? What might these result indicate? Your results may vary from those shown above. In the sample output, the ping tests are not clearly successful. In some situations you may not see any response while in other situations you may see some intermittent replies; including duplicate ICMP echo replies. These results are often indicative of a Layer 2 loop. 9

10 Step 3.2 Activate the RSTP configuration on both SRX devices (the protocol is actually preconfigured in your device but not activated). Issue the commit and-quit command to activate the change and return to operational mode. [edit] show protocols inactive: rstp { bridge-priority 4k; [edit] lab@srxa-1# activate protocols rstp [edit] lab@srxa-1# commit and-quit commit complete Exiting configuration mode lab@srxa-1> Note Do NOT forget to follow these steps again and configure the other srxx-2!! Step 3.3 Return to your assigned EX Series switches. On both your assigned EX Series switches, enable the RSTP protocol. Next, activate the configuration changes and return to operational mode. {master:0[edit interfaces] lab@exa-1# top set protocols rstp {master:0[edit interfaces] lab@exa-1# commit and-quit configuration check succeeds commit complete Exiting configuration mode Based on the priority values listed on the network diagram for this lab, can you predict which device will be elected the root bridge? Based on the assigned priority values, srxx-1, where X represents your assigned pod value, should be elected the root bridge. 10

11 Step 3.4 Issue the show spanning-tree bridge command. {master:0 show spanning-tree bridge STP bridge parameters Context ID : 0 Enabled protocol : RSTP Root ID : :26:88:02:74:90 Root cost : Root port : ge-0/0/8.0 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Message age : 1 Number of topology changes : 2 Time since last topology change : 61 seconds Topology change initiator : ge-0/0/8.0 Topology change last recvd. from : 00:26:88:e9:d2:88 Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 0 Internal instance ID : 0 What is your switch s bridge ID? The answer will vary. In the sample output, the bridge ID is :23:9c:13:a8:41. Remember that the bridge ID is created by combining the bridge priority (32K by default) and the system MAC address. The system MAC address is typically the same as the public base address for the device. The public base address can be viewed on EX Series switches using the following command: {master:0 lab@exa-1> show chassis mac-addresses FPC 0 MAC address information: Public base address 00:23:9c:13:a8:40 Public count 64 Can you determine which device is elected as the root bridge? The srxx-1 device, where X represents your assigned pod value, should be elected as the root bridge based on the bridge priority value of

12 Which interface on your switch has been selected as the root port? The answer depends on the device you check it. On switch exx-1, where X represents your assigned pod value, you should see ge-0/0/8.0 elected as the root port. On switch exx-2, where X represents your assigned pod value, you should see ge-0/0/10.0 elected as the root port. A sample capture taken from exx-2 follows: {master:0 lab@exa-2> show spanning-tree bridge STP bridge parameters Context ID : 0 Enabled protocol : RSTP Root ID : :26:88:02:74:90 Root cost : Root port : ge-0/0/10.0 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Message age : 1 Number of topology changes : 2 Time since last topology change : 340 seconds Topology change initiator : ge-0/0/10.0 Topology change last recvd. from : 00:26:88:e9:d2:8a Local parameters Bridge ID : :23:9c:13:91:81 Extended system ID : 0 Internal instance ID : 0 What is the cumulative cost to the root bridge from your designated switch? Regardless of your assigned switch, the cumulative cost to the root bridge should be based on the active topology. Step 3.5 Issue the show spanning-tree interface command to determine the state and role of each switch port. {master:0 lab@exa-1> show spanning-tree interface 12

13 Spanning tree interface parameters for instance 0 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c13a FWD DESG ge-0/0/ : : c13a FWD DESG ge-0/0/ : : FWD ROOT ge-0/0/ : : b BLK ALT Does your switch currently have any ports in the blocking (BLK) state? If so, which interface? Regardless of the switch you look at, you should have one switch port in the blocking (BLK) state. The actual interface in the blocking state will depend on your device. If you look at switch exx-1, where X represents your assigned pod value, you should see ge-0/0/10.0 in the blocking state. If you look at switch is exx-2, you should see ge- 0/0/8.0 in the blocking state. A sample capture taken from exx-2 follows: {master:0 lab@exa-2> show spanning-tree interface Spanning tree interface parameters for instance 0 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c FWD DESG ge-0/0/ : : c FWD DESG ge-0/0/ : : b BLK ALT ge-0/0/ : : FWD ROOT Why are all the port costs the same for all interfaces? They are all the same because they are using the default port cost for 1 Gbps Ethernet. If a port has been changed to influence root port election you might see something like the following output where the influenced port and path have a lower value than the default for 1 Gbps Ethernet: {master:0 lab@exa-1> show spanning-tree interface Spanning tree interface parameters for instance 0 13

14 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c13a FWD DESG ge-0/0/ : : c13a FWD DESG ge-0/0/ : : FWD ROOT ge-0/0/ : : b BLK ALT Step 3.6 Issue the show ethernet-switching interfaces command to view the effects of the spanning tree calculations on Ethernet switching interfaces. {master:0 show ethernet-switching interfaces Interface State VLAN members Tag Tagging Blocking ge-0/0/1.0 down default untagged blocked by STP ge-0/0/6.0 up v11 11 untagged unblocked ge-0/0/7.0 up v12 12 untagged unblocked ge-0/0/8.0 up v11 11 tagged unblocked v12 12 tagged unblocked v21 21 tagged unblocked v22 22 tagged unblocked ge-0/0/10.0 up v11 11 tagged blocked by STP v12 12 tagged blocked by STP v21 21 tagged blocked by STP v22 22 tagged blocked by STP Are there any Ethernet switching interfaces now in the blocking state? If so, which interfaces and why? Step 3.7 Regardless of the switch you look at, you should have two Ethernet switching ports in the blocking state. In all cases, ge-0/0/1.0 should be blocked by STP because it is not physically up. The second interface in the blocking state will depend on the device. If you look at exx-1, where X represents your assigned pod value, you should see ge- 0/0/10.0 in the blocking state. If you look at exx-2, where X represents your assigned pod value, you should see ge-0/0/8.0 in the blocking state. The second interface is also being blocked by STP due to the least cost path calculation to the root bridge. Issue the show spanning-tree interface ge-0/0/y detail command for the interface currently designated as the root port (where y is either ge-0/0/8 or ge-0/0/10 depending on the switch you are checking). 14

15 {master:0 show spanning-tree interface ge-0/0/8 detail Spanning tree interface parameters for instance 0 Interface name : ge-0/0/8.0 Port identifier : Designated port ID : Port cost : Port state : Forwarding Designated bridge ID : :26:88:02:74:90 Port role : Root Link type : Pt-Pt/NONEDGE Boundary port : NA Edge delay while expiry count : 1 Rcvd info while expiry count : 0 What is the Link type for this interface? Step 3.8 The Link type for the root port should be Pt-Pt/NONEDGE. This is the default link type for an interface operating in full-duplex that receives BPDUs. Issue the show spanning-tree interface ge-0/0/6 detail command. {master:0 lab@exa-1> show spanning-tree interface ge-0/0/6 detail Spanning tree interface parameters for instance 0 Interface name : ge-0/0/6.0 Port identifier : Designated port ID : Port cost : Port state : Forwarding Designated bridge ID : :23:9c:13:a8:41 Port role : Designated Link type : Pt-Pt/EDGE Boundary port : NA Edge delay while expiry count : 1 Rcvd info while expiry count : 0 What is the Link type for this interface? Can you explain why it is different than the root port? 15

16 The Link type for ge-0/0/6 should be Pt-Pt/EDGE. This is the expected link type for this interface because it is operating in full-duplex and is not receiving BPDUs from the connected virtual router. For an interface operating in half-duplex mode, you see a link type of shared rather than point-to-point. The following output confirms the current duplex setting for ge-0/0/6: {master:0 lab@exa-1> show interfaces ge-0/0/6 extensive match "Link mode" Link mode: Full-duplex, Flow control: None, Remote fault: OK, Step 3.9 Return to your assigned SRX Series devices srxx-1. On one of your assigned SRX Series device, use the ping utility and attempt to ping the IP addresses assigned to the VLAN interfaces defined on your EX Series switch (the same ones as in step 3.1). Refer to the network diagram for this lab, if needed. lab@srxa-1> ping count 10 rapid PING ( ): 56 data bytes!!!!!!!!!! ping statistics packets transmitted, 10 packets received, 0% packet loss round-trip min/avg/max/stddev = 1.560/1.825/2.337/0.293 ms lab@srxa-1> ping count 10 rapid PING ( ): 56 data bytes!!!!!!!!!! ping statistics packets transmitted, 10 packets received, 0% packet loss round-trip min/avg/max/stddev = 1.234/1.343/1.551/0.098 ms lab@srxa-1> ping count 10 rapid PING ( ): 56 data bytes!!!!!!!!!! ping statistics packets transmitted, 10 packets received, 0% packet loss round-trip min/avg/max/stddev = 1.633/2.045/2.742/0.343 ms Do the ping tests succeed? Yes, at this time the ping tests should succeed 16

17 Part 4: Configuring and Monitoring BPDU Protection Step 4.1 In this lab part, you will enable some protection features. First, you will enable the ge-0/0/9.0 interface for Layer 2 operations as an edge port. Next, you will configure BPDU protection and monitor the effects of this protection feature. Finally, you will administratively clear a BPDU error condition. This lab section could be performed on the srxx-1 and exx-1 pair of devices only. Return to your assigned EX Series switches. On your EX Series switches, enter configuration mode and navigate to the [edit interfaces] hierarchy level. {master:0 lab@exa-1> configure Entering configuration mode {master:0[edit] lab@exa-1# edit interfaces Enable ge-0/0/9 for Layer 2 operations as an access port for the default VLAN {master:0[edit interfaces] lab@exa-1# set ge-0/0/9 unit 0 family ethernet-switching Step 4.2 Navigate to the [edit protocols rstp] hierarchy. Define ge-0/0/9.0 as an edge port. Next, issue the commit command to activate the configuration changes. {master:0[edit interfaces] lab@exa-1# top edit protocols rstp {master:0[edit protocols rstp] lab@exa-1# set interface ge-0/0/9.0 edge {master:0[edit protocols rstp] lab@exa-1# commit configuration check succeeds commit complete Step 4.3 Issue the run show spanning-tree interface ge-0/0/9.0 detail command. {master:0[edit protocols rstp] lab@exa-1# run show spanning-tree interface ge-0/0/9.0 detail Spanning tree interface parameters for instance 0 Interface name : ge-0/0/9.0 Port identifier :

18 Designated port ID : Port cost : Port state : Forwarding Designated bridge ID : :23:9c:13:a8:41 Port role : Designated Link type : Pt-Pt/EDGE Boundary port : NA Edge delay while expiry count : 1 Rcvd info while expiry count : 0 Is ge-0/0/9.0 designated as an edge port? Yes, ge-0/0/9.0 should now be designated as a point-to-point edge (Pt-PT/EDGE) interface as shown in the sample output. What is the state and role of ge-0/0/9.0? At this time the newly added interface should be present in the generated output and should assume the forwarding state and designated role. Step 4.4 Enable the BPDU protection feature under the [edit protocols rstp] hierarchy and activate the configuration change using the commit command. {master:0[edit protocols rstp] lab@exa-1# set bpdu-block-on-edge {master:0[edit protocols rstp] lab@exa-1# commit configuration check succeeds commit complete Step 4.5 Issue the run show ethernet-switching interfaces command. {master:0[edit protocols rstp] lab@exa-1# run show ethernet-switching interfaces Interface State VLAN members ge-0/0/1.0 down default Tag Tagging Blocking untagged blocked by STP 18

19 ge-0/0/6.0 up v11 11 untagged unblocked ge-0/0/7.0 up v12 12 untagged unblocked ge-0/0/8.0 up v11 11 tagged unblocked v12 12 tagged unblocked v21 21 tagged unblocked v22 22 tagged unblocked ge-0/0/9.0 up default untagged unblocked ge-0/0/10.0 up v11 11 tagged blocked by STP v12 12 tagged blocked by STP v21 21 tagged blocked by STP v22 22 tagged blocked by STP What are the interface and blocking states for ge-0/0/9.0? The interface and blocking states for interface ge-0/0/9.0 should be up and unblocked respectively. Step 4.6 Return to your assigned SRX Series device. On your SRX Series device, enter configuration mode and navigate to the [edit interfaces] hierarchy level. configure Entering configuration mode [edit] edit interfaces [edit interfaces] Activate the ge-0/0/9 interface. Next, issue the commit command to activate the configuration change. [edit interfaces] show ge-0/0/9 ## ## inactive: interfaces ge-0/0/9 ## unit 0 { family ethernet-switching { port-mode trunk; vlan { members all; 19

20 [edit interfaces] activate ge-0/0/9 [edit interfaces] commit commit complete Step 4.7 Return to your assigned exx-1 Series switch and issue the run show ethernet-switching interfaces command to determine the current state of the ge-0/0/9.0 interface. {master:0[edit protocols rstp] run show ethernet-switching interfaces Interface State VLAN members Tag Tagging Blocking ge-0/0/1.0 down default untagged blocked by STP ge-0/0/6.0 up v11 11 untagged unblocked ge-0/0/7.0 up v12 12 untagged unblocked ge-0/0/8.0 up v11 11 tagged unblocked v12 12 tagged unblocked v21 21 tagged unblocked v22 22 tagged unblocked ge-0/0/9.0 down default untagged Disabled by bpdu-control ge-0/0/10.0 up v11 11 tagged blocked by STP v12 12 tagged blocked by STP v21 21 tagged blocked by STP v22 22 tagged blocked by STP What are the interface and blocking states for ge-0/0/9.0? Step 4.8 The interface and blocking states for interface ge-0/0/9.0 should be down and disabled by bpdu-control respectively. Issue the run show spanning-tree interface ge-0/0/9.0 detail command. {master:0[edit protocols rstp] run show spanning-tree interface ge-0/0/9.0 detail Spanning tree interface parameters for instance 0 Interface name : ge-0/0/9.0 Port identifier : Designated port ID : Port cost : Port state : Blocking Designated bridge ID : :23:9c:13:a8:41 20

21 Port role : Disabled (Bpdu-Inconsistent) Link type : Pt-Pt/EDGE Boundary port : NA Edge delay while expiry count : 2 Rcvd info while expiry count : 0 What is the state and role of ge-0/0/9.0? Currently, the ge-0/0/9.0 interface should show the Blocking state and Disabled (Bpdu-Inconsistent) port role. Step 4.9 Return to your assigned srxx-1 Series device and deactivate again the ge-0/0/9 interface. Next, issue the commit and-quit command to activate the configuration change and return to operational mode. [edit interfaces] lab@srxa-1# deactivate ge-0/0/9 [edit interfaces] lab@srxa-1# show ge-0/0/9 ## ## inactive: interfaces ge-0/0/9 ## unit 0 { family ethernet-switching { port-mode trunk; vlan { members all; [edit interfaces] lab@srxa-1# commit and-quit commit complete Exiting configuration mode Step 4.10 Return to your assigned exx-1 Series switch and clear the current BPDU error condition. Next, issue the run show ethernet-switching interfaces ge-0/0/9.0 command to verify the error condition has been cleared. 21

22 {master:0[edit protocols rstp] run clear ethernet-switching bpdu-error {master:0[edit protocols rstp] run show ethernet-switching interfaces ge-0/0/9.0 Interface State VLAN members Tag Tagging Blocking ge-0/0/9.0 up default untagged unblocked Has the error condition been administratively removed? Yes, as shown in the sample output, the error condition should now be gone thanks to the illustrated clear command. If the error condition persists, check the configurations on your assigned devices. Part 5: Configuring and Monitoring MSTP Step 5.1 In this lab part, you configure and monitor MSTP. You create two multiple spanning-tree instances (MSTIs); one for VLAN IDs 11 and 21, and a second for VLAN IDs 12 and 22. Once configured, you use various operational mode commands to monitor MSTP Return to your EX devices and delete RSTP, under the [edit protocols] hierarchy. {master:0[edit protocols rstp] lab@exa-1# up {master:0[edit protocols] lab@exa-1# delete rstp {master:0[edit protocols] lab@exa-1# Step 5.2 Configure MSTP to include two MSTIs (MSTI 1 and MSTI 2). Associate MSTI 1 with VLAN IDs 11 and 21 and associate MSTI 2 with VLAN IDs 12 and 22. Name the MSTP configuration my-mstpconfig. Activate the configuration using commit {master:0[edit protocols] lab@exa-1# set mstp configuration-name my-mstp-config {master:0[edit protocols] lab@exa-1# set mstp msti 1 vlan [11 21] {master:0[edit protocols] lab@exa-1# set mstp msti 2 vlan [12 22] 22

23 {master:0[edit protocols] show mstp { configuration-name my-mstp-config; msti 1 { vlan [ ]; msti 2 { vlan [ ]; {master:0[edit protocols] lab@exa-1# commit configuration check succeeds commit complete Ensure you perform identical configuration steps on your other assigned EX switch device; that is delete the rstp protocol and configure mstp with identical parameters as in your exx-1 device. To be quick, you could make use of the show display function of exx-1 so you can copy & paste the relevant commands in your other switch {master:0[edit protocols] lab@exa-1# show display set set protocols mstp configuration-name my-mstp-config set protocols mstp msti 1 vlan 11 set protocols mstp msti 1 vlan 21 set protocols mstp msti 2 vlan 12 set protocols mstp msti 2 vlan 22 Step 5.3 Return to your assigned srxx-1 device, enter configuration mode and navigate to [edit protocols] hierarchy and delete the existing RSTP configuration. lab@srxa-1> configure Entering configuration mode [edit] lab@srxa-1# edit protocols [edit protocols] lab@srxa-1# delete rstp Step 5.4 Once more, configure MSTP in your srxx-1 device to include two MSTIs (MSTI 1 and MSTI 2). Associate MSTI 1 with VLAN IDs 11 and 21 and associate MSTI 2 with VLAN IDs 12 and 22. Name the MSTP configuration my-mstp-config. [edit protocols] lab@srxa-1# set mstp configuration-name my-mstp-config [edit protocols] lab@srxa-1# set mstp msti 1 vlan [11 21] 23

24 [edit protocols] set mstp msti 2 vlan [12 22] Step 5.5 Note Repeat identical steps 5.3 and 5.4 on your srxx-2 device Configure a non-default bridge priority for each MSTI. On your assigned srxx-1, specify a bridge priority of 4k for MSTI 1 and 8k for MSTI 2. On your assigned srxx-2, specify a bridge priority of 8k for MSTI 1 and 4k for MSTI 2. Activate the changes and return to operational mode using the commit and-quit command. The following captures illustrate the commands and expected configurations for both SRX Series devices in Pod A: [edit protocols] lab@srxa-1# set mstp msti 1 bridge-priority 4k [edit protocols] lab@srxa-1# set mstp msti 2 bridge-priority 8k [edit protocols] lab@srxa-1# show mstp { configuration-name my-mstp-config; msti 1 { bridge-priority 4k; vlan [ ]; msti 2 { bridge-priority 8k; vlan [ ]; [edit protocols] lab@srxa-1# commit and-quit commit complete Exiting configuration mode And here is the configuration on the srxx-2: [edit protocols] lab@srxa-2# set mstp msti 1 bridge-priority 8k [edit protocols] lab@srxa-2# set mstp msti 2 bridge-priority 4k [edit protocols] lab@srxa-2# show 24

25 mstp { configuration-name my-mstp-config; msti 1 { bridge-priority 8k; vlan [ ]; msti 2 { bridge-priority 4k; vlan [ ]; [edit protocols] lab@srxa-2# commit and-quit commit complete Exiting configuration mode Based on the current configurations, what forwarding paths would you expect for traffic associated with the various VLANs currently in use? Step 5.6 The spanning-tree topology now offers some level of load balancing for the defined VLANs. Based on the current configurations, all traffic associated with VLAN ID 11 and 21 should pass through srxx-1. The traffic associated with the other VLAN IDs 12 & 21 should pass through srxx-2 Return to your assigned exx-1 switch and issue the command run show spanning-tree bridge to answer the questions that follow: {master:0[edit protocols] lab@exa-1# run show spanning-tree bridge STP bridge parameters Context ID : 0 Enabled protocol : MSTP STP bridge parameters for CIST Root ID : :23:9c:13:91:81 Root cost : 0 Root port : ge-0/0/10.0 CIST regional root : :23:9c:13:91:81 CIST internal root cost : Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Hop count : 18 Message age : 0 Number of topology changes : 8 Time since last topology change : 622 seconds 25

26 Topology change initiator : ge-0/0/10.0 Topology change last recvd. from : 00:26:88:e9:d2:88 Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 0 Internal instance ID : 0 STP bridge parameters for MSTI 1 MSTI regional root : :26:88:02:74:90 Root cost : Root port : ge-0/0/8.0 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Hop count : 19 Number of topology changes : 11 Time since last topology change : 622 seconds Topology change initiator : ge-0/0/8.0 Topology change last recvd. from : 00:26:88:e9:d5:0a Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 0 Internal instance ID : 1 STP bridge parameters for MSTI 2 MSTI regional root : :26:88:02:6b:90 Root cost : Root port : ge-0/0/10.0 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Hop count : 19 Number of topology changes : 9 Time since last topology change : 622 seconds Topology change initiator : ge-0/0/10.0 Topology change last recvd. from : 00:26:88:e9:d2:88 Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 0 Internal instance ID : 2 Are the expected devices elected root bridges for MSTI 1 and MSTI 2? The answer should be yes. The srxx-1 device should be elected root bridge for MSTI 1 and the srxx-2 device should be elected root bridge for MSTI 2. If you see different results, check your configuration and you have performed all steps in the 4 devices assigned to you. 26

27 Which device has been elected as the root bridge for the Common and Internal Spanning Tree (CIST)? The answer might vary. In the illustrated example, exa-2 has been elected as the root bridge for the CIST (MSTI 0). What configuration change can you make to ensure srxx-1 is always the root bridge as long as it is available? Step 5.7 To ensure one device is always the root bridge when it is available, you must ensure the bridge priority for that device is set to a lower value than all other switches participating in the MSTP region. In order to check that all is well and no layer 2 loops exist in the network, check it from your srxx-1 device by using the ping utility and attempting to ping the IP addresses assigned to the VLAN interfaces defined on your EX Series switch Refer to the network diagram for this lab, if needed. lab@srxa-1> ping count 10 rapid PING ( ): 56 data bytes!!!!!!!!!! ping statistics packets transmitted, 10 packets received, 0% packet loss round-trip min/avg/max/stddev = 1.227/1.449/1.878/0.216 ms lab@srxa-1> ping count 10 rapid PING ( ): 56 data bytes!!!!!!!!!! ping statistics packets transmitted, 10 packets received, 0% packet loss round-trip min/avg/max/stddev = 1.202/1.419/1.907/0.224 ms Do the ping tests succeed? Yes, the ping tests should succeed 27

28 Step 5.8 Verify that MSTP has converged with a loop-free topology. Issue the run show spanning-tree interface command to determine the state and role of each switch port. View each MSTI independently. Take note of the spanning tree that has been built for each. {master:0[edit protocols] lab@exa-1# run show spanning-tree interface Spanning tree interface parameters for instance 0 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c13a FWD DESG ge-0/0/ : : c13a FWD DESG ge-0/0/ : : BLK ALT ge-0/0/ : : b FWD ROOT Spanning tree interface parameters for instance 1 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c13a FWD DESG ge-0/0/ : : FWD ROOT ge-0/0/ : : b BLK ALT Spanning tree interface parameters for instance 2 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c13a FWD DESG ge-0/0/ : : BLK ALT ge-0/0/ : : b FWD ROOT Has MSTP converged with a loop-free topology? Yes. MSTP should have created a loop free topology. If not, go back and check your work. Does your switch currently have any ports in the blocking (BLK) state? If so, which interfaces? Yes, do notice that there are different port states for each one of the MSTI topologies. 28

29 That is the main goal of MSTP, to create a different spanning-tree topology for each set of VLANs that belong to an MST instance (MSTI) What is the default port cost for each interface? The default port cost for every interface is 20,000. Step 5.9 On your assigned exx-1 Series switch, issue the run show spanning-tree mstp configuration command. {master:0[edit protocols] lab@exa-1# run show spanning-tree mstp configuration MSTP information Context identifier : 0 Region name : my-mstp-config Revision : 0 Configuration digest : 0x bc7f1759df29e08ab39ad805e MSTI Member VLANs ,13-20, , ,22 Does the output display the expected VLAN to MSTI mapping information? Yes, the output should show the correct VLAN to MSTI mapping information. You should see the previously configured ranges for MSTI 1 and MSTI 2 (11 & 21 and 12 & 22 respectively) and the remainder of the supported VLAN ID range associated with the CIST (MSTI 0). Which three components in the displayed output must match for switches participating in the same MST region? 29

30 The region name, revision level, and the VLAN to MSTI mappings must match on all bridges participating in the same MST region. How is the configuration digest determined? The configuration digest is based on the VLAN to MSTI mapping information. Note that this mapping information must match on all switches intending to participate in the same MST region. Step 5.10 Return to your exx-1 device and change the revision level to test the effects of mismatched settings that are required to match on switches participating in the same MST region. On exx-1, set your revision number to 2. Issue commit to activate the configuration change. {master:0[edit protocols] set mstp revision-level 2 {master:0[edit protocols] lab@exa-1# commit configuration check succeeds commit complete Step 5.11 Issue the run show spanning-tree mstp configuration command to verify the change. Next issue the run show spanning-tree bridge command to verify the current state of the MSTP topology and root bridge election details. {master:0[edit protocols] lab@exa-1# run show spanning-tree mstp configuration MSTP information Context identifier : 0 Region name : my-mstp-config Revision : 2 Configuration digest : 0x bc7f1759df29e08ab39ad805e MSTI Member VLANs ,13-20, , ,22 {master:0[edit protocols] lab@exa-1# run show spanning-tree bridge 30

31 STP bridge parameters Context ID : 0 Enabled protocol : MSTP STP bridge parameters for CIST Root ID : :23:9c:13:91:81 Root cost : Root port : ge-0/0/10.0 CIST regional root : :23:9c:13:a8:41 CIST internal root cost : 0 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Hop count : 20 Message age : 2 Number of topology changes : 14 Time since last topology change : 2099 seconds Topology change initiator : ge-0/0/10.0 Topology change last recvd. from : 00:26:88:e9:d2:88 Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 0 Internal instance ID : 0 STP bridge parameters for MSTI 1 MSTI regional root : :23:9c:13:a8:41 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Number of topology changes : 18 Time since last topology change : 2099 seconds Topology change initiator : ge-0/0/10.0 Topology change last recvd. from : 00:26:88:e9:d5:0a Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 0 Internal instance ID : 1 STP bridge parameters for MSTI 2 MSTI regional root : :23:9c:13:a8:41 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Number of topology changes : 15 Time since last topology change : 2099 seconds Topology change initiator : ge-0/0/10.0 Topology change last recvd. from : 00:26:88:e9:d2:88 Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 0 Internal instance ID : 2 What impact did changing the revision level have on the MSTP topology and root bridge election for MSTI 1 and MSTI 2? 31

32 Because the required settings on the EX Series switches no longer match the other devices within the MST region, each EX Series switch is effectively running in isolation in new MST regions that are based on new settings. This arrangement is verified by the newly elected root bridge in each MSTI. In the sample capture, we see that exx-1 is now the elected root bridge for MSTI 1 and MSTI 2. Note that exx-2 should show a similar output with itself elected root bridge for both MSTIs Part 6: Configuring and Monitoring VSTP Step 6.1 In this lab part, you configure and monitor VSTP. Once configured, you use various operational mode commands to verify VSTP operations. Note that SRX Series devices do not currently support VSTP. Because of this fact, you must alter the current topology to exclude the SRX Series devices for this lab part. Issue the set rstp and commit commands in an attempt to enable RSTP along with MSTP. {master:0[edit protocols] lab@exa-1# set rstp {master:0[edit protocols] lab@exa-1# commit [edit protocols] 'mstp' Another xstp protocol is enabled error: Another xstp protocol is enabled error: configuration check-out failed Did the commit operation succeed? If not, why not? Step 6.2 No, the commit operation should not succeed because RSTP and MSTP cannot be enabled at the same time. Note that RSTP can, however, be enabled at the same time as VSTP. Delete MSTP and attempt the commit operation once again. {master:0[edit protocols] lab@exa-1# delete mstp {master:0[edit protocols] lab@exa-1# commit 32

33 configuration check succeeds commit complete Step 6.3 Note Repeat identical steps on your other exx-2 device Configure VSTP to support the currently defined VLANs independently. Refer to the following table for the bridge-priority values. Once finished go ahead and commit your configuration. VLAN exx-1 exx-2 v11 4k 8k v12 8k 4k v21 4k 8k v22 8k 4k {master:0[edit protocols] set vstp vlan v11 bridge-priority 4k {master:0[edit protocols] set vstp vlan v12 bridge-priority 8k {master:0[edit protocols] set vstp vlan v21 bridge-priority 4k {master:0[edit protocols] set vstp vlan v22 bridge-priority 8k {master:0[edit protocols] show rstp; vstp { vlan v11 { bridge-priority 4k; vlan v12 { bridge-priority 8k; vlan v21 { bridge-priority 4k; vlan v22 { bridge-priority 8k; {master:0[edit protocols] lab@exa-1# commit and-quit configuration check succeeds 33

34 commit complete Exiting configuration mode Step 6.4 Note Do not forget to also configure VSTP on your other exx-2 device with the priorities indicated in the table above Issue show spanning-tree bridge command once again to determine the current root bridge designations for each VLAN. {master:0[edit protocols] run show spanning-tree bridge STP bridge parameters Context ID : 0 Enabled protocol : RSTP Root ID : :23:9c:13:a8:41 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Message age : 0 Number of topology changes : 2 Time since last topology change : 12 seconds Topology change last recvd. from : 00:26:88:e9:d5:0a Local parameters Bridge ID Extended system ID : 0 Internal instance ID : 0 STP bridge parameters Context ID : 3 Enabled protocol : RSTP : :23:9c:13:a8:41 STP bridge parameters for VLAN 11 Root ID : :23:9c:13:a8:41 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Message age : 0 Number of topology changes : 1 Time since last topology change : 10 seconds Topology change initiator : ge-0/0/8.0 Topology change last recvd. from : 00:23:9c:13:a8:4b Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 3 Internal instance ID : 0 STP bridge parameters Context ID : 4 Enabled protocol : RSTP STP bridge parameters for VLAN 12 Root ID : :23:9c:13:91:81 Root cost :

35 Root port : ge-0/0/8.0 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Message age : 1 Number of topology changes : 1 Time since last topology change : 10 seconds Topology change initiator : ge-0/0/8.0 Topology change last recvd. from : 00:23:9c:13:a8:4b Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 4 Internal instance ID : 0 STP bridge parameters Context ID : 5 Enabled protocol : RSTP STP bridge parameters for VLAN 21 Root ID : :23:9c:13:a8:41 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Message age : 0 Number of topology changes : 1 Time since last topology change : 10 seconds Topology change initiator : ge-0/0/8.0 Topology change last recvd. from : 00:23:9c:13:a8:4b Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 5 Internal instance ID : 0 STP bridge parameters Context ID : 6 Enabled protocol : RSTP STP bridge parameters for VLAN 22 Root ID : :23:9c:13:91:81 Root cost : Root port : ge-0/0/8.0 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Message age : 1 Number of topology changes : 1 Time since last topology change : 10 seconds Topology change initiator : ge-0/0/8.0 Topology change last recvd. from : 00:23:9c:13:a8:4b Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 6 Internal instance ID : 0 Are the correct root bridges now elected? 35

36 Step 6.5 Yes, the expected root bridges should be elected. Based on the current configuration, exx-1 should be root bridge for the v11 and v21 VLANs and exx-2 should be root bridge for the v12 and v22 VLANs. Note that on top of that, there is an additional RSTP instance for the rest of the VLANs. If your results do not match the expected results, check your configuration. Issue the run show spanning-tree interface command to determine the state and role of each switch port. View each VSTP independently. Take note of the spanning tree that has been built for each. {master:0[edit protocols] run show spanning-tree interface Spanning tree interface parameters for VLAN 11 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c13a FWD DESG ge-0/0/ : : c13a FWD DESG ge-0/0/ : : c13a BLK BKUP Spanning tree interface parameters for VLAN 12 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c13a FWD DESG ge-0/0/ : : c FWD ROOT ge-0/0/ : : c BLK ALT Spanning tree interface parameters for VLAN 21 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c13a FWD DESG ge-0/0/ : : c13a BLK BKUP Spanning tree interface parameters for VLAN 22 Interface Port ID Designated Designated Port State Role port ID bridge ID Cost ge-0/0/ : : c FWD ROOT ge-0/0/ : : c BLK ALT Has VSTP converged with a loop-free topology? 36

37 Yes. VSTP should have created an individual loop free topology for each VLAN. Which topology will be used for a VLAN out of the range specified on the VSTP configuration? For any VLAN not explicitly configured to belong to a particular VSTP the switch will be using the global RSTP topology. You can check that for the vlan-id 5 for instance: {master:0[edit protocols] lab@exa-1# run show spanning-tree bridge vlan-id 5 STP bridge parameters Context ID : 0 Enabled protocol : RSTP Root ID : :23:9c:13:a8:41 Hello time : 2 seconds Maximum age : 20 seconds Forward delay : 15 seconds Message age : 0 Number of topology changes : 0 Local parameters Bridge ID : :23:9c:13:a8:41 Extended system ID : 0 Internal instance ID : 0 Step 6.6 Log out of all your assigned EX Series switches and SRX devices. {master:0[edit protocols] lab@exa-1# top {master:0[edit] lab@exa-1# exit Exiting configuration mode {master:0 lab@exa-1> exit exa-1 (ttyu0) login: STOP You have completed Lab 2! 37

Lab 5. Spanning Tree. Overview. JNCIS-ENT Bootcamp

Lab 5. Spanning Tree. Overview. JNCIS-ENT Bootcamp Lab 5 Spanning Tree Overview This lab demonstrates basic configuration and monitoring tasks when implementing spanning tree and some related protection features on EX Series switches. In this lab, you

More information

Lab 4. Firewall Filters and Class of Service. Overview. Introduction to JUNOS Software & Routing Essentials

Lab 4. Firewall Filters and Class of Service. Overview. Introduction to JUNOS Software & Routing Essentials Lab 4 Firewall Filters and Class of Service Overview This lab demonstrates configuration and monitoring of Firewall Filters and Class of Service on JUNOS devices. In this lab, you use the Command Line

More information

The multiple spanning-tree (MST) implementation is based on the IEEE 802.1s standard.

The multiple spanning-tree (MST) implementation is based on the IEEE 802.1s standard. CHAPTER 18 This chapter describes how to configure the Cisco implementation of the IEEE 802.1s Multiple STP (MSTP) on the IE 3010 switch. Note The multiple spanning-tree (MST) implementation is based on

More information

Index. Numerics. Index p priority (QoS) definition Q VLAN standard w as a region 5-54

Index. Numerics. Index p priority (QoS) definition Q VLAN standard w as a region 5-54 Index Numerics 802.1p priority (QoS) 802.1Q VLAN standard 5-7 802.1w as a region 5-54 A active path 5-5 address IP 7-8 advertisement 3-3 applicable products 1-ii ARP age setting 7-10 cache 7-4 cache table

More information

Configuring STP and Prestandard IEEE 802.1s MST

Configuring STP and Prestandard IEEE 802.1s MST 20 CHAPTER This chapter describes how to configure the Spanning Tree Protocol (STP) and prestandard IEEE 802.1s Multiple Spanning Tree (MST) protocol on Catalyst 6500 series switches. Note The IEEE 802.1s

More information

Configuring MST Using Cisco NX-OS

Configuring MST Using Cisco NX-OS This chapter describes how to configure Multiple Spanning Tree (MST) on Cisco NX-OS devices. This chapter includes the following sections: Finding Feature Information, page 1 Information About MST, page

More information

Configuring Virtual Port Channels

Configuring Virtual Port Channels This chapter contains the following sections: Information About vpcs, page 1 Guidelines and Limitations for vpcs, page 10 Configuring vpcs, page 11 Verifying the vpc Configuration, page 25 vpc Default

More information

62HConfiguring port role restriction 131H37. 63HConfiguring TC-BPDU transmission restriction 132H38. 64HEnabling TC-BPDU guard 133H38

62HConfiguring port role restriction 131H37. 63HConfiguring TC-BPDU transmission restriction 132H38. 64HEnabling TC-BPDU guard 133H38 Contents Configuring spanning tree protocols 3 STP 3 STP protocol packets 3 Basic concepts in STP 4 Calculation process of the STP algorithm 5 RSTP 9 MSTP 10 MSTP features 10 MSTP basic concepts 10 How

More information

Table of Contents 1 MSTP Configuration 1-1

Table of Contents 1 MSTP Configuration 1-1 Table of Contents 1 MSTP Configuration 1-1 Overview 1-1 Introduction to STP 1-1 Why STP 1-1 Protocol Packets of STP 1-1 Basic Concepts in STP 1-2 How STP works 1-3 Introduction to RSTP 1-9 Introduction

More information

MSTP Configuration. Page 1 of 24

MSTP Configuration. Page 1 of 24 MSTP Configuration Page 1 of 24 Contents Chapter1 Configuring MSTP... 3 1.1 Brief Introduction to MSTP...3 1.2 BPDU...3 1.2.1 Basic Concepts in MSTP... 4 1.2.2 Roles of Ports... 6 1.3 Algorithm Implementation...9

More information

BLADE 802.1s Spanning Tree and Interoperability with Cisco

BLADE 802.1s Spanning Tree and Interoperability with Cisco BLADE 802.1s Spanning Tree and Interoperability with Cisco Technical Brief Industry-standard 802.1s Multiple Spanning Tree Protocol with Cisco interoperability for HP GbE2/GbE2c Ethernet Blade Switches

More information

Configuring Virtual Port Channels

Configuring Virtual Port Channels Configuring Virtual Port Channels This chapter describes how to configure virtual port channels (vpcs) on Cisco Nexus 5000 Series switches. It contains the following sections: Information About vpcs, page

More information

Index. Numerics. Index 1

Index. Numerics. Index 1 Index Numerics 802.1p priority (QoS) definition 8-6 802.1q VLAN in mesh 7-23 802.1Q VLAN standard 6-6 802.1w as a region 6-54 802.1x, mesh, not supported 7-5 A ABC enabled on edge switch 7-26 in mesh domain

More information

Question No: 1 On the MSTP network as shown in the figure, what is the role of the switch in MSTI 1 according to the configuration?

Question No: 1 On the MSTP network as shown in the figure, what is the role of the switch in MSTI 1 according to the configuration? Volume: 629 Questions Question No: 1 On the MSTP network as shown in the figure, what is the role of the switch in MSTI 1 according to the configuration? A. Root switch B. Slave switch C. Non-root switch

More information

Configuring Virtual Port Channels

Configuring Virtual Port Channels This chapter contains the following sections: Information About vpcs vpc Overview Information About vpcs, on page 1 Guidelines and Limitations for vpcs, on page 11 Verifying the vpc Configuration, on page

More information

Configuring STP and RSTP

Configuring STP and RSTP 7 CHAPTER Configuring STP and RSTP This chapter describes the IEEE 802.1D Spanning Tree Protocol (STP) and the ML-Series implementation of the IEEE 802.1W Rapid Spanning Tree Protocol (RSTP). It also explains

More information

Table of Contents Chapter 1 MSTP Configuration

Table of Contents Chapter 1 MSTP Configuration Table of Contents Table of Contents... 1-1 1.1 MSTP Overview... 1-1 1.1.1 MSTP Protocol Data Unit... 1-1 1.1.2 Basic MSTP Terminologies... 1-2 1.1.3 Implementation of MSTP... 1-6 1.1.4 MSTP Implementation

More information

MSTP Configuration. Configuration

MSTP Configuration. Configuration MSTP Configuration Contents 1. Configuring MSTP...2 1.1 Brief Introduction to MSTP... 2 1.2 BPDU... 2 1.2.1 Basic Concepts in MSTP...2 1.2.2 Roles of Ports...4 1.3 Algorithm Implementation... 7 1.3.1 MSTP

More information

Junos Enterprise Switching

Junos Enterprise Switching Junos Enterprise Switching Chapter 6: Device Security and Firewall Filters 2011 Juniper Networks, Inc. All rights reserved. www.juniper.net Worldwide Education Services Chapter Objectives After successfully

More information

Configuring Virtual Port Channels

Configuring Virtual Port Channels This chapter contains the following sections: Information About vpcs, page 1 Guidelines and Limitations for vpcs, page 10 Verifying the vpc Configuration, page 11 vpc Default Settings, page 16 Configuring

More information

Configuring MSTP CHAPTER

Configuring MSTP CHAPTER CHAPTER 16 Configuring MSTP This chapter describes how to configure the Cisco implementation of the IEEE 802.1s Multiple STP (MSTP) on the Catalyst 2960 switch. Note The multiple spanning-tree (MST) implementation

More information

Configuring Spanning Tree Protocol

Configuring Spanning Tree Protocol Finding Feature Information, page 1 Restrictions for STP, page 1 Information About Spanning Tree Protocol, page 2 How to Configure Spanning-Tree Features, page 14 Monitoring Spanning-Tree Status, page

More information

HP0-Y23. Deploying HP ProCurve Products.

HP0-Y23. Deploying HP ProCurve Products. HP HP0-Y23 Deploying HP ProCurve Products http://killexams.com/exam-detail/hp0-y23 QUESTION: 62 You enter the following command at the CLI of an HP ProCurve 3500yl switch: 3500yl (config)# spanning-tree

More information

CCNA Routing & Switching Lab Workbook - Full-Scale Lab 1

CCNA Routing & Switching Lab Workbook - Full-Scale Lab 1 CCNA Routing & Switching Lab Workbook - Full-Scale Lab 1 Task 1.1 Tasks You must load the initial configuration files for the section, FS Lab-1 Initial, which can be found in CCNA Routing & Switching Topology

More information

802.1w Rapid Spanning Tree Protocol (RSTP) 802.1d Spanning Tree Protocol (STP)

802.1w Rapid Spanning Tree Protocol (RSTP) 802.1d Spanning Tree Protocol (STP) 13 802.1w Rapid Spanning Tree Protocol (RSTP) 802.1d Spanning Tree Protocol (STP) Contents Overview.................................................... 13-2 How Spanning Tree Operates.................................

More information

Configuring Rapid PVST+ Using NX-OS

Configuring Rapid PVST+ Using NX-OS Configuring Rapid PVST+ Using NX-OS This chapter describes how to configure the Rapid per VLAN Spanning Tree (Rapid PVST+) protocol on Cisco NX-OS devices. This chapter includes the following sections:

More information

Understanding and Configuring STP

Understanding and Configuring STP CHAPTER 14 This chapter describes how to configure the Spanning Tree Protocol (STP) on a Catalyst 4500 series switch. It also provides guidelines, procedures, and configuration examples. This chapter includes

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring Avaya C363T RSTP to Interoperate with Extreme Networks MSTP to Support Avaya Communication Manager and Avaya G650 Media Gateway

More information

Chapter 4 Configuring Switching

Chapter 4 Configuring Switching Chapter 4 Configuring Switching Using the Switching Tab The navigation tabs on the top of the home page include a Switching tab that lets you manage your GS108T Gigabit Smart Switch using features under

More information

Chapter 3 Lab 3-1, Spanning Tree Protocol (STP) Default Behavior

Chapter 3 Lab 3-1, Spanning Tree Protocol (STP) Default Behavior Chapter 3 Lab 3-1, Spanning Tree Protocol (STP) Default Behavior Topology Objective Background Observe the default behavior of STP. Four switches have just been installed. The distribution layer switches

More information

Understanding Multiple Spanning Tree Protocol (802.1s)

Understanding Multiple Spanning Tree Protocol (802.1s) Understanding Multiple Spanning Tree Protocol (802.1s) Document ID: 24248 Introduction Where to Use MST PVST+ Case Standard 802.1q Case MST Case MST Region MST Configuration and MST Region Region Boundary

More information

Configuring STP. Understanding Spanning-Tree Features CHAPTER

Configuring STP. Understanding Spanning-Tree Features CHAPTER CHAPTER 11 This chapter describes how to configure the Spanning Tree Protocol (STP) on your switch. For information about the Rapid Spanning Tree Protocol (RSTP) and the Multiple Spanning Tree Protocol

More information

Configuring STP Extensions

Configuring STP Extensions Configuring STP Extensions This chapter describes the configuration of extensions to the Spanning Tree Protocol (STP) on Cisco Nexus 5000 Series switches. It includes the following sections: About STP

More information

Cisco Understanding Multiple Spanning Tree Protocol (802.1

Cisco Understanding Multiple Spanning Tree Protocol (802.1 Cisco Understanding Multiple Spanning Tree Protocol (802.1 Table of Contents Understanding Multiple Spanning Tree Protocol (802.1s)...1 Introduction...1 Where to use MST...2 PVST+ Case...2 Standard 802.1q

More information

Network Configuration Example

Network Configuration Example Network Configuration Example Configuring a Two-Tiered Virtualized Data Center for Large Enterprise Networks Release NCE 33 Modified: 2016-08-01 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California

More information

Communication Redundancy User s Manual

Communication Redundancy User s Manual User s Manual Fifth Edition, June 2015 www.moxa.com/product 2015 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

LARGE SCALE IP ROUTING

LARGE SCALE IP ROUTING Building ISP Networks Xantaro Page 1 / 18 TABLE OF CONTENTS 1. LAB ACCESS 4 1.1 Accessing the Jumphost... 4 1.2 Access to your routers... 4 1.3 Local Network Topology... 5 1.4 Global Network Topology...

More information

Configuring Spanning Tree Protocol

Configuring Spanning Tree Protocol Restrictions for STP Restrictions for STP, on page 1 Information About Spanning Tree Protocol, on page 1 How to Configure Spanning-Tree Features, on page 13 Monitoring Spanning-Tree Status, on page 25

More information

CCNA Semester 3 labs. Part 1 of 1 Labs for chapters 1 8

CCNA Semester 3 labs. Part 1 of 1 Labs for chapters 1 8 CCNA Semester 3 labs Part 1 of 1 Labs for chapters 1 8 2.1.2.12 Lab - Building a Switched Network with Redundant Links 2.3.2.3 Lab - Configuring Rapid PVST+, PortFast and BPDU Guard 2.4.3.4 Lab - Configuring

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 9 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094). It includes information about VLAN membership modes, VLAN configuration

More information

GuideTorrent. The best excellent exam certification guide torrent and dumps torrent provider

GuideTorrent.   The best excellent exam certification guide torrent and dumps torrent provider GuideTorrent http://www.guidetorrent.com The best excellent exam certification guide torrent and dumps torrent provider Exam : JN0-343 Title : Juniper Networks Certified Internet Specialist (JNCIS-ENT)

More information

Configuring Rapid PVST+

Configuring Rapid PVST+ This chapter contains the following sections: Information About Rapid PVST+, page 1, page 16 Verifying the Rapid PVST+ Configuration, page 24 Information About Rapid PVST+ The Rapid PVST+ protocol is the

More information

Spanning Tree Protocol

Spanning Tree Protocol For conceptual information about, see the Using the with the EtherSwitch Network Module section of the EtherSwitch Network feature module. Finding Feature Information, page 1 Information About, page 1

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 351-001 Title : CCIE Cisco Certified InterNetworking Expert Vendors : Cisco

More information

Implementing Multiple Spanning Tree Protocol

Implementing Multiple Spanning Tree Protocol Implementing Multiple Spanning Tree Protocol This module provides conceptual and configuration information for Multiple Spanning Tree Protocol on Cisco ASR 9000 Series Routers. Multiple Spanning Tree Protocol

More information

Configuring Rapid PVST+

Configuring Rapid PVST+ This chapter describes how to configure the Rapid per VLAN Spanning Tree (Rapid PVST+) protocol on Cisco NX-OS devices using Cisco Data Center Manager (DCNM) for LAN. For more information about the Cisco

More information

Lab 5.5.2: Challenge Spanning Tree Protocol

Lab 5.5.2: Challenge Spanning Tree Protocol Topology Diagram Addressing Table Device (Hostname) Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 172.17.99.11 255.255.255.0 N/A S2 VLAN 99 172.17.99.12 255.255.255.0 N/A S3 VLAN 99 172.17.99.13

More information

MSTP Technology White Paper

MSTP Technology White Paper MSTP Technology White Paper Key words: STP, RSTP, MSTP, rapid transition, multiple instances, redundancy loop, redundancy link, load sharing Abstract: This article introduces basic MSTP terms, MSTP algorithm

More information

Configuring STP Extensions

Configuring STP Extensions This chapter contains the following sections: Overview, page 1 Overview Cisco has added extensions to Spanning Tree Protocol (STP) that make convergence more efficient. In some cases, even though similar

More information

Table of Contents 1 MSTP Configuration Commands 1-1

Table of Contents 1 MSTP Configuration Commands 1-1 Table of Contents 1 MSTP Configuration Commands 1-1 MSTP Configuration Commands 1-1 active region-configuration 1-1 bpdu-drop any 1-1 check region-configuration 1-2 display stp 1-3 display stp abnormalport

More information

SWP-0208G, 8+2SFP. 8-Port Gigabit Web Smart Switch. User s Manual

SWP-0208G, 8+2SFP. 8-Port Gigabit Web Smart Switch. User s Manual SWP-0208G 1 SWP-0208G, 8+2SFP 8-Port Gigabit Web Smart Switch User s Manual Version: 3.4 April 1, 2008 2 TABLE OF CONTENT 1.0 INTRODUCTION...4 1.1 MAIN FEATURES...4 1.2 START TO MANAGE THIS SWITCH...6

More information

2.2 Cisco IOS Commands for the Catalyst 4500 Series Switches snmp ifindex clear. This command has no arguments or keywords.

2.2 Cisco IOS Commands for the Catalyst 4500 Series Switches snmp ifindex clear. This command has no arguments or keywords. Chapter 2 2.2 snmp ifindex clear snmp ifindex clear To clear any previously configured snmp ifindex commands that were entered for a specific interface, use the snmp ifindex clear command. snmp ifindex

More information

Campus Networking Workshop. Layer 2 engineering Spanning Tree and VLANs

Campus Networking Workshop. Layer 2 engineering Spanning Tree and VLANs Campus Networking Workshop Layer 2 engineering Spanning Tree and VLANs Switching Loop When there is more than one path between two switches What are the potential problems? Switching Loop If there is more

More information

Buy full file at

Buy full file at 14 Chapter 2 LAN Redundancy Chapter 2 LAN Redundancy 2.0.1.2 Class Activity Stormy Traffic ( ) Objective Explain the purpose of the Spanning Tree Protocol (STP) in a switched LAN environment with redundant

More information

Configuring Optional Spanning-Tree Features

Configuring Optional Spanning-Tree Features CHAPTER 20 This chapter describes how to configure optional spanning-tree features on the Catalyst 3750-E or 3560-E switch. You can configure all of these features when your switch is running the per-vlan

More information

Configuring Optional STP Features

Configuring Optional STP Features CHAPTER 29 This chapter describes how to configure optional STP features. For complete syntax and usage information for the commands used in this chapter, see the Cisco IOS Master List, at this URL: http://www.cisco.com/en/us/docs/ios/mcl/allreleasemcl/all_book.html

More information

Spanning-Tree Protocol

Spanning-Tree Protocol Spanning-Tree Protocol Malin Bornhager Halmstad University Session Number 2002, Svenska-CNAP Halmstad University 1 Objectives Redundancy in a converged network Spanning-Tree Protocol (STP) STP Operation

More information

Implement Spanning Tree Protocols. LAN Switching and Wireless Chapter 5

Implement Spanning Tree Protocols. LAN Switching and Wireless Chapter 5 Implement Spanning Tree Protocols LAN Switching and Wireless Chapter 5 ITE I Chapter 6 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Objectives Explain the role of redundancy in a converged

More information

Example: Setting Up Basic Bridging and a VLAN for an EX Series Switch

Example: Setting Up Basic Bridging and a VLAN for an EX Series Switch Example: Setting Up Basic Bridging and a VLAN for an EX Series Switch Requirements EX Series switches use bridging and virtual LANs (VLANs) to connect network devices in a LAN desktop computers, IP telephones,

More information

Table of Contents. (Rapid) Spanning Tree Protocol. A simple bridge loop. An even worse bridge loop. Bridge loops Two bridges Three bridges (R)STP

Table of Contents. (Rapid) Spanning Tree Protocol. A simple bridge loop. An even worse bridge loop. Bridge loops Two bridges Three bridges (R)STP Table of Contents (Rapid) Spanning Tree Protocol (R)STP Karst Koymans Informatics Institute University of Amsterdam (version 18.4, 2018/11/16 13:23:04) Friday, November 16, 2018 Bridge loops Two bridges

More information

Managing Network Spanning Trees

Managing Network Spanning Trees CHAPTER 8 This chapter describes, the IEEE 802.1d Spanning Tree Protocol (STP), and how to use and configure Cisco s proprietary spanning-tree protocols, Per VLAN Spanning Tree (PVST), Multiple Spanning

More information

CCNA 3 (v v6.0) Chapter 3 Exam Answers % Full

CCNA 3 (v v6.0) Chapter 3 Exam Answers % Full CCNA 3 (v5.0.3 + v6.0) Chapter 3 Exam Answers 2017 100% Full ccnav6.com /ccna-3-v5-0-3-v6-0-chapter-3-exam-answers-2017-100-full.html CCNA Exam Answers 2017 CCNA 3 (v5.0.3 + v6.0) Chapter 3 Exam Answers

More information

References: tates-roles.html

References:  tates-roles.html Volume: 65 Questions Question No: 1 What are three RSTP port states? (Choose three.) A. learning B. forwarding C. listening D. blocking E. discarding Answer: A,B,E Explanation: Port States in STP and RSTP

More information

Juniper.Selftestengine.jn0-694.v by.KIM-HL.52q

Juniper.Selftestengine.jn0-694.v by.KIM-HL.52q Juniper.Selftestengine.jn0-694.v2013-10-24.by.KIM-HL.52q Number: jn0-694 Passing Score: 800 Time Limit: 120 min File Version: 18.5 http://www.gratisexam.com/ Exam Code: JN0-694 Exam Name: Enterprise Routing

More information

Lab 1. JUNOS CLI & Initial Configuration. Overview. Introduction to JUNOS Software & Routing Essentials

Lab 1. JUNOS CLI & Initial Configuration. Overview. Introduction to JUNOS Software & Routing Essentials Lab 1 JUNOS CLI & Initial Configuration Overview This lab introduces you to the JUNOS software command-line interface (CLI). In this lab, you will familiarize yourself with various CLI operational-mode

More information

Table of Contents. (Rapid) Spanning Tree Protocol. A simple bridge loop. An even worse bridge loop. Bridge loops Two bridges Three bridges (R)STP

Table of Contents. (Rapid) Spanning Tree Protocol. A simple bridge loop. An even worse bridge loop. Bridge loops Two bridges Three bridges (R)STP Table of Contents (Rapid) Spanning Tree Protocol (R)STP Karst Koymans Informatics Institute University of Amsterdam (version 34, 2014/02/17 14:41:48) Monday, February 17, 2014 Bridge loops Two bridges

More information

Chapter 4 Lab 4-2 Multiple Spanning Tree INSTRUCTOR VERSION

Chapter 4 Lab 4-2 Multiple Spanning Tree INSTRUCTOR VERSION CCNPv7.1 SWITCH Chapter 4 Lab 4-2 Multiple Spanning Tree INSTRUCTOR VERSION Topology Objectives Implement Multiple Spanning Tree Leverage VTP version 3 with MST Background Cisco s Per VLAN Spanning Tree

More information

Creating private Megaport connections using Juniper MX and EX series devices

Creating private Megaport connections using Juniper MX and EX series devices devices 1 Creating private Megaport connections using Juniper MX and EX series devices In this article, we will document, how to create a Point-to-Point connection between two end-points on Megaport Backbone.

More information

CCNA Cisco Certified Network Associate CCNA (v3.0)

CCNA Cisco Certified Network Associate CCNA (v3.0) 200-125 - CCNA Cisco Certified Network Associate CCNA (v3.0) 1.What is one benefit of PVST+? A. PVST+ supports Layer 3 load balancing without loops. B. PVST+ reduces the CPU cycles for all the switches

More information

Lab Configuring and Testing the Rapid Spanning Tree Prototype

Lab Configuring and Testing the Rapid Spanning Tree Prototype Lab 7.3.3 Configuring and Testing the Rapid Spanning Tree Prototype Device Designation Device Name IP Address Subnet Mask Default Gateway Fa0/0.1 10.0.0.1 255.255.255.0 R1 BR4 Fa0/0.10 10.10.10.254 255.255.255.0

More information

CCNA Semester 3 labs. Labs for chapters 2 10

CCNA Semester 3 labs. Labs for chapters 2 10 CCNA Semester 3 labs Labs for chapters 2 10 2.1.4.5 Lab - Configure Extended VLANs, VTP, and DTP 2.2.2.5 Lab - Troubleshooting Inter-VLAN Routing 3.1.2.12 Lab - Building a Switched Network with Redundant

More information

Configuring Port-Based and Client-Based Access Control (802.1X)

Configuring Port-Based and Client-Based Access Control (802.1X) 9 Configuring Port-Based and Client-Based Access Control (802.1X) Contents Overview..................................................... 9-3 Why Use Port-Based or Client-Based Access Control?............

More information

Abstract. GAK; Reviewed: WCH 8/14/2003. Solution & Interoperability Test Lab Application Notes 2003 Avaya Inc. All Rights Reserved.

Abstract. GAK; Reviewed: WCH 8/14/2003. Solution & Interoperability Test Lab Application Notes 2003 Avaya Inc. All Rights Reserved. Rapid Reconfiguration Spanning Tree Protocol (RSTP) 802.1w Sample Configurations for Avaya P882/P580 Gigabit Ethernet Switches with Third Party Vendors including Cisco, HP and Foundry - Issue 1.0 Abstract

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 10 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the switch. It includes information about VLAN membership

More information

User Handbook. Switch Series. Default Login Details. Version 1.0 Edition

User Handbook. Switch Series. Default Login Details. Version 1.0 Edition User Handbook Switch Series Zyxel GS1920 / GS2210 / XGS2210 / GS3700 / XGS3700 / XGS4600 / XS1920 / XS3700 Default Login Details LAN IP Address https://192.168.1.1 User Name admin Password 1234 Version

More information

Laboration 2 Troubleshooting Switching and First-Hop Redundancy

Laboration 2 Troubleshooting Switching and First-Hop Redundancy Laboration 2 Troubleshooting Switching and First-Hop Redundancy Topology All contents are Copyright 1992 2011 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1

More information

Configuring Spanning Tree Protocol

Configuring Spanning Tree Protocol CHAPTER 7 This chapter descibes how to configure Spanning Tree Protocol (STP) on the Cisco wireless mobile interface card (WMIC). Note For complete syntax and usage information for the commands used in

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 11 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the Cisco ME 3400 Ethernet Access switch. It includes information

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST \ http://www.pass4test.com We offer free update service for one year Exam : JN0-643 Title : Enterprise Routing and Switching, Professional (JNCIP- ENT) Vendor : Juniper Version : DEMO Get Latest

More information

Maintaining Specific VLAN Identification. Comparing ISL and 802.1Q. VLAN Trunking

Maintaining Specific VLAN Identification. Comparing ISL and 802.1Q. VLAN Trunking Maintaining Specific VLAN Identification Specifically developed for multi-vlan interswitch communications Places a unique identifier in each frame Functions at Layer 2 2003, Cisco Systems, Inc. All rights

More information

Cisco Implementing Cisco IP Switched Networks (SWITCH v2.0)

Cisco Implementing Cisco IP Switched Networks (SWITCH v2.0) Cisco 300-115 Implementing Cisco IP Switched Networks (SWITCH v2.0) http://killexams.com/pass4sure/exam-detail/300-115 Question: 323 An administrator recently configured all ports for rapid transition

More information

Configuring STP Extensions Using Cisco NX-OS

Configuring STP Extensions Using Cisco NX-OS This chapter describes how to configure Spanning Tree Protocol (STP) extensions on Cisco NX-OS devices. This chapter includes the following sections: Finding Feature Information, page 1 Information About

More information

ICND2. Rapid Spanning-Tree Protocol. These exercises utilize build on the previous ones used in the last class sessions.

ICND2. Rapid Spanning-Tree Protocol. These exercises utilize build on the previous ones used in the last class sessions. ICND2 Rapid Spanning-Tree Protocol TOPOLOGY 5x2950 (Layer 2 Switches) These exercises utilize build on the previous ones used in the last class sessions. Lab Exercise 1: Rapid Spanning-Tree Configuration

More information

Layer 2 Engineering Spanning Tree

Layer 2 Engineering Spanning Tree Layer 2 Engineering Spanning Tree Campus Network Design & Operations Workshop These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license (http://creativecommons.org/licenses/by-nc/4.0/)

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 12 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the switch. It includes information about VLAN membership

More information

JN0-343 Q&As. Juniper Networks Certified Internet Specialist (JNCIS-ENT) Pass Juniper JN0-343 Exam with 100% Guarantee

JN0-343 Q&As. Juniper Networks Certified Internet Specialist (JNCIS-ENT) Pass Juniper JN0-343 Exam with 100% Guarantee JN0-343 Q&As Juniper Networks Certified Internet Specialist (JNCIS-ENT) Pass Juniper JN0-343 Exam with 100% Guarantee Free Download Real Questions & Answers PDF and VCE file from: 100% Passing Guarantee

More information

BraindumpsIT. BraindumpsIT - IT Certification Company provides Braindumps pdf!

BraindumpsIT.  BraindumpsIT - IT Certification Company provides Braindumps pdf! BraindumpsIT http://www.braindumpsit.com BraindumpsIT - IT Certification Company provides Braindumps pdf! Exam : 300-115 Title : Implementing Cisco IP Switched Networks Vendor : Cisco Version : DEMO Get

More information

Lab 5-1 Hot Standby Router Protocol

Lab 5-1 Hot Standby Router Protocol Lab 5-1 Hot Standby Router Protocol Topology Diagram Objective Configure inter-vlan routing with HSRP to provide redundant, fault tolerant routing to the internal network. Scenario Step 1 HSRP provides

More information

Table of Contents. (Rapid) Spanning Tree Protocol. An even worse bridge loop. A simple bridge loop. Bridge loops Two bridges Three bridges (R)STP

Table of Contents. (Rapid) Spanning Tree Protocol. An even worse bridge loop. A simple bridge loop. Bridge loops Two bridges Three bridges (R)STP Table of Contents (Rapid) Spanning Tree Protocol (R)STP Karst Koymans Informatics Institute University of Amsterdam (version 44, 2015/02/18 12:55:30) Thursday, February 19, 2015 Bridge loops Two bridges

More information

Chapter 5: STP. * What is STP? How does STP work?

Chapter 5: STP. * What is STP? How does STP work? Chapter 5: STP * What is STP? How does STP work? * What would be the worst case scenario that could happen to a redundant path switched network with the STP is disabled? When multiple paths exist between

More information

Improving network convergence with Multiple Spanning Tree Protocol

Improving network convergence with Multiple Spanning Tree Protocol CEAI, Vol.15, No.1 pp. 79-87, 2013 Printed in Romania Improving network convergence with Multiple Spanning Tree Protocol Roxana Stănică SC Civitas Systems S.R.L., Craiova, Romania (e-mail: roxana_batm@yahoo.com)

More information

Management Software AT-S101. User s Guide. For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch. Version Rev.

Management Software AT-S101. User s Guide. For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch. Version Rev. Management Software AT-S101 User s Guide For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch Version 1.0.0 613-000985 Rev. A Copyright 2008 Allied Telesis, Inc. All rights reserved. No part

More information

Accurate study guides, High passing rate! Testhorse provides update free of charge in one year!

Accurate study guides, High passing rate! Testhorse provides update free of charge in one year! Accurate study guides, High passing rate! Testhorse provides update free of charge in one year! http://www.testhorse.com Exam : JN0-694 Title : Enterprise Routing and Switching Support, Professional (JNCSP-ENT)

More information

HUAWEI AR Series SEP Technical White Paper HUAWEI TECHNOLOGIES CO., LTD. Issue 1.0. Date

HUAWEI AR Series SEP Technical White Paper HUAWEI TECHNOLOGIES CO., LTD. Issue 1.0. Date HUAWEI AR Series SEP Technical White Paper Issue 1.0 Date 2015-01-19 HUAWEI TECHNOLOGIES CO., LTD. 2015. All rights reserved. No part of this document may be reproduced or transmitted in any form or by

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 14 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094) on the Catalyst 3750 switch. It includes information about VLAN

More information

Spanning Tree Protocol(STP)

Spanning Tree Protocol(STP) Introduction Spanning Tree Protocol (STP) is a Layer 2 protocol that runs on bridges and switches. The specification for STP is IEEE 802.1D. The main purpose of STP is to ensure that you do not create

More information

Configuring VLANs. Understanding VLANs CHAPTER

Configuring VLANs. Understanding VLANs CHAPTER CHAPTER 14 This chapter describes how to configure normal-range VLANs (VLAN IDs 1 to 1005) and extended-range VLANs (VLAN IDs 1006 to 4094). It includes information about VLAN modes and the VLAN Membership

More information

RealCiscoLAB.com. Configuring EtherChannel. Topology. Objective. Background. Required Resources. CCNPv6 Switch. Configure EtherChannel.

RealCiscoLAB.com. Configuring EtherChannel. Topology. Objective. Background. Required Resources. CCNPv6 Switch. Configure EtherChannel. RealCiscoLAB.com CCNPv6 Switch Configuring EtherChannel Topology Objective Background Configure EtherChannel. Four switches have just been installed. The distribution layer switches are Catalyst 3560 switches,

More information

Lab Network Baseline Discovery

Lab Network Baseline Discovery Lab 1.2.6 Network Baseline Discovery Objective In this lab, the student will establish the baseline for the configuration and operation of the network. The student will complete the following tasks: Job

More information

RSTP Configuration. Page 1 of 26

RSTP Configuration. Page 1 of 26 RSTP Configuration Page 1 of 26 Content Chapter 1 STP Configuration... 1 1.1 STP Overview... 1 1.1.1 Function of STP...1 1.1.2 Protocol Packets of STP...1 1.1.3 Basic Concepts in STP... 1 1.1.4 Spanning-Tree

More information