Home > HSRP Questions 2

HSRP Questions 2

January 27th, 2012 in SWITCH 642-813 Go to comments

Here you will find answers to HSRP Questions – Part 2

Question 1

Three Cisco Catalyst switches have been configured with a first-hop redundancy protocol. While reviewing some show commands, debug output, and the syslog, you discover the following information:

Jan 9 08:00:42.623: %STANDBY-6-STATECHANGE: Standby: 49:
Vlan149 state Standby -> Active
Jan 9 08:00:56.011: %STANDBY-6-STATECHANGE: Standby: 49:
Vlan149 state Active -> Speak
Jan 9 08:01:03.011: %STANDBY-6-STATECHANGE: Standby: 49:
Vlan149 state Speak -> Standby
Jan 9 08:01:29.427: %STANDBY-6-STATECHANGE: Standby: 49:
Vlan149 state Standby -> Active
Jan 9 08:01:36.808: %STANDBY-6-STATECHANGE: Standby: 49:
Vlan149 state Active -> Speak
Jan 9 08:01:43.808: %STANDBY-6-STATECHANGE: Standby: 49:
Vlan149 state Speak -> Standby

What conclusion can you infer from this information?

A. VRRP is initializing and operating correctly.
B. HSRP is initializing and operating correctly.
C. GLBP is initializing and operating correctly.
D. VRRP is not properly exchanging three hello messages.
E. HSRP is not properly exchanging three hello messages.
F. GLBP is not properly exchanging three hello messages.


Answer: E

Explanation

These error messages describe a situation in which a standby HSRP router did not receive three successive HSRP hello packets from its HSRP peer (by default, hello messages are sent every 3 seconds while the holdtime is 10 seconds). The output shows that the standby router moves from the standby state to the active state. Shortly thereafter, the router returns to the standby state. Unless this error message occurs during the initial installation, an HSRP issue probably does not cause the error message. The error messages signify the loss of HSRP hellos between the peers. When you troubleshoot this issue, you must verify the communication between the HSRP peers. A random, momentary loss of data communication between the peers is the most common problem that results in these messages. HSRP state changes are often due to High CPU Utilization. If the error message is due to high CPU utilization, put a sniffer on the network and the trace the system that causes the high CPU utilization.

