FHRP (HSRP, VRRP, GLBP) Flashcards
What is the command to enable HSRP on an interface?
R1(config-if)# standby {group-id} ip {virtual-address}
Example:
R1(config-if)# standby 99 ip 10.1.1.3
What is the default priority of an HSRP router and what priority is most preferred?
- Priority 100
- Higher is preferred
NOTE: Can be any value from 0 - 255
What is the command to adjust the HSRP hello and hold down timers?
R1(config-if)# standby {group-id} timers {hello-secs} {holddown-secs}
R1(config-if)# standby 99 timers 5 15
What are the HSRP default hello and hold down timers?
3 (hello) and 10 (hold down)
What is the command to enable preemption on an HSRP interface?
R1(config-if)# standby {group-id} preempt
R1(config-if)# standby 99 preempt
What command do you need to issue on an interface if you require HSRP group numbers from 256 - 4069 and timers will millisecond values?
R1(config-if)# standby version 2
What does the preempt command do in HSRP?
It negotiates the Active router based on priority without waiting for a failover event to occur.
What command is used to enable HSRP authentication?
R1(config-if)# standby {group-id} authentication {password | md5 key-chain | key-string keystring}
Examples:
R1(config-if)# standby 99 authentication My_Pa$$w0Rd
R1(config-if)# standby 99 authentication md5 key-chain NAME
R1(config-if)# standby 99 authentication key-string My_Pa$$w0Rd
What are the commands to enable HSRP authentication using an MD5 key-chain
R1(config)# key chain HSRP_KEYCHAIN
R1(config-keychain)# key 999
R1(config-keychain-key)# key-string Pa$$W0rd
R1(config)# int gi0/0
R1(config-if)# standby 99 authentication md5 key-chain HSRP_KEYCHAIN
In HSRP, what are the roles or states a device can be in?
- Active
- Standby
- Speaker
What is the command to verify HSRP?
show standby
What are the commands to enable basic VRRP?
R1(config-if)# vrrp {group-id} ip {virtual-address}
Example:
R1(config-if)# vrrp 99 ip 10.1.1.3
What are the commands to adjust VRRP Priority on a Cisco router?
R1(config-if)# vrrp {group-id} priority {0-255}
Example:
R1(config-if)# vrrp 99 priority 150
In VRRP what is different about preemption compared to HSPR?
Preemption is enabled by default.
In VRRP what are the roles (or states) a device can be in?
- Master
- Backup
In VRRP, what are the commands to adjust the timers?
R1(config-if)# vrrp {group-id} timers advertise {secs}
Example:
R1(config-if)# vrrp 99 timers advertise 3
What is the command to enable VRRPv3?
R1(config)# fhrp version vrrp v3
Why would you want to enable VRRPv3 on a device?
To support IPv6 addresses
What are the commands to configure basic VRRPv3 on a device?
(4 commands)
R1(config)# fhrp version vrrp v3
R1(config)# int gi0/0
R1(config-if)# vrrp 99 address-family ipv6
R1(config-if-vrrp)# address fc00:a:b:c::1/64
What are the commands to configure VRRP priority change with tracking?
R1(config-if)# vrrp {id} track {id} decrement {value}
Example:
R1(config-if)# vrrp 99 track 1 decrement 50
In GLBP, what are the names of the device roles?
AVG - Active Virtual gateway
AVF - Active Virtual Forwarder
In GLBP, what is the command for basic configuration?
R1(config-if)# glbp {group-id} ip {virtual-address}
Example:
R1(config-if)# glbp 99 ip 10.99.1.4
In GLBP, what is the command to enable preemption?
R1(config-if)# glbp {group-id} preempt
Example:
R1(config-if)# glbp 99 preempt
In GLBP, what is the command to adjust hello and hold timers?
R1(config-if)# glbp {group-id} timers {hello-secs} {hold-secs}
Example:
R1(config-if)# glbp 99 timers 2 9
In GLBP, what are the default hello and hold timer values?
- Hello 3
- Hold 10
In GLBP, what are the commands to configure weighted load-balancing?
R1(config-if)# glbp {group-id} load-balancing weighted
R1(config-if)# glbp {group-id} weighting {1-254}
Example:
R1(config-if)# glbp 99 load-balancing weighted
R1(config-if)# glbp 99 weighting 125