Home > CCNA – STP Questions 2

CCNA – STP Questions 2

January 30th, 2011 Go to comments

Here you will find answers to STP Questions – Part 2

Note: If you are not sure about STP, please read my STP tutorial and RSTP tutorial.

Question 1

Which term describes a spanning-tree network that has all switch ports in either the blocking or forwarding state?

A. redundant
B. spanned
C. provisioned
D. converged


Answer: D

Explanation

Spanning Tree Protocol convergence (Layer 2 convergence) happens when bridges and switches have transitioned to either the forwarding or blocking state. When layer 2 is converged, root bridge is elected and all port roles (Root, Designated and Non-Designated) in all switches are selected.

Question 2

Which two values are used by Spanning Tree Protocol to elect a root bridge? (Choose two)

A. amount of RAM
B. bridge priority
C. IOS version
D. IP address
E. MAC address
F. speed of the links


Answer: B E

Explanation

Bridge ID = Bridge Priority + MAC Address

For example:

+ The bridge priority of SwA is 32768 and its MAC address is 0000.0000.9999 -> the bridge ID of SwA is 32768:0000.0000.9999
+ The bridge priority of SwB is 32768 and its MAC address is 0000.0000.1111 -> the bridge ID of SwB is 32768:0000.0000.1111

Question 3

Which command enhances the 802.1D convergence time on ports that are connected to hosts?

A. spanning-tree backbonefast
B. spanning-tree uplinkfast
C. spanning-tree portfast
D. spanning-tree cost512


Answer: C

Explanation

By using PortFast feature, the port won’t spend 50 seconds to move from blocking (20sec), listening (15sec), learning (15sec) and finally forwarding but will jump directly to the forwarding state. This feature should be used on ports connected to hosts only because hosts surely don’t send BPDU. An example of configuring PortFast on an interface is shown below:

Sw(config)#interface FastEthernet0/1
Sw(config-if)#spanning-tree portfast

Question 4

Which two of these are used by bridges and switches to prevent loops in a layer 2 network? (Choose two)

A. 802.1D
B. VTP
C. 802.1Q
D. STP
E. SAP


Answer: A D

Explanation

Both 802.1D and STP are referred to the STP standard which is used by bridges and switches to prevent loops in a layer 2 network.

Question 5

Refer to the exhibit. The output that is shown is generated at a switch. Which three of these statements are true? (Choose three)

show_spanning-tree_vlan_30.jpg

A. All ports will be in a state of discarding, learning or forwarding.
B. Thirty VLANs have been configured on this switch.
C. The bridge priority is lower than the default value for spanning tree.
D. All interfaces that are shown are on shared media.
E. All designated ports are in a forwarding state.
F. The switch must be the root bridge for all VLANs on this switch.


Answer: A C E

Explanation

From the output, we see that all ports are in Designated role (forwarding state) -> A and E are correct.

The command “show spanning-tree vlan 30″ only shows us information about VLAN 30. We don’t know how many VLAN exists in this switch -> B is not correct.

The bridge priority of this switch is 24606 which is lower than the default value bridge priority 32768 -> C is correct.

All three interfaces on this switch have the connection type “p2p”, which means Point-to-point environment – not a shared media -> D is not correct.

The only thing we can specify is this switch is the root bridge for VLAN 3o but we can not guarantee it is also the root bridge for other VLANs -> F is not correct.

Question 6

What is one benefit of PVST+?

A. PVST+ reduces the CPU cycles for all the switches in the network.
B. PVST+ automatically selects the root bridge location, to provide optimization.
C. PVST+ allows the root switch location to be optimized per vlan.
D. PVST+ supports Layer 3 load balancing without loops.


Answer: C

Explanation

Per VLAN Spanning Tree (PVST) maintains a spanning tree instance for each VLAN configured in the network. It means a switch can be the root bridge of a VLAN while another switch can be the root bridge of other VLANs in a common topology. For example, Switch 1 can be the root bridge for Voice data while Switch 2 can be the root bridge for Video data. If designed correctly, it can optimize the network traffic.

Question 7

