|
PR RPR+ SSO 等切换方式的比较
当前主要有HSA,RPR,RPR+,SSO四种冗余模式,HSA模式太老现在已经少用了和RPR模式差不多。RPR和RPR+的区别是:RPR模式的Standby 引擎板是半初始化的。当主控板失效后, Standby 引擎板接管主控GRP板再读取并加载配置文件,同时还会重启所有板卡;而RPR+模式是完全初始化的,所有配置文件会随Standby 引擎板的启动而同步,当Standby 引擎接管主控板的任务后并不需要重启所有板卡。所以RPR+比RPR模式具有更高的冗余性能。而SSO冗余模式比是在RPR+的基础上增加了对线卡,各种协议,以及一些其他应用的同步支持,真正实现了“热备份”功能。
1、native ios支持
Release 12.1(13)E and later releases support supervisor engine redundancy with Route Processor Redundancy (RPR) and Route Processor Redundancy Plus (RPR+). This chapter describes how to configure supervisor engine redundancy with RPR and RPR+.
2、配置时候需要两个引擎需要有一样的IOS,一样的硬件
Native with RPR and RPR+
要求版本12.1(13)E或更高。
Router# configure terminal
Enter configuration commands, one per line.
End with CNTL/Z.
Router(config)# redundancy
Router(config-red)# mode rpr-plus
Router(config-red)# ^Z
Router# show redundancy states
重新启动默认的自动同步:
Router(config)# redundancy
Router(config-red)# main-cpu
Router(config-r-mc)# auto-sync standard
Router(config-r-mc)# auto-sync bootvar
Router(config-r-mc)# end
Router# copy running-config startup-config
关闭自动同步,只打开配置active超级引擎寄存器的自动同步
Router(config)# redundancy
Router(config-red)# main-cpu
Router(config-r-mc)# no auto-sync standard
Router(config-r-mc)# auto-sync config-register
Router(config-r-mc)# end
Router# copy running-config startup-config
显示冗余状态:
Router# show redundancy states
This example 如何perform FSU:
Router# config terminal
Router(config)# config-register 0x2
Router(config)# boot system flash slot0: c6sup22-sv-mz.121-11.E
Router# copy running-config start-config
Router# hw-module reset
Router# redundancy force-switchover ----------------强行切换 |
|