10 - First Hop Redundancy Protocol

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 17

Understanding Layer 3

Redundancy

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 1
Objectives
Upon completing this lesson, you will be able to meet these
objectives:
• Describe routing issues in connection to redundancy
• Explain the router redundancy process and what happens when a
failover occurs
• Identify HSRP and VRRP as Layer 3 redundancy protocols
• Configure basic HSRP
• Describe the idea behind HSRP interface tracking
• Describe the idea behind HSRP load balancing
• Identify GLBP as a load-balancing redundancy protocol

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 2
The Need for Default Gateway Redundancy

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 3
Default Gateway Redundancy

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 4
Default Gateway Redundancy (Cont.)

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 5
HSRP
• HSRP defines a group of routers -- one active and one standby.
• Virtual IP and MAC addresses are shared between the two
routers.
• To verify HSRP state, use the show standby command.
• HSRP is Cisco proprietary, and VRRP is a standard protocol.

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 6
HSRP (Cont.)
• Active router:
Responds to default gateway ARP
requests with the virtual router MAC
address
Assumes active forwarding of packets
for the virtual router
Sends hello messages
Knows the virtual router IP address

• Standby Router
Listens for periodic hello messages
Assumes active forwarding of packets
if it does not hear from active router

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 7
Configuring HSRP
• Routers A and B are configured with priorities of 110 and 90,
respectively. The configuration of Router A is displayed. A similar
configuration is required on Router B.
• The preempt keyword ensures that Router A will be the HSRP
active router as long its interface is active and sending hellos.
HSRP
Group 1
Router A Router B
Priority Priority
110 90
RouterA(config)# interface GigabitEthernet0/0
RouterA(config-if)# ip address 10.1.10.2 255.255.255.0
RouterA(config-if)# standby 1 ip 10.1.10.1
RouterA(config-if)# standby 1 priority 110
RouterA(config-if)# standby 1 preempt

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 8
HSRP Verification
Use the show standby command to verify the HSRP state.
RouterA# show standby
GigabitEthernet0/0 - Group 1 (version 2)
State is Active
2 state changes, last state change 00:00:18
Virtual IP address is 10.1.10.1
Active virtual MAC address is 0000.0C9F.F001
Local virtual MAC address is 0000.0C9F.F001 (v2 default)
Hello time 3 sec, hold time 10 sec
Next hello sent in 2.278 secs
Preemption enabled
Active router is local
Standby router is 10.1.10.3, priority 90 (expires in 9 sec)
Priority 110 (configured 110)
Group name is hsrp-Gig0/0-1 (default)

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 9
HSRP Verification (Cont.)
The show standby brief command displays a summary
of the HSRP configurations.
RouterA# show standby brief
P indicates configured to preempt.
|
Interface Grp Pri P State Active Standby Virtual IP
Gig0/0 1 110 P Active local 10.1.10.3 10.1.10.1

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 10
HSRP Interface Tracking

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 11
HSRP Load Balancing

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 12
VRRP config
• Router A • Router B

• Router(config)# interface GigabitEthernet 1/0/0 • Router(config)# interface GigabitEthernet 1/0/0

• Router(config-if)# ip address 10.1.0.2 255.0.0.0 • Router(config-if)# ip address 10.1.0.1 255.0.0.0

• Router(config-if)# vrrp 1 priority 120 • Router(config-if)# vrrp 1 priority 100

• Router(config-if)# vrrp 1 authentication cisco • Router(config-if)# vrrp 1 authentication cisco

• Router(config-if)# vrrp 1 ip 10.1.0.10 • Router(config-if)# vrrp 1 ip 10.1.0.10

• Router(config-if)# no shutdown
• Router(config-if)# no shutdown

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 13
Gateway Load Balancing Protocol
• Allows full use of resources on
all devices without the
administrative burden of
creating multiple groups
• Provides a single virtual IP
address and multiple virtual
MAC addresses
• Routes traffic to single gateway
distributed across routers
• Provides automatic rerouting in
the event of any failure

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 14
GLBP Config
• R1: R3:

• interface FastEthernet0/0 • interface Ethernet0/0


• ip address 174.1.123.1 255.255.255.0 • ip address 174.1.123.3 255.255.255.0
• glbp 123 ip 174.1.123.254
• glbp 123 ip 174.1.123.254
• glbp 123 preempt
• glbp 123 priority 25
• glbp 123 weighting 50
• glbp 123 preempt
• glbp 123 load-balancing weighted
• glbp 123 weighting 20

• R2:

• interface FastEthernet0/0

• ip address 174.1.123.2 255.255.255.0


• glbp 123 ip 174.1.123.254
• glbp 123 priority 50
• glbp 123 preempt
• glbp 123 weighting 30
• !

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 15
Gateway Load Balancing Protocol (Cont.)
R1#show glbp
FastEthernet0/0 - Group 1
State is Active
2 state changes, last state change 00:04:12
Virtual IP address is 192.168.2.100
<output omitted>
Active is local
Standby is 192.168.2.2, priority 100 (expires in 7.644 sec)
Priority 100 (default)
Weighting 100 (default 100), thresholds: lower 1, upper 100
Load balancing: round-robin
Group members:
c000.0ce0.0000 (192.168.2.1) local
c001.0ce0.0000 (192.168.2.2)
<output omitted>

• The show glbp command in this example displays information


about the status of GLBP group 1.
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 16
Gateway Load Balancing Protocol (Cont.)
R1#show glbp
<output omitted>
There are 2 forwarders (1 active)
Forwarder 1
State is Active
1 state change, last state change 00:04:02
MAC address is 0007.b400.0101 (default)
Owner ID is c000.0ce0.0000
Redirection enabled
Preemption enabled, min delay 30 sec
Active is local, weighting 100
Forwarder 2
State is Listen

• The show glbp command in this example displays information


about the status of GLBP group 1.

© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 17

You might also like