WOLFLAB CCIE考试学习-网关冗余HSRP、VRRP、GLBP的配置演示

 

  1. 如图所示,配置对应的接口地址,并在R1 R2 R3上运行OSPF,宣告进Area 0

R1:

router ospf 1

 router-id 1.1.1.1

 network 1.1.12.1 0.0.0.0 area 0

 network 1.1.13.1 0.0.0.0 area 0

 network 1.1.1.1 0.0.0.0 area 0

R2:

router ospf 1

 router-id 2.2.2.2

 network 1.1.12.0 0.0.0.255 area 0

 network 1.1.234.0 0.0.0.255 area 0

R3:

router ospf 1

 router-id 3.3.3.3

 network 1.1.13.0 0.0.0.255 area 0

 network 1.1.234.0 0.0.0.255 area 0

  1. R2R3之间配置HSRP,虚拟ip地址为1.1.234.254。在R2R3show standby观察HSRP的状态信息。

R2 R3:

interface FastEthernet0/0

 standby 1 ip 1.1.234.254     //先在R2上配置,再在R3上配置。

R2#show standby

FastEthernet0/0 - Group 1

  State is Active    //R2的状态为ActiveActive/Standby默认是关抢占的,先在R2上做的配置。

    2 state changes, last state change 00:00:40

  Virtual IP address is 1.1.234.254

  Active virtual MAC address is 0000.0c07.ac01

    Local virtual MAC address is 0000.0c07.ac01 (default)

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 1.200 secs

  Preemption disabled

  Active router is local

  Standby router is 1.1.234.3, priority 100 (expires in 8.812 sec)

  Priority 100 (default 100)

  IP redundancy name is "hsrp-Fa0/0-1" (default)

R3#show standby

FastEthernet0/0 - Group 1

  State is Standby     //R3的状态为Standby

    1 state change, last state change 00:01:38

  Virtual IP address is 1.1.234.254

  Active virtual MAC address is 0000.0c07.ac01

    Local virtual MAC address is 0000.0c07.ac01 (default)

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 0.556 secs

  Preemption disabled

  Active router is 1.1.234.2, priority 100 (expires in 6.952 sec)

  Standby router is local

  Priority 100 (default 100)

  IP redundancy name is "hsrp-Fa0/0-1" (default)

  1. R2R3上开启HSRP的抢占,并配置R3接口的优先级为103R3的状态应该是Active。关闭R4的路由功能,让其模拟主机,配置R4的默认网关为1.1.234.254。此时在R4traceroute 1.1.1.1

R2:

interface FastEthernet0/0

standby 1 preempt

R3:

interface FastEthernet0/0

standby 1 priority 103

 standby 1 preempt

R3:
show standby

FastEthernet0/0 - Group 1

  State is Active

    2 state changes, last state change 00:00:19

  Virtual IP address is 1.1.234.254

  Active virtual MAC address is 0000.0c07.ac01

    Local virtual MAC address is 0000.0c07.ac01 (default)

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 1.340 secs

  Preemption enabled

  Active router is local

  Standby router is 1.1.234.2, priority 100 (expires in 9.356 sec)

  Priority 103 (configured 103)

  IP redundancy name is "hsrp-Fa0/0-1" (default)

R4:

R4#traceroute 1.1.1.1

Tracing the route to 1.1.1.1

  1 1.1.234.3 56 msec 36 msec 20 msec

  2 1.1.13.1 16 msec *  32 msec

  1. R3上开启针对上行接口的跟踪,若是上行接口down掉,让R2成为Acitve状态。此时在R4traceroute 1.1.1.1,观察现象。

R3:

interface FastEthernet0/0

 standby 1 track Serial1/1 15    //R3的上行接口S1/1down掉,R3priority15

interface Serial1/1

 shutdown

R3:

show standby

FastEthernet0/0 - Group 1

  State is Standby

    4 state changes, last state change 00:00:07

  Virtual IP address is 1.1.234.254

  Active virtual MAC address is 0000.0c07.ac01

    Local virtual MAC address is 0000.0c07.ac01 (default)

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 1.592 secs

  Preemption enabled

  Active router is 1.1.234.2, priority 100 (expires in 7.620 sec)

  Standby router is local

  Priority 88 (configured 103)

    Track interface Serial1/1 state Down decrement 15

  IP redundancy name is "hsrp-Fa0/0-1" (default)

R4:

R4#traceroute 1.1.1.1

