High-Availability Network Components
availability 英 [əˌveɪlə'bɪləti] n. 可利用性;可利
redundancy [rɪˈdʌndənsi] n.冗余;多余;
processor 英 [ˈprəʊsesə(r)] n. 处理器
guidelines 英 [ˈgaɪdlaɪnz] n. 指导方针;
restriction 英 [rɪˈstrɪkʃn] n. 限制规定;
maintain 英 [meɪnˈteɪn] v. 维持;保持;
interrupt 英 [ˌɪntəˈrʌpt] v. 打断;
combined 英 [kəmˈbaɪnd] adj. 联合的;
redirects 英 [ˌriːdəˈrekts] 重定向
硬件冗余备份
主引擎和备份引擎配置要尽量保持相同
core dump :核心崩溃。
RPR 配置 超级引擎切换
30s恢复正常
新款设备:SSO NSF 2秒左右
电源冗余备份
设备协议冗余备份HSRP
不光有vip还有vMAC地址
优先级高成为主用,优先级如果一样看本身接口的IP地址。优先级0-255。
组播地址:224.0.0.2
HSRP States
新加入优先级高的交换机不会抢占active 会抢占standby。
active不需要监控任何交换机。
standby监控active 3次没有收到hello报文 9s,转变为active。
Listen中拥有最高优先级的转变为standby。
例:配置SW1和SW2上的hsrp,我们通过优先级控制SW1为主设备,SW2为备用设备
SW1:
en
conf t
Switch(config)#interface vlan 10
Switch(config-if)#standby 1 ip 192.168.1.254
Switch(config-if)#standby 1 priority 200
Switch(config-if)#standby 1 preempt
SW2:
en
conf t
Switch(config)#interface vlan 10
Switch(config-if)#standby 1 ip 192.168.1.254
Switch(config-if)#standby 1 priority 195
Switch(config-if)#standby 1 preempt
此时查看hsrp协议状态:
SW1:
Switch#show standby brief
P indicates configured to preempt.
|
Interface Grp Pri P State Active Standby Virtual IP
Vl10 1 200 P Active local 192.168.1.252 192.168.1.254
Switch#
SW2:
Switch#show standby brief
P indicates configured to preempt.
|
Interface Grp Pri P State Active Standby Virtual IP
Vl10 1 195 P Standby 192.168.1.253 local 192.168.1.254
Switch#
可以看到由于SW1优先级为200,高于SW2的195的优先级,所以SW1是active的,作为主设备;SW2是standby的。
,