Which IEEE standard protocol is initiated as a result of successful DTP completion in a switch over FastEthernet?

A. 802.3ad
B. 802.1w
C. 802.1Q
D. 802.1d


Answer: C

Explanation

Dynamic Trunking Protocol (DTP) is a Cisco proprietary protocol for negotiating trunking on a link between two devices and for negotiating the type of trunking encapsulation (802.1Q) to be used.

Question 8

What value is primarily used to determine which port becomes the root port on each non-root switch in a spanning-tree topology?

A. lowest port MAC address
B. port priority number and MAC address.
C. VTP revision number
D. highest port priority number.
E. path cost


Answer: E

Explanation

The path cost to the root bridge is the most important value to determine which port will become the root port on each non-root switch. In particular, the port with lowest cost to the root bridge will become root port (on non-root switch).

Question 9

When PVST+ in work on VLAN1 of the switch, what will affect on selection of one of switches in the VLAN as root-bridge?

A. Lowest IP address
B. Highest MAC address
C. Lowest MAC address
D. Highest IP address


Answer: C

Explanation

The two values used to select the root bridge are Bridge Priority & MAC address (the lower is better) -> C is correct.

Question 10

Refer to the exhibit. A network administrator wants Switch3 to be the root bridge. What could be done to ensure Switch3 will be the root?

Switch_root_bridge.jpg

A. Configure the IP address on Switch3 to be higher than the IP addresses of Switch1 and Switch2.
B. Configure the priority value on Switch3 to be higher than the priority values of Switch 1 and Switch2.
C. Configure the BID on Switch3 to be lower than the BIDs of Switch1 and Switch2.
D. Configure the MAC address on Switch3 to be higher than the Switch1 and Switch2 MAC addresses.
E. Configure a loopback interface on Switch3 with an IP address lower than any IP address on Switch1 and Switch2.


Answer: C

Explanation

To become root bridge, a switch must have lower Bridge ID (BID) than that of the others. The Bridge ID = Bridge Priority + MAC address; but MAC address is a fixed value so we can only change the BID by changing the Bridge Priority of that switch.

Question 11

Which port state is introduced by Rapid-PVST?

A. learning
B. listening
C. discarding
D. forwarding


Answer: C

Explanation

PVST+ is based on IEEE802.1D Spanning Tree Protocol (STP). But PVST+ has only 3 port states (discarding, learning and forwarding) while STP has 5 port states (blocking, listening, learning, forwarding and disabled). So discarding is a new port state in PVST+.

Question 12

At which layer of the OSI model is RSTP used to prevent loops?

A. data link
B. network
C. physical
D. transport


Answer: A

Explanation

RSTP and STP operate on switches and are based on the exchange of Bridge Protocol Data Units (BPDUs) between switches. One of the most important fields in BPDUs is the Bridge Priority in which the MAC address is used to elect the Root Bridge -> RSTP operates at Layer 2 – Data Link layer -> A is correct.

Question 13

Refer to the exhibit. At the end of an RSTP election process, which access layer switch port will assume the discarding role?

RSTP_election_port_roles.jpg

A. Switch3, port fa0/1
B. Switch3, port fa0/12
C. Switch4, port fa0/11
D. Switch4, port fa0/2
E. Switch3, port Gi0/1

 

Answer: C

Explanation

In this question, we only care about the Access Layer switches (Switch3 & 4). Switch 3 has a lower bridge ID than Switch 4 (because the MAC of Switch3 is smaller than that of Switch4) so both ports of Switch3 will be in forwarding state. The alternative port will surely belong to Switch4.

Switch4 will need to block one of its ports to avoid a bridging loop between the two switches. But how does Switch4 select its blocked port? Well, the answer is based on the BPDUs it receives from Switch3. A BPDU is superior than another if it has:

1. A lower Root Bridge ID
2. A lower path cost to the Root
3. A lower Sending Bridge ID
4. A lower Sending Port ID