Tracing the route to 1.1.1.1

  1 1.1.234.2 56 msec 36 msec 20 msec

  2 1.1.13.1 16 msec *  32 msec

  1. 删除第4题针对上行接口的跟踪。在R3上开启针对1.1.1.1/32路由metric的跟踪,若是R3路由表中看到此路由下一跳为R2,让R2成为Active状态。在R3上将S1/1接口shutdown,在R4traceroute 1.1.1.1,观察现象。

R3:

interface FastEthernet0/0

 no standby 1 track Serial1/1 15

track 1 ip route 1.1.1.1 255.255.255.255 metric threshold    //定义track事件

 threshold metric up 65 down 66

interface FastEthernet0/0

standby 1 track 1 decrement 15     //调用track事件

interface Serial1/1

 shutdown

R2:

show standby

FastEthernet0/0 - Group 1

  State is Active

    8 state changes, last state change 00:02:08

  Virtual IP address is 1.1.234.254

  Active virtual MAC address is 0000.0c07.ac01

    Local virtual MAC address is 0000.0c07.ac01 (default)

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 1.004 secs

  Preemption enabled

  Active router is local

  Standby router is 1.1.234.3, priority 88 (expires in 8.996 sec)

  Priority 100 (default 100)

  IP redundancy name is "hsrp-Fa0/0-1" (default)

R4#traceroute 1.1.1.1

Tracing the route to 1.1.1.1

  1 1.1.234.2 56 msec 36 msec 20 msec

  2 1.1.13.1 16 msec *  32 msec

  1. R2R3上删除HSRP的配置。在R2R3上分别配置Group1Group2HSRP,虚拟IP地址分别为1.1.234.2531.1.234.254。确保R2成为Group1Active状态,R3成为Group2Active状态。将R4的默认网关配置为1.1.234.253,关闭R5的路由功能,让其模拟主机,配置默认网关为1.1.234.254。在R4R5traceroute 1.1.1.1,观察现象。

R2 R3:

interface FastEthernet0/0

 no standby 1

R2:

interface FastEthernet0/0

standby 1 ip 1.1.234.253

 standby 1 priority 101

 standby 1 preempt

 standby 2 ip 1.1.234.254

R3:

interface FastEthernet0/0

standby 1 ip 1.1.234.253

 standby 2 ip 1.1.234.254

 standby 2 priority 101

 standby 2 preempt

R2:

show standby

FastEthernet0/0 - Group 1

  State is Active

    1 state change, last state change 00:01:53

  Virtual IP address is 1.1.234.253

  Active virtual MAC address is 0000.0c07.ac01

    Local virtual MAC address is 0000.0c07.ac01 (default)

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 0.456 secs

  Preemption enabled

  Active router is local

  Standby router is 1.1.234.3, priority 100 (expires in 9.296 sec)

  Priority 101 (configured 101)

  IP redundancy name is "hsrp-Fa0/0-1" (default)

FastEthernet0/0 - Group 2

  State is Standby

    4 state changes, last state change 00:01:15

  Virtual IP address is 1.1.234.254

  Active virtual MAC address is 0000.0c07.ac02

    Local virtual MAC address is 0000.0c07.ac02 (default)

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 2.036 secs

  Preemption disabled

  Active router is 1.1.234.3, priority 101 (expires in 8.016 sec)

  Standby router is local

  Priority 100 (default 100)

  IP redundancy name is "hsrp-Fa0/0-2" (default)

R4:

traceroute 1.1.1.1

Tracing the route to 1.1.1.1

  1 1.1.234.2 56 msec 36 msec 20 msec

  2 1.1.13.1 16 msec *  32 msec

R5:

traceroute 1.1.1.1

Tracing the route to 1.1.1.1

  1 1.1.234.3 56 msec 36 msec 20 msec

  2 1.1.13.1 16 msec *  32 msec

  1. 删除第6题的配置。在R2R3上配置VRRP,虚拟ip地址为1.1.234.254。观察现象,并比较VRRPHSRP的不同之处。

R2 R3:

interface FastEthernet0/0

 no standby 1

 no standby 2

interface FastEthernet0/0

vrrp 1 ip 1.1.234.254

R2:

show vrrp

FastEthernet0/0 - Group 1 

  State is Backup 

  Virtual IP address is 1.1.234.254

  Virtual MAC address is 0000.5e00.0101

  Advertisement interval is 1.000 sec

  Preemption enabled      //VRRP默认开启抢占

  Priority is 100

  Master Router is 1.1.234.3, priority is 100

  Master Advertisement interval is 1.000 sec

  Master Down interval is 3.609 sec (expires in 3.297 sec)

