HSRP協議簡介和配置 ielab

2021-09-26 09:29:24 字數 4815 閱讀 2272

hsrp(hot standby router protocol):熱備份路由器協議,設計目標是支援特定情況下 ip 流量失敗轉移不會引起混亂、並允許主機使用單路由器,以及即使在實際第一跳路由器使用失敗的情形下仍能維護路由器間的連通性。換句話說,當源主機不能動態知道第一跳路由器的 ip 位址時,hsrp 協議能夠保護第一跳路由器不出故障。該協議中含有多種路由器,對應乙個虛擬路由器。hsrp 協議只支援乙個路由器代表虛擬路由器實現資料報**過程。終端主機將它們各自的資料報**到該虛擬路由器上。

負責**資料報的路由器稱之為活動路由器(active router)。一旦主動路由器出現故障,hsrp 將啟用備份路由器(standby routers)取代主動路由器。hsrp 協議提供了一種決定使用主動路由器還是備份路由器的機制,並指定乙個虛擬的 ip 位址作為網路系統的預設閘道器位址。如果主動路由器出現故障,備份路由器(standby routers)承接主動路由器的所有任務,並且不會導致主機連通中斷現象。

hsrp配置

1、實驗目的

通過本實驗可以掌握

hsrp的工作原理

hsrp的配置

2、拓撲:

在路由器上和三層交換機上配置hsrp。使用路由器模擬pc。

3、實驗步驟

router(config)#hostname r1

r1(config)#line console 0

r1(config-line)#exec-timeout 0 0

r1(config-line)#logging synchronous

r1(config-line)#exit

r1(config)#no ip domain-lookup

r1(config)#inte***ce fastethernet 0/0

r1(config-if)#ip address 192.168.13.1 255.255.255.0

r1(config-if)#no shutdown

r1(config-if)#exit

r1(config)#inte***ce s2/0

r1(config-if)#ip address 192.168.12.1 255.255.255.0

r1(config-if)#no shutdown

r1(config-if)#exit

r1(config)#router rip

r1(config-router)version 2

r1(config-router)no auto-summary

r1(config-router)#network 192.168.12.0

r1(config-router)#network 192.16.13.0

r1(config-router)#passive-inte***ce f0/0 //把f0/0介面設定為被動介面,防止從此介面傳送rip資訊給r3。

r1(config-router)#exit

router>enable

router#configure

configuring from terminal, memory, or network [terminal]?

enter configuration commands, one per line. end with cntl/z.

router(config)#line console 0

router(config-line)#exec-timeout 0 0

router(config-line)#logging synchronous

router(config-line)#exit

router(config)#no ip domain-lookup

router(config)#hostname r2

r2(config)#inte***ce lo0

r2(config-if)#ip address 192.168.2.2 255.255.255.0

r2(config-if)#exit

r2(config)#inte***ce s2/0

r2(config-if)#ip address 192.168.12.2 255.255.255.0

r2(config-if)#no shutdown

r2(config-if)#exit

r2(config)#inte***ce s2/1

r2(config-if)#ip address 192.168.23.2 255.255.255.0

r2(config-if)#no shutdown

r2(config-if)#exit

r2(config)#router rip

*aug 20 19:55:10.071: %link-3-updown: inte***ce serial2/1, changed state to up

r2(config)#router rip

r2(config-router)version 2

r2(config-router)no auto-summary

r2(config-router)#network 192.168.12.0

r2(config-router)#network 192.168.23.0

r2(config-router)#network 192.168.2.0

r2(config-router)#exit

router>enable

router#configure

configuring from terminal, memory, or network [terminal]?

enter configuration commands, one per line. end with cntl/z.

router(config)#line console 0

router(config-line)#exec-timeout 0 0

router(config-line)#logging synchronous

router(config-line)#exit

router(config)#no ip domain-lookup

router(config)#hostname r3

r3(config)#inte***ce fastethernet 0/0

r3(config-if)#ip address 192.168.13.3 255.255.255.0

r3(config-if)#no shutdown

r3(config-if)#exit

r3(config)#inte***ce s2/1

r3(config-if)#ip address 192.168.23.3 255.255.255.0

r3(config-if)#no shutdown

r3(config-if)#exit

r3(config)#router rip

r3(config-router)#network 192.168.13.0

r3(config-router)#network 192.168.23.0

r3(config-router)#passive-inte***ce fastethernet 0/0

r3(config-router)#exit

配置hsrp

r1(config)#int

r1(config)#inte***ce f0/0

r1(config-if)#standby 1 ip 192.168.13.254

//啟用hsrp功能,並設定虛擬ip位址,1 為standby的組號。相同組號的路由器屬於同乙個hsrp組,同乙個組的hsrp路由器虛擬位址必須一致

r1(config-if)#standby 1 priority 120

//配置hsrp的優先順序,預設100.值大的路由器為活動路由器

r1(config-if)#standby 1 preempt

//開啟搶占功能,如果不開啟,就算優先順序權值再高,也不會成為活動路由器

r1(config-if)#standby 1 timers 3 10

//每隔3s傳送一次hello資訊 ,10s沒有收到活動路由器的資訊,則認為活動路由器發生故障。預設值為3和10 ,相同組的該設定必須一致

r1(config-if)#standby 1 authentication md5 key-string cisco

//配置認證密碼,防止非法裝置加入到hsrp組,同乙個組密碼必須一致。

r1(config-if)#exit

r3(config)#inte***ce f0/0

r3(config-if)#standby 1 ip 192.168.13.254

r3(config-if)#standby 1 preempt

r3(config-if)#standby 1 timers 3 10

r3(config-if)#standby 1 authentication md5 key-string cisco

r3(config-if)#exit

//沒有設定優先順序,預設100

4、檢測

是r1介面斷開,檢視現象。

詳解思科私有HSRP協議及配置

一,協議介紹 hsrp hot standbyrouter protocol 熱備份路由器協議 是cisco的專有協議。hsrp把多台路由器組成乙個 熱備份組 形成乙個虛擬路由器。這個組內只有乙個路由器是active 活動 的,並由它來 資料報,如果活動路由器發生了故障,備份路由器將成為活動路由器。...

HSRP 熱備份路由協議配置詳解

一 r1 r2,r3 分別配置相應的ip和路由協議 二 r1的路由模式下 passive inte ce f0 0 把f0 0設定為被動介面模式,是為了防止從該介面傳送rip資訊給r3 r2的路由模式下 passive inte ce f0 0 r3的路由模式下 passive inte ce f0...

HSRP和VRRP的配置

hsrp是思科的私有協議 hsrp的預設優先順序為100,路由器啟動後,根據優先順序決定誰可以成為活躍路由器,優先順序高的將勝出。如果路由器優先順序相同,再比較埠ip位址,ip位址大的成為活路躍路由器。hsrp配置規則 inte ce f0 x 進入物理介面或者svi介面 ip address x ...