These four parameters are examined in order. In this specific case, all the BPDUs sent by Switch3 have the same Root Bridge ID, the same path cost to the Root and the same Sending Bridge ID. The only parameter left to select the best one is the Sending Port ID (Port ID = port priority + port index). In this case the port priorities are equal because they use the default value, so Switch4 will compare port index values, which are unique to each port on the switch, and because Fa0/12 is inferior to Fa0/1, Switch4 will select the port connected with Fa0/1 (of Switch3) as its root port and block the other port -> Port fa0/11 of Switch4 will be blocked (discarding role).

If you are still not sure about this question, please read my RSTP tutorial.

Comments (146) Comments
Comment pages
1 2 3 922
  1. Koffy
    November 7th, 2011

    @9tut

    Q5.

    Switch output (vlan0030) has all ports role “Designated” and State is “Forwarding” meaning the switch is the root bridge for Vlan0030. Am assuming network is converged.

    Option A says Discarding, Learning or Forwarding.
    Since Learning is a transitional period, shouldn’t Learning be eliminate from Option A. Cos network is converged…..Blocking or Forwarding.

    Please, correct me if am off. Thanks.

  2. JR
    November 10th, 2011

    I’ve seen this question debated and some feel the answer should be C, E, F for similar reasons that Koffy stated. C and E aren’t debated, but I can’t make-up my mind whether to choose A or F.

  3. 9tut
    November 10th, 2011

    @Koffy, @JR: Maybe when saying “All ports will be in a state of discarding, learning or forwarding” they want to mention that we will see these states in the future. Because we are running RSTP so this is also correct.

  4. ankur
    November 13th, 2011

    Hi , i have to prepare for ccna can anybody send latest dumps to my id: ankurchick@rediffmail.com

  5. muhamed
    November 13th, 2011

    iam gonna now to enter the exam

    wish me good luck

  6. PK
    November 19th, 2011

    hi all, am taking my test on Tuesday the 22 of this month, can anyone send me the latest dumps, THIS WILL BE MY SECOND TRY, so please help. biz-1@embarqmail.com

    Thanks a lot.

  7. abed
    November 26th, 2011

    which two data link layers are supported by cisco ios software for IPv6 ? (choose two)

    PPP
    FDDI
    Frame Relay PVC
    NBMA
    Frame Relay SVC

    any help :| ?

  8. jawad
    December 2nd, 2011

    @ xalla

    the correct answers is:

    PPP & Frame Relay PVC

  9. xallax
    December 3rd, 2011

    @jawad
    my bad :)

  10. bakki
    December 5th, 2011

    what is the difference between pvst and pvst+??
    can u someone make me clear the port states of both?

  11. xallax
    December 5th, 2011

    @bakki
    they’re both proprietary to cisco.
    pvst used the ISL encapsulation (ISL was also cisco proprietary)
    pvst+ uses the standard IEEE encapsulation (802.1q)

    you can read more here:
    http://cciethebeginning.wordpress.com/2008/10/15/differences-between-pvst-and-pvst/

  12. bakki
    December 5th, 2011

    @xallax
    Thanks for ur explanation

  13. Diego
    December 9th, 2011

    Question 2

    In the Explanation lacks (what is the root bridge?)

    Answer is

    The bridge ID of SwB is 32768:0000.0000.1111, because it has a lower BID than SwA

  14. abed
    December 10th, 2011

    @xallas

    thanks man :)

  15. Fawzi
    December 26th, 2011

    Hi , i have to prepare for ccna can anybody send latest dumps to my id: fawzitatou@gmx.de

  16. Michael
    January 4th, 2012

    Hi

    Correct answer to this question is FDDI & “Frame Relay PVC”. Look it up yourself. PPP over Sonet is supported BUT not PPPv4 so that is wrong.
    References:
    http://ipv6int.net/systems/cisco_ios_router-ipv6.html
    http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-addrg_bsc_con.html#wp1284021

    which two data link layers are supported by cisco ios software for IPv6 ? (choose two)

    A. PPP
    B. FDDI
    C. Frame Relay PVC
    D. NBMA
    E. Frame Relay SVC

  17. serial
    January 18th, 2012

    yes, should be FDDI and Frame Relay PVC

    “The following data links are supported for IPv6: ATM permanent virtual circuit (PVC) and ATM LANE, Ethernet, Fast Ethernet, Gigabit Ethernet, FDDI, Frame Relay PVC, Cisco High-Level Data Link Control (HDLC), PPP over Packet over SONET (PoS), ISDN, serial interfaces, and dynamic packet transport (DPT).” -link taken from michael’s post

  18. j123
    January 26th, 2012

    @Michael, serial:
    I am still unclear, what should be chosen as the right option ?
    Fram relay PVC & PPP or Frame relay pvc & FDDI.
    Please confirm, as in the comments given earlier, PPP is being reffered(not FDDI).

  19. Rico
    February 2nd, 2012

    Hi 9tut… Hi Guys! Can you please help me… I will take exam this Feb. Please send me latest dump so that I will have an idea for the exam.. rico.blake@ymail.com

    Thanks Guys!

  20. uday
    February 3rd, 2012

    @9tut
    Which command enhances the 802.1D convergence time on ports that are connected to hosts?

    A. spanning-tree backbonefast
    B. spanning-tree uplinkfast
    C. spanning-tree portfast
    D. spanning-tree cost512
    don’t u think the question is unclear using the word enhances. can the word decreases be used rather than enhances. please correct me if iam wrong……………

  21. Koffy
    February 3rd, 2012

    @uday

    Option C. Spanning-tree portfast.

    The reason for the word enhances is because it emphasizes on the convergence time, which is a big deal in STP. Any configuration or protocol that enhances the convergence time is greatly welcome. The word decreases does not really describe the process well enough.

    To the best of the of my knowledge. I hope this help.

  22. uday
    February 4th, 2012

    @koffy
    Thanks……………i’m clear.

  23. Aerodesliza
    February 6th, 2012

    Hi Xalla,

    So which one is the right answer?

    Regard
    ———————

    xallax
    November 27th, 2011

    @abed
    Frame Relay PVC and FDDI
    http://ipv6int.net/systems/cisco_ios_router-ipv6.html
    http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-frame_relay.html

  24. xallax
    February 6th, 2012

    @aero
    PPP & Frame Relay PVC

  25. TheCryptKeeper
    February 10th, 2012

    HUge Question. Q2 here seems to contradict Q7 in STP Questions1. My question here is what elects the root bridge. IMO its Mac address and priority. Q 7 of STP Questions 1 uses the cost of the line to chose. Someone please shead some light on this. I’m completely confused.
    Thanks for your help

  26. The Crypt Keeper
    February 10th, 2012

    I think i’ve managed to answere my own question. Correct me if i’m wrong but i think i was confusing “ROOT BRIDGE” selection with “ROOT PORT” selection. Mac address and priority to choose “ROOT BRIDGE” ; “ROOT PORT” determined by COST based on link speed and by extension of this determining designated and blocking states.

  27. maja
    February 11th, 2012

    @9tut
    regarding Q5
    From the output we see that rstp is used not per vlan rstp
    That’s why I think that switch must be root for all vlans
    Again answer A can be correct since rstp port states are discarding, learning and forwarding
    please correct me if I’m wrong
    Thans

  28. The Crypt Keeper
    February 11th, 2012

    I agree with Maja, I’ve just completed this in packet tracer. S1(config)#spanning-tree mode rapid-pvst” does not seem to take away the originating Root Switch. Having done extensive show Spanning-tree, the only time a get a full arra of designated ports IS ON THE ORIGINAL root switch; so even when it comes to multiple VLANS in a pvst environment as stated in the question my lab seems to confirm there can only be one instance of the “true root bridge” As im still learning also, it would be great to hear an educated opinion of this.

  29. Me
    February 13th, 2012

    Question #9 wording is very confusing. What is the question asking?

  30. DimS
    February 13th, 2012

    @Me: “What value is used for the selection of root-bridge?”

  31. lara
    February 13th, 2012

    question 5

    i think C.E.F

  32. skammy
    February 20th, 2012

    Question 5

    Can we have ports on root bridge in a discarding state ?

  33. Juan
    February 21st, 2012

    question 5 it is ok as even if we have rapid-pvst running it shows “Spanning tree enabled protocol rstp”. The unique port states are discarting, learning and forwarding so A is correct. AS we are using reapid-pvst we can set different BID per vlan to make load balancing, so we don´t know which is the root bridge for other VLANS,
    Thats my understanding… let me know if I´m wrong

  34. canand
    February 25th, 2012

    Q6 & was there in today’s exam.

  35. skammy
    March 11th, 2012

    Juan, tnx! Thats true! i can see on my switch in rapid-pvst mode :

    “VLAN0001
    Spanning tree enabled protocol rstp”

    Now it’s clear for me.

  36. MzeeNyani
    March 28th, 2012

    Do i have to remember all the Acronym in cisco?
    I at first got wrong question 7 because of the acronym (DTP),…is this how the exam is or
    i will be asked in full sentence “Dynamic Trunking Protocol (DTP)” instead of just asking
    DTP?

  37. Johny
    April 3rd, 2012

    @MzeeNyani
    Practically, yes … but they get easy to remember when you have read much and got all the concepts. Secondly when you do the lab practice like configuring … the acronym becomes part of you and they sieze to be hard to remember.

  38. edz cudz
    April 28th, 2012

    thanks 9tut!=D

  39. Mounir Sahali
    May 15th, 2012

    Question 3:
    We all know that STP is applied to trunk ports,why should we use portfast feature on ports that are connected to hosts as hosts need to be in access mode not trunk mode?
    thank you in advance

  40. Pandora37
    May 16th, 2012

    STP runs in all ports in a switch, so we set portfast on access ports to avoid the switch to be in listening, learning mode when it is not required, so the hosts connected to access ports will be up faster, since there isn’t another switch connected there

  41. Jamwal
    May 17th, 2012

    Great site…keep it up

  42. sara
    May 18th, 2012

    hi
    Q5 how can i get the default value bridge priority 32768?
    plz help

  43. kurt
    May 18th, 2012

    Question 7

    Which IEEE standard protocol is initiated as a result of successful DTP completion in a switch over FastEthernet?

    A. 802.3ad
    B. 802.1w
    C. 802.1Q
    D. 802.1d

    Answer: C

    Shouldn’t this be in the Switch Questions section, not STP?

  44. puneet
    May 20th, 2012

    Hi all, I am taking CCNA 640-802 exam first time on 30/05/2012. Could anyone please send me latest dumps which are valid for UK? My e-mail address is puneet_gill84@yahoo.co.uk. Many thanks.

  45. Jay
    May 23rd, 2012

    hi 9tut and xallax.

    Please help me on the question below…

    http://i50.tinypic.com/xbrkg.gif

    i think B is the answer.

    Please confirmed.

    Thanks in advance.

  46. xallax
    May 23rd, 2012

    @jay
    im almost sure the given image is incorrect.
    there must’ve been something that showed a topology with 3 switches and a router

  47. OCSIC
    May 25th, 2012

    Hey guys, i have 1 question to confirm regarding STP from Collisio dumps..

    In which circumstances are multiple copies of the same unicast frame likely to be transmitted in a switched LAN.

    A. After broken links are re-established
    B. In an improperly implemented redundant topology
    C. When upper-layer protocols require high reliabilty
    D. During high traffic periods
    E. When dual ring topology is in use

    The correct answer should be ‘B’ (Todd Lammle’s CCNA Study Guide 7th ed, page 551, the answer is “In an improperly implemented redundant topology”…..but collisio dumps’ answer is ‘E’.

  48. xallax
    May 25th, 2012

    @ocsic
    B is the correct option here.
    in a dual ring topology the frame COULD be multiplied IF there is a problem with STP or split-horizon (if using routers). that leads to option B once again: if your redundant topology is misconfigured then you will have multiple frames running around

  49. OCSIC
    May 25th, 2012

    @xallax, the guy who created “Collisio Dumps” is wrong because his answer is “E”

Comment pages
1 2 3 922
Add a Comment