在Nexus操作系统上配置HSRP


10

如何在Nexus 7000系列交换机上配置HSRP?

我知道IOS中的命令位于接口配置中,例如:

switch-a#config t
switch-a(config)#interface g1/0/1
switch-a(config-if)#ip address 10.1.1.2 255.255.255.0
switch-a(config-if)#standby 10 ip 10.1.1.1
switch-a(config-if)#standby 10 priority 110
switch-a(config-if)#standby 10 preempt

当我在Nexus OS中配置接口时,待机命令不存在。在接口配置模式下,我的输出“?-ing”似乎没有任何显示……我想念什么?

Answers:


10

在Cisco Nexus交换机上,HSRP的语法实际上是“ HSRP”,而不是“ Standby”。

以我的经验,当您立即知道要处理的冗余协议(HSRP,GLBP或VRRP)时,它使故障排除变得更加容易。

有关Nexus 7000平台上HSRP的更多信息,请参阅 Cisco doc。


首先,请确保已在设备上启用HSRP:

switch-b(config)#feature hsrp

然后进入界面并发出命令“ hsrp groupnumber ”。然后,您将能够像在IOS中一样输入配置。实际上,这将使您进入子配置模式,如下所示:

switch-b(config)#interface Eth1/1 
switch-b(config-if)#ip address 10.1.1.3/24
switch-b(config-if)#hsrp 10
switch-b(config-if-hsrp)#preempt
switch-b(config-if-hsrp)#priority 90
switch-b(config-if-hsrp)#ip 10.1.1.1

不要忘记“不关闭”界面,但是那样就可以了!


另外,我才意识到,思科对这些差异很大的书面记录在这里对他们DocWiki。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.