R3:

show vrrp 

FastEthernet0/0 - Group 1 

  State is Master  

  Virtual IP address is 1.1.234.254

  Virtual MAC address is 0000.5e00.0101

  Advertisement interval is 1.000 sec

  Preemption enabled     //VRRP默认开启抢占

  Priority is 100

  Master Router is 1.1.234.3 (local), priority is 100

  Master Advertisement interval is 1.000 sec    //Master1秒发通告消息,Hold时间为3

  Master Down interval is 3.609 sec

R4:

traceroute 1.1.1.1

Tracing the route to 1.1.1.1

  1 1.1.234.3 40 msec 32 msec 20 msec

  2 1.1.13.1 20 msec *  20 msec

  1. 删除第7题的配置。在R2R3上配置GLBP,虚拟ip地址为1.1.234.254,确保R2成为AVG Active,将R4R5的默认网关均配置为1.1.234.254,在R4R5traceroute 1.1.1.1,观察现象。

R2 R3:

interface FastEthernet0/0

 no vrrp 1

R2:

interface FastEthernet0/0

glbp 1 ip 1.1.234.254

glbp 1 priority 101

glbp 1 preempt

R3:

interface FastEthernet0/0

glbp 1 ip 1.1.234.254

R2:

show glbp

FastEthernet0/0 - Group 1

  State is Active       //AVG的状态Active

    2 state changes, last state change 00:01:25

  Virtual IP address is 1.1.234.254

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 1.180 secs

  Redirect time 600 sec, forwarder time-out 14400 sec

  Preemption enabled, min delay 0 sec

  Active is local

  Standby is 1.1.234.3, priority 100 (expires in 7.204 sec)

  Priority 101 (configured)

  Weighting 100 (default 100), thresholds: lower 1, upper 100

  Load balancing: round-robin

  There are 2 forwarders (1 active)

  Forwarder 1

    State is Active     //AVF1的状态Active

      1 state change, last state change 00:01:15

    MAC address is 0007.b400.0101 (default)

    Owner ID is ca02.0544.0000

    Redirection enabled

    Preemption enabled, min delay 30 sec

    Active is local, weighting 100

  Forwarder 2

    State is Listen

    MAC address is 0007.b400.0102 (learnt)

    Owner ID is ca04.37d8.0000

    Redirection enabled, 599.948 sec remaining (maximum 600 sec)

    Time to live: 14399.944 sec (maximum 14400 sec)

    Preemption enabled, min delay 30 sec

    Active is 1.1.234.3 (primary), weighting 100 (expires in 9.936 sec)

R3:

show glbp

FastEthernet0/0 - Group 1

  State is Standby      //AVG的状态Standby

    1 state change, last state change 00:02:34

  Virtual IP address is 1.1.234.254

  Hello time 3 sec, hold time 10 sec

    Next hello sent in 1.352 secs

  Redirect time 600 sec, forwarder time-out 14400 sec

  Preemption disabled

  Active is 1.1.234.2, priority 101 (expires in 9.352 sec)

  Standby is local

  Priority 100 (default)

  Weighting 100 (default 100), thresholds: lower 1, upper 100

  Load balancing: round-robin

  There are 2 forwarders (1 active)

  Forwarder 1

    State is Listen

    MAC address is 0007.b400.0101 (learnt)

    Owner ID is ca02.0544.0000

    Time to live: 14399.352 sec (maximum 14400 sec)

    Preemption enabled, min delay 30 sec

    Active is 1.1.234.2 (primary), weighting 100 (expires in 9.352 sec)

  Forwarder 2

    State is Active

      1 state change, last state change 00:02:44

    MAC address is 0007.b400.0102 (default)

    Owner ID is ca04.37d8.0000

    Preemption enabled, min delay 30 sec

    Active is local, weighting 100

R4:

traceroute 1.1.1.1

Tracing the route to 1.1.1.1

  1 1.1.234.2 40 msec 32 msec 20 msec

  2 1.1.13.1 20 msec *  20 msec

R5:

traceroute 1.1.1.1

Tracing the route to 1.1.1.1

  1 1.1.234.3 40 msec 32 msec 20 msec

  2 1.1.13.1 20 msec *  20 msec

感谢关注

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值