Question

Difficulty: Very hardFirst Hop Redundancy Protocols (HSRP and VRRP)

An administrator is configuring first-hop redundancy on router R1 for VLAN 50 using HSRPv2. Interface GigabitEthernet0/0/0 on R1 is assigned the IPv4 address 192.168.50.1/24192.168.50.1/24. The administrator enters interface configuration mode and issues the command `standby 50 ip 192.168.50.1` to establish the virtual IP address. Which outcome will result from this configuration attempt?

  1. The command line interface rejects the command because HSRP forbids assigning a router's physical interface IPv4 address as the virtual IP address.Answer
  2. B
    The router accepts the command and automatically sets its HSRP priority to 255 to act as the IP address owner for the group.
  3. C
    The router accepts the command, but HSRP remains indefinitely in the Listen state due to a virtual MAC address conflict.
  4. D
    The router accepts the command and forwards traffic by selecting the floating static route with the lowest administrative distance.

Answer

The command line interface rejects the command because HSRP forbids assigning a router's physical interface IPv4 address as the virtual IP address.
In Cisco HSRP implementation, the virtual IPv4 address must be an unused IP address on the subnet segment. It cannot match the physical IP address assigned to any interface on any router participating in the HSRP group. Attempting to assign an existing physical IP address causes Cisco IOS to reject the `standby ip` command with a syntax validation error.

Step-by-Step Solution

1
Analyze the HSRP virtual IP assignment rule in Cisco IOS.
HSRP (both v1 and v2) mandates that the virtual IPv4 address must be an unassigned IP within the subnet segment, strictly distinct from any physical IP configured on participating routers.
Preventing IP overlaps ensures ARP resolution and virtual MAC binding operate without address conflicts.
2
Compare HSRP rules with VRRP rules regarding IP address ownership.
Unlike VRRP—where configuring the virtual IP to match a master router's physical IP address is allowed and automatically sets the VRRP priority to 255 (IP address owner)—HSRP does not support IP address ownership.
HSRP syntax validation rejects physical IP matches at CLI input time.
3
Determine the CLI outcome when `standby 50 ip 192.168.50.1` is entered on R1.
Cisco IOS generates an error message (such as `% Bad IP address` or `% Address on interface cannot be used as HSRP virtual IP`) and rejects the statement.
The input violates core HSRP validation rules.

Key Concept

HSRP Virtual IP Addressing vs VRRP IP Address Ownership
Estimated Time:1m 30s
Rate this question