高可用性網絡鏈路的應用

今天爲你們介紹三種經常使用的高可用性鏈路:浮動路由、備份中心、鏈路捆綁。
第一種:浮動路由
1》浮動路由簡介:
浮動靜態路由是一種特殊的靜態路由,經過配置一個比主路由的管理距離更大的靜態路由,保證網絡中主路由失效的狀況下,提供備份路由。但在主路由存在的狀況下它不會出如今路由表中。浮動靜態路由主要用於拔號備份.
靜態路由的用處是當以太鏈路優先選擇,當以太鏈路出現故障的時候,選用串行鏈路,而在以太鏈路恢復後,再優先選以太鏈路。所以只要改變串行鏈路的管理距離。
2》試驗拓撲圖:
clip_p_w_picpath002
3》浮動路由配置方法:
【R1路由配置信息】
【配置接口IP地址等相關信息】
[Router]SYSNA R1
[R1]int s0
[R1-Serial0]ip add 192.168.10.1 24
[R1-Serial0]int s1
[R1-Serial1]ip add 192.168.20.1 24
[R1]int e0
[R1-Ethernet0]ip add 192.168.1.254 24
【配置ospf路由協議與靜態路由協議】
[R1]ospf enable【啓用ospf】
[R1-ospf]quit
[R1]int e0 【接口上啓用ospf】
[R1-Ethernet0]ospf enable area 0
[R1-Ethernet0]int s0
[R1-Serial0]ospf enable area 0
[R1-Serial0]quit
[R1]ip route-static 192.168.2.0 24 192.168.20.2【靜態路由】
【R2路由配置信息】
【配置接口ip地址等相關信息】
[R2]int e0
[R2-Ethernet0]ip add 192.168.2.254 24
[R2-Ethernet0]int s0
[R2-Serial0]ip add 192.168.10.2 24
[R2-Serial0]int s1
[R2-Serial1]ip add 192.168.20.2 24
【配置路由協議】
[R2]ospf enable【啓用ospf】
[R2-ospf]quit
[R2]int e0
[R2-Ethernet0]ospf enable area 0【在接口上啓用ospf】
[R2-Ethernet0]int s0
[R2-Serial0]ospf enable area 0
[R2-Serial0]quit
[R2]ip route-static 192.168.1.0 24 192.168.20.1【配置靜態路由】
[R2]int e0
[R2-Ethernet0]ip add 192.168.2.254 24
[R2-Ethernet0]undo shut
4》連通性測試
R1上路由表
clip_p_w_picpath004
斷開s0接口
clip_p_w_picpath006
第二種:備份中心standby interface
1》備份中心簡介:
它使網絡具有高可用性,具備備份功能。任何接口均可以做爲備份接口,或者主接口。並且對一個主接口,能夠爲它提供多個備份接口。備份中心支持備份負載分擔功能。當備份鏈中全部活動接口的流量達到設定的門限上限時,路由器啓動一個優先級最高的可用備用接口,同主接口一塊兒進行負載分擔;當備份鏈中全部活動接口的流量小於設定的門限下限時,路由器關閉一個優先級別最低的備用接口。
2》試驗拓撲圖:
clip_p_w_picpath007
3》備份中心配置方法
[R1]int s0
[R1-Serial0]ip add 192.168.10.1 24【配置地址信息】
[R1-Serial0]int s1【配置接口ip地址信息】
[R1-Serial1]ip add 192.168.20.1 24
[R1]int e0
[R1-Ethernet0]ip add 192.168.1.254 24
[R1]ip route-static 192.168.2.0 24 192.168.10.2 【配置靜態ip地址】
[R1]ip route-static 192.168.2.0 24 192.168.20.2【配置靜態ip地址】
[R1]int s0【進入接口S0】
[R1-Serial0]standby interface s1【聲明s1爲s0接口的備份接口】
[R1-Serial0]standby timer enable-delay 5【設置從主接口轉到備份接口的確認時間爲5秒鐘】
[R1-Serial0]standby timer disable-delay 5【設置從備份接口轉到主接口的確認時間爲5秒鐘】
[R1-Serial0]quit
【R2路由配置信息】
[R2]int e0
[R2-Ethernet0]ip add 192.168.2.254 24
[R2-Ethernet0]int s0
[R2-Serial0]ip add 192.168.10.2 24
[R2-Serial0]int s1
[R2-Serial1]ip add 192.168.20.2 24
[R2]ip route-static 192.168.1.0 24 192.168.10.1
[R2]ip route-static 192.168.1.0 24 192.168.20.1
[R2]int s0 【進入主接口】
[R2-Serial0]standby interface s1【聲明備用接口爲s1】
[R2-Serial0]standby timer enable-delay 5【設置從主接口轉到備份接口的確認時間爲5秒鐘】
[R2-Serial0]standby timer disable-delay 5【設置從備份接口轉到主接口的確認時間爲5秒鐘】
[R2-Serial0]quit
4》連通性測試:
R1路由表
clip_p_w_picpath009
斷開S0
clip_p_w_picpath011
第三種:ppp鏈路捆綁
1》鏈路捆綁簡介
爲了增長帶寬,能夠將多個PPP 鏈路捆綁使用,稱爲MultiLink PPP,簡稱MP。MP 會將報文分片(小於最小分片包長時不分片)後,從MP 鏈路下的多個PPP 通道發送到PPP 對端,對端將這些分片組裝起來遞給網絡層。
2》試驗拓撲圖:
clip_p_w_picpath013
3》鏈路捆綁配置信息
[R1]int e0
[R1-Ethernet0]ip add 192.168.1.254 24【配置接口的IP地址信息】
[R1]int virtual-template 1【建立虛擬鏈路接口vir 1】
[R1-Virtual-Template1]ip add 192.168.100.1 24【爲虛擬鏈路接口配置IP地址】
[R1-Virtual-Template1]int s0【進入接口S0】
[R1-Serial0]ppp mp int virtual-template 1【將s0捆綁到虛擬鏈路中】
[R1-Serial0]int s1【進入s1接口】
[R1-Serial1]ppp mp int virtual-template 1【將s1捆綁到虛擬鏈路中】
[R1-Serial0]int s1 【進入接口S1】
[R1-Serial1]ppp mp【在接口上啓動多鏈路捆綁】
[R1-Serial1]int s0【進入接口S0】
[R1-Serial0]ppp mp【在該接口上啓動鏈路捆綁】
[R1]ip route 192.168.2.0 24 192.168.100.2【配置靜態路由】
【R2路由器配置信息】
[R2]int e0
[R2-Ethernet0]ip add 192.168.2.254 24【配置ip地址等相關信息】
[R2]int virtual-template 1【建立虛擬捆綁鏈路vir1】
[R2-Virtual-Template1]ip add 192.168.100.2 24
[R2-Virtual-Template1]int s0【進入接口S0】
[R2-Serial0]ppp mp int virtual-template 1【在該接口上啓動虛鏈路捆綁】
[R2-Serial0]int s1
[R2-Serial1]ppp mp int virtual-template 1
[R2-Serial0]int s1
[R2-Serial1]ppp mp【在接口s1上啓動虛鏈路捆綁】
[R2-Serial1]int s0
[R2-Serial0]ppp mp
[R2]ip route 192.168.1.0 24 192.168.100.1
4》連通性測試:
測試pc1與pc2之間的連通性
clip_p_w_picpath015
斷開s0
clip_p_w_picpath017
相關文章
相關標籤/搜索