Question

Difficulty: EasyFirst Hop Redundancy Protocols (HSRP and VRRP)

A network administrator is configuring Hot Standby Router Protocol (HSRP) on a Cisco router interface that has already been assigned the physical IPv4 address 192.168.10.1/24. The administrator attempts to execute the command `standby 1 ip 192.168.10.1` on this interface. What is the result of executing this command?

  1. The router rejects the command because HSRP does not permit assigning a router's physical interface IP address as the virtual IP address.Answer
  2. B
    The router accepts the command and automatically sets its HSRP priority to 255 to become the IP address owner.
  3. C
    The command is accepted, but HSRP preemption is permanently disabled to prevent an IP address conflict with standby routers.
  4. D
    The command succeeds and the router immediately transitions to the Standby state regardless of its configured priority value.

Answer

The router rejects the command because HSRP does not permit assigning a router's physical interface IP address as the virtual IP address.
In Hot Standby Router Protocol (HSRP), the virtual IP address must be an unused, unique IP address within the local IPv4 subnet. Unlike Virtual Router Redundancy Protocol (VRRP), which allows the virtual IP address to match a physical interface IP address (making that router the IP address owner with priority 255), HSRP explicitly forbids using any member router's physical interface IP address. Attempting to do so in Cisco IOS results in an error message rejecting the command.

Step-by-Step Solution

1
Identify the protocol being configured and the requested virtual IP address.
The protocol is HSRP (v1/v2) and the command `standby 1 ip 192.168.10.1` attempts to use the physical IP address of the local interface (192.168.10.1).
Determining protocol-specific rules for Virtual IP (VIP) assignment is required to evaluate command validity.
2
Recall HSRP IP address assignment constraints.
HSRP requires the virtual IP address to be an unused IP address within the subnet shared by the gateway routers.
HSRP does not support the concept of an IP address owner sharing a physical IP address with the virtual IP address.
3
Determine the Cisco IOS CLI output behavior.
Cisco IOS generates an error indicating that the virtual IP address cannot match the interface IP address and rejects the command.
Executing a standby IP command with the interface's own IP address fails validation.

Key Concept

HSRP Virtual IP Address Assignment Constraints
Rate this question