實驗目的:負載均衡
驗證HSRP的工做原理dom
掌握HSRP的配置ide
測試HSRP的做用測試
實驗環境拓撲圖及要求:spa
要求:3d
一、 路由器A爲HSRP組10 中的備份路由器,組172中的活躍路由器,實現路由器的冗餘備份和負載均衡。blog
二、 路由器B爲HSRP組10 中活躍的路由器,組172中的備份路由器,實現路由器的冗餘備份和負載均衡。接口
三、 各路由器開啓佔先權和端口跟蹤, 實現HSRP的正常工做。圖片
四、 查看路由器A的standby狀態信息,在哪一個備份組是活躍狀態。ip
五、 查看路由器B的standby狀態信息,在哪一個備份組是活躍狀態。
六、 測試正常狀況下跟蹤PC2到PC1的路由信息,將通過路由器(A/B)?
七、 驗證HSRP的佔先權工做。將路由器A的F0/0端口關閉,查看路由器A在備份組172內的狀態信息,狀態爲(備份/活躍)?查看路由器B在備份組172內的狀態信息。狀態爲(備份/活躍)?跟蹤PC2到PC1的路由信息,將通過路由器(A/B)?
八、 驗證HSRP的端口跟蹤工做。將路由器A的F0/0端口關閉,查看路由器A在備份組172內的狀態信息,狀態爲(備份/活躍)?優先級變化成多少?查看路由器B在備份組172內的狀態信息。狀態爲(備份/活躍)?優先級變化成多少?跟蹤PC2到PC1的路由信息,將通過路由器(A/B)?
實驗步驟:【必寫】
分類寫出你的實驗進行中的步驟,可用文字或圖片加水印標記
配置文檔:
(這裏交換機能夠不作配置。不過我先用了交換機的管理IP實驗了下,因此交換機上也配置了。)
基本思路:
對於路由器:
1:命名
2:配置端口IP地址
3:配置相應端口爲相應的HSRP組
4:配置相應端口的HSRP優先級
5:配置相應端口占有權
6:配置相應的端口跟蹤
對於二層交換機:
1:命名
2:配置網關
對於PC:(這裏用路由器當PC用)
1:命名
2:禁用路由功能
3:配置IP地址
查看命令:
1:查看HSRP的配置:
show standby
2:顯示HSRP路由器的狀態
show standby brief
--------------------------------------------------------------
RA:
en
conf t
host RA
no ip domain-lo
int f1/0
ip add 10.10.10.1 255.255.255.0 //配置端口IP地址
no sh //激活端口
standby 10 ip 10.10.10.254 //配置加入備份組10,並指向網關地址
standby 10 priority 110 //配置這個接口在10組的優先級
standby 10 preempt //配置這個接口在10組的佔先權
exit
int f0/0
ip add 172.16.10.1 255.255.255.0
no sh
standby 172 ip 172.16.10.254
standby 172 priority 120
standby 172 preempt
end
RA:
en
conf t
int f0/0
standby 172 track fast 1/0 100 //配置在該接口的172組的跟蹤端口和減小多少優先級數
sh
-------------------------------------------------------------------
RB:
en
conf t
host RB
no ip domain-lo
int f1/0
ip add 10.10.10.2 255.255.255.0
no sh
standby 10 ip 10.10.10.254
standby 10 priority 120
standby 10 preempt
exit
int f0/0
ip add 172.16.10.2 255.255.255.0
no sh
standby 172 ip 172.16.10.254
standby 172 priority 110
standby 172 preempt
end
RB:
en
conf t
int f1/0
standby 10 track fast 0/0 100
-------------------------------------------------------------------
SWA:
en
conf t
host SWA
no ip routing //禁用路由功能
int vlan 1 //配置vlan1的管理IP
ip add 10.10.10.11 255.255.255.0
no sh
exit
ip default-gateway 10.10.10.254 //配置網關地址
end
--------------------------------------------------------------------
SWB:
en
conf t
host SWB
no ip routing
int vlan 1
ip add 172.16.10.11 255.255.255.0
no sh
exit
ip default-gateway 172.16.10.254
end
--------------------------------------------------------------------
PC1:
en
conf t
host PC1
no ip domain-lo
no ip routing
int f0/0
ip add 10.10.10.10 255.255.255.0
no sh
exit
ip default-gateway 10.10.10.254
end
----------------------------------------------------------------------
PC2:
en
conf t
host PC2
no ip domain-lo
no ip routing
int f0/0
ip add 172.16.10.10 255.255.255.0
no sh
exit
ip default-gateway 172.16.10.254
end
----------------------------------------------------------------------