FHRP (HSRP, VRRP, GLBP) Flashcards

1
Q

What is the command to enable HSRP on an interface?

A

R1(config-if)# standby {group-id} ip {virtual-address}

Example:
R1(config-if)# standby 99 ip 10.1.1.3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the default priority of an HSRP router and what priority is most preferred?

A
  • Priority 100
  • Higher is preferred

NOTE: Can be any value from 0 - 255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the command to adjust the HSRP hello and hold down timers?

A

R1(config-if)# standby {group-id} timers {hello-secs} {holddown-secs}

R1(config-if)# standby 99 timers 5 15

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the HSRP default hello and hold down timers?

A

3 (hello) and 10 (hold down)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the command to enable preemption on an HSRP interface?

A

R1(config-if)# standby {group-id} preempt

R1(config-if)# standby 99 preempt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does the preempt command do in HSRP?

A

It negotiates the Active router based on priority without waiting for a failover event to occur.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What command is used to enable HSRP authentication?

A

R1(config-if)# standby {group-id} authentication {password | md5 key-chain | key-string keystring}

R1(config-if)# standby 99 authentication My_Pa$$w0Rd
R1(config-if)# standby 99 authentication
R1(config-if)# standby 99 authentication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the commands to enable HSRP authentication using an MD5 key-chain

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

In HSRP, what are the roles or states a device can be in?

A
  • Active
  • Standby
  • Speaker
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the command to verify HSRP?

A

show standby

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the commands to enable basic VRRP?

A

R1(config-if)# vrrp {group-id} ip {virtual-address}

Example:
R1(config-if)# vrrp 99 ip 10.1.1.3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the commands to adjust VRRP Priority on a Cisco router?

A

R1(config-if)# vrrp {group-id} priority {0-255}

Example:
R1(config-if)# vrrp 99 priority 150

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

In VRRP what is different about preemption compared to HSPR?

A

Preemption is enabled by default.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

In VRRP what are the roles (or states) a device can be in?

A
  • Master
  • Backup
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

In VRRP, what are the commands to adjust the timers?

A

R1(config-if)# vrrp {group-id} timers advertise {secs}

Example:
R1(config-if)# vrrp 99 timers advertise 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the command to enable VRRPv3?

A

R1(config)# fhrp version vrrp v3

17
Q

Why would you want to enable VRRPv3 on a device?

A

To support IPv6 addresses

18
Q

What are the commands to configure basic VRRPv3 on a device?
(4 commands)

A

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

19
Q

What are the commands to configure VRRP priority change with tracking?

A

R1(config-if)# vrrp {id} track {id} decrement {value}

Example:
R1(config-if)# vrrp 99 track 1 decrement 50

20
Q

In GLBP, what are the names of the device roles?

A

AVG - Active Virtual gateway
AVF - Active Virtual Forwarder

21
Q

In GLBP, what is the command for basic configuration?

A

R1(config-if)# glbp {group-id} ip {virtual-address}

Example:
R1(config-if)# glbp 99 ip 10.99.1.4

22
Q

In GLBP, what is the command to enable preemption?

A

R1(config-if)# glbp {group-id} preempt

Example:
R1(config-if)# glbp 99 preempt

23
Q

In GLBP, what is the command to adjust hello and hold timers?

A

R1(config-if)# glbp {group-id} timers {hello-secs} {hold-secs}

Example:
R1(config-if)# glbp 99 timers 2 9

24
Q

In GLBP, what are the default hello and hold timer values?

A
  • Hello 3
  • Hold 10
25
Q

In GLBP, what are the commands to configure weighted load-balancing?

A

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