博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HSPR 协议 虚拟路由器配置
阅读量:5766 次
发布时间:2019-06-18

本文共 2261 字,大约阅读时间需要 7 分钟。

hspf协议,是一中路有容错协议,也叫作备份路由协议。

            sw1                                                             sw2

   

                                        pc

sw1:

Switch>en

Switch#conf t

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#in

Switch(config)#interface fa0/1

Switch(config-if)#sw

Switch(config-if)#switchport mode dynamic desirable

 

Switch(config-if)#

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

Switch(config-if)#switchport mode trunk

 

 

%SYS-5-CONFIG_I: Configured from console by console

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#interface fa0/1

Switch(config-if)#no switchport

Switch(config-if)#

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

 

Switch(config-if)#ip address 192.168.4.2 255.255.255.0

Switch(config-if)#exit

Switch(config)#interface fa0/1

Switch(config-if)#standby priority 200                             //优先级

Switch(config-if)#standby preempt                                  //抢先权

Switch(config-if)#standby ip 192.168.4.4                        //指定虚拟路由

Switch(config-if)#exit

sw2:

Switch>en

Switch#conf t

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#interface fa0/1

Switch(config-if)#switchport mode dynamic desirable

 

Switch(config-if)#

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

 

Switch(config-if)#switchport mode trunk

Switch(config-if)#exit

Switch(config)#interface fa0/1

Switch(config-if)#no switchport

Switch(config-if)#

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

 

Switch(config-if)#ip address 192.168.4.3 255.255.255.0

Switch(config-if)#standby priority 100

Switch(config-if)#standby preempt

Switch(config-if)#standby ip 192.168.4.4

Switch(config-if)#exit

Switch(config)#

 验证:

ping 192.168.4.4

通                               配置正确

不通                           配置错误

转载于:https://www.cnblogs.com/jiaoyou/p/8872222.html

你可能感兴趣的文章
[CareerCup] 1.6 Rotate Image 翻转图像
查看>>
Python中的画图初体验
查看>>
Java程序员的日常 —— 响应式导航Demo
查看>>
objective-c内存管理基础
查看>>
sap关于价值串的说法(转载)
查看>>
Migration to S/4HANA
查看>>
sed 对目录进行操作
查看>>
什么是代码
查看>>
移动端开发单位——rem,动态使用
查看>>
系列文章目录
查看>>
手把手教你如何提高神经网络的性能
查看>>
前端布局原理涉及到的相关概念总结
查看>>
递归调用 VS 循环调用
查看>>
使用sstream读取字符串中的数字(c++)
查看>>
树莓派下实现ngrok自启动
查看>>
javascript静态类型检测工具—Flow
查看>>
MachineLearning-Sklearn——环境搭建
查看>>
node学习之路(二)—— Node.js 连接 MongoDB
查看>>
Goroutine是如何工作的?
查看>>
《深入理解java虚拟机》学习笔记系列——垃圾收集器&内存分配策略
查看>>