(Reference and good resource: http://www.cisco.com/en/US/tech/tk648/tk362/technologies_tech_note09186a0080094afd.shtml)

Question 2

You administer a network that uses two routers, R1 and R2, configured as an HSRP group to provide redundancy for the gateway. Router R1 is the active router and has been configured as follows:

R1#configure terminal
R1(config)#interface fa0/0
R1(config-if)#ip address 10.10.0.5 255.255.255.0
R1(config-if)#standby 1 priority 150
R1(config-if)#standby preempt delay minimum 50
R1(config-if)#standby 1 track interface fa0/2 15
R1(config-if)#standby 1 ip 10.10.0.20

Which of the following describes the effect the “standby preempt delay minimum 50” command will have on router R1?

A. The HSRP priority for router R1 will increase to 200.
B. Router R1 will become the standby router if the priority drops below 50.
C. The HSRP priority for router R1 will decrease to 50 points when FaO/2 goes down.
D. Router R1 will wait 50 seconds before attempting to preempt the active router.


Answer: D

Explanation

If R1, for some reason, loses its active state, the “standby preempt delay minimum 50″ command will cause R1 to wait 50 seconds before it tries to get the active state again -> D is correct.

Question 3

Refer to the exhibit. HSRP has been configured and Link A is the primary route to router R4. When Link A fails, router R2 (Link B) becomes the active router. Which router will assume the active role when Link A becomes operational again?

HSRP_active_standby.jpg

A. The primary router R1 will reassume the active role when it comes back online.
B. The standby router R2 will remain active and will forward the active role to router R1 only in the event of its own failure.
C. The standby router R2 will remain active and will forward the active role to router R1 only in the event of Link B failure.
D. The third member of the HSRP group, router R3, will take over the active role only in event of router R2 failure.


Answer: A

Explanation

When R1 fails, the “standby 1 preempt” command on R2 will cause R2 to take over the active state of R1. But when R1 comes up again, the “standby 1 preempt” command on R1 will help R1 take over the active state again. Without the “preempt” command configured on R2, R2 only takes over the active state only if it receives information indicating that there is no router currently in active state (by default it does not receive 3 hello messages from the active router). Without the “preempt” command on R2, it will not become active router even if its priority is higher than all other routers.

Question 4

Which first-hop redundancy solution listed would supply clients with MAC address 0000.0C07.AC0A for group 10 in response to an ARP request for a default gateway?

A. IRDP
B. Proxy ARP
C. GLBP
D. HSRP
E. VRRP
F. IP Redirects


Answer: D

Explanation

The last two-digit hex value in the MAC address presents the HSRP group number. In this case 0A in hexa equals 10 in decimal so this router belongs to group 10 and it is running HSRP.

Question 5

What three tasks must a network administrator perform to properly configure Hot Standby Routing Protocol (HSRP)? (Choose three)

A. Define the encapsulation type.
B. Define the standby router.
C. Define the standby IP address.
D. Enable the standby priority.


Answer: B C D

Question 6

You want to allow Router R1 to immediately become the active router if its priority is highest than the active router fails. What command would you use if you wanted to configure this?

A. en standby 1 preempt
B. standby 1 preempt enable
C. standby 1 preempt
D. hot standby 1 preempt


Answer: C

Question 7

Routers R1 and R2 are configured for HSRP as shown below:

Router R1:

interface ethernet 0
ip address 20.6.2.1 255.255.255.0
standby 35 ip 20.6.2.21
standby 35 priority 100
interface ethernet 1
ip address 20.6.1.1 255.255.255.0
standby 34 ip 20.6.1.21

Router R2:

interface ethernet 0
ip address 20.6.2.2 255.255.255.0
standby 35 ip 20.6.2.1
interface ethernet 1
ip address 20.6.1.2 255.255.255.0
standby 34 ip 20.6.1.21
standby 34 priority 100

You have configured the routers R1 & R2 with HSRP. While debugging router R2 you notice very frequent HSRP group state transitions. What is the most likely cause of this?

A. physical layer issues
B. no spanning tree loops
C. use of non-default HSRP timers
D. failure to set the command standby 35 preempt


Answer: A

Explanation

Both routers are not configured with the “preempt” command so by default they only take over the active state when they believe there is no active router (by default they don’t hear 3 successive hello messages from the active router). Therefore the most likely cause of this problem is a link failure between them (physical layer issue) -> A is correct.

Question 8

In which three HSRP states do routers send hello messages? (Choose three)

A. Learn
B. Speak
C. Standby
D. Listen
E. Active
F. Remove


Answer: B C E

Explanation

Speak state: sends hello messages to compete for the standby or active role.
Standby state: send hello messages to inform it is the standby router so that other routers (which are not active or standby router, in listen state) know the standby router is still there.
Active state: sends hello messages to indicate it is still up

Question 9

In the hardware address 0000.0c07.ac0a, what does 07.ac represent?

A. HSRP well-known physical MAC address
B. Vendor code
C. HSRP router number
D. HSRP group number
E. HSRP well-known virtual MAC address


Answer: E

Explanation

The HSRP standby IP address is a virtual MAC address which is composed of 0000.0c07.ac**. In which “**” is the HSRP group number in hexadecimal.

Question 10

Refer to the exhibit. Which two problems are the most likely cause of the exhibited output? (Choose two)

Vlan8 – Group 8
Local state is Active, priority 110, may preempt
Hellotime 3 holdtime 10
Next hello sent in 00:00:01.168
Hot standby IP address is 10.1.2.2 configured
Active router is local
Standby router is unknown expired
Standby virtual mac address is 0000.0c07.ac08
5 state changes, last state change 00:05:03

A. Transport layer issues
B. VRRP misconfiguration
C. HSRP misconfiguration
D. Physical layer issues
E. Spanning tree issues


Answer: C D

Explanation

When you see this error, it means the local router fails to receive HSRP hellos from neighbor router. Two things you should check first are the physical layer connectivity and verify the HSRP configuration. An example of HSRP misconfiguration is the mismatched of HSRP standby group and standby IP address.

Another thing you should check is the mismatched VTP modes.

(Reference: http://www.cisco.com/en/US/tech/tk648/tk362/technologies_tech_note09186a0080094afd.shtml)

Comments
  1. Assad
    June 23rd, 2012

    In Q.7 I suppose there is a slight mistake with the IP address for R2 ‘standby 35 ip 20.6.2.1′. The IP address should be 20.6.2.21.
    And I am not getting this, if the link goes down how is it that there are frequent state transitions when there is no link at all if the physical layer issue is there.
    I m a bit confused, please clarify this to me.
    Thank you.

  2. engkattan
    June 24th, 2012

    Dear Admin,
    Regarding Q3
    command standby 1 track interface S0 10 will decease the priority of R1 by 10 => R1=95 which is less than R2=100 , so R2 stays active, and R1 won’t not be active unless R2 goes to not active mode,
    correct ?

  3. engkattan
    June 24th, 2012

    i’m answering myself, when the tracked interface fail then priority will be decreased by 10 => R1 priority goes from 100 to 90 … then when the interface return up again priority back to 100
    I test this on Cisco Switches

  4. harry b.
    July 12th, 2012

    Hi there, I just saw in the Q2 the following and I just wanted to clarify:
    R1(config-if)#standby 1 priority 150
    R1(config-if)#standby preempt delay minimum 50
    R1(config-if)#standby 1 track interface fa0/2 15
    R1(config-if)#standby 1 ip 10.10.0.20

    when the command stand by is not followed by the group, the default group is 0, right?

    Is this a typo in the Q2?

    Thank you for clarification.

  5. HungN
    July 20th, 2012

    Hi Guys,

    Seeing the answer right in front your eyes before making selection is annoying. So i grabs all of the questions on this site and put them into VCE file to make my life easier. Be sure to check back CertPrepare site regularly for updates.

    Here is the file: http://www.4shared.com/file/C5hmKPbb/CCNP_642-813_CertPrepare-by_Hu.html

    Best of luck !!!

  6. Anonymous
    August 3rd, 2012

    Thx

  7. sajid
    August 8th, 2012

    Q7 contains some errors

  8. Billy
    September 22nd, 2012

    Q7 – R1 and R2 has a different standby IP for HSRP group 35.
    R1
    interface ethernet 0
    ip address 20.6.2.1 255.255.255.0
    standby 35 ip 20.6.2.21

    R2
    interface ethernet 0
    ip address 20.6.2.2 255.255.255.0
    standby 35 ip 20.6.2.1

    Is this a typo?

  9. Ollie
    October 14th, 2012

    @harry b. You are dead right

    DLS1(config)#int vlan 21
    DLS1(config-if)#no standby 21 preempt delay reload 60
    DLS1(config-if)#standby preempt
    DLS1(config-if)#^Z
    DLS1#sh run int vlan 21
    Building configuration…

    Current configuration : 226 bytes
    !
    interface Vlan21
    ip address 10.1.21.2 255.255.255.0
    standby 0 preempt
    standby 21 ip 10.1.21.1
    standby 21 timers msec 15 msec 50
    standby 21 priority 200
    standby 21 preempt
    standby 21 track GigabitEthernet1/0/1 25
    end

  10. Alexawy
    November 20th, 2012

    for Q3
    I think R1 after coming back, its priority will reduced by 10> it will become 95, because it is configured with “track”.
    so R2 will still the Active, because it has the higher priority > 100.
    Right?

  11. Azhrj
    November 24th, 2012

    Please in short explanation, what is the difference betewwn mhsrp and hsrp from configuration side?
    thanks

  12. Faisorn
    January 31st, 2013

    [[[HSRP]]]]:
    Redundancy protocols HSRP, VRRP, and GLBP
    http://www.cisco.com/en/US/docs/switches/metro/me3400e/software/release/12.2_58_se/configuration/guide/swhsrp.pdf
    http://packetlife.net/media/library/3/First_Hop_Redundancy.pdf ****
    http://cisconetworkingcenter.blogspot.com/2013/01/first-hop-redundancy-protocol.html
    http://www.ciscopress.com/articles/article.asp?p=766858
    This chapter provides information and commands concerning the following topics:
    •Hot Standby Routing Protocol (HSRP)
    —Configuring HSRP
    —Verifying HSRP
    —HSRP optimization options
    —Debugging HSRP
    •Virtual Router Redundancy Protocol (VRRP)
    —Configuring VRRP
    —Verifying VRRP
    —Debugging VRRP
    •Gateway Load Balancing Protocol (GLBP)
    —Configuring GLBP
    —Verifying GLBP
    —Debugging GLBP

    @9tut Thanks for site sharing for networker :)

  13. TechMom
    April 12th, 2013

    Q8 & Q9 in test today.

  14. bogdan
    April 25th, 2013

    On Q3:

    R1 becomes active again when Link A comes UP because it has the command: standby 1 priority 105, without this command even if R1 will go into standby it will not become active if Link A went up. I tested and this is the situation.

  1. No trackbacks yet.
Add a Comment