我想在我的核心交换机上配置HSRPv2双堆栈。
信息:
以下是拓扑结构:

问题:
我如何为IPv4和IPv6配置IPv4?每个家庭必须使用不同的待机号码吗?在Core0和Core1之间应该配置哪个连接?正常的路由端口还是中继线?
当我为一个SVI配置HSRP时,另一个路由器如何知道他应该参与这个HSRP过程?仅仅通过配置相同的备用标识--另一个路由器?
发布于 2018-02-19 15:58:01
我如何为IPv4和IPv6配置IPv4?
我不知道您的IP地址结构,但我只使用172.26.0.0/24作为示例和一个随机的IPv6地址(请记住这只是基本配置):
Core0# configure terminal
Core0(config)# interface Vlan2
Core0(config-if)# standby version 2
Core0(config-if)# ip address 172.26.0.2 255.255.255.0
Core0(config-if)# ipv6 address 2001:DB8:CAFE:2100::BAD1:1010/64
Core0(config-if)# standby 1 ip 172.26.0.1
Core0(config-if)# standby 1 priority 105
Core0(config-if)# standby 1 preempt
Core0(config-if)# standby 2 ipv6 autoconfig
Core0(config-if)# standby 2 priority 105
Core0(config-if)# standby 2 preempt
Core0(config-if)# end
Core1# configure terminal
Core1(config)# interface Vlan2
Core1(config-if)# standby version 2
Core1(config-if)# ip address 172.26.0.3 255.255.255.0
Core1(config-if)# ipv6 address 2001:DB8:CAFE:2100::BAD1:1020/64
Core1(config-if)# standby 1 ip 172.26.0.1
Core1(config-if)# standby 1 preempt
Core1(config-if)# standby 2 ipv6 autoconfig
Core1(config-if)# standby 2 preempt
Core1(config-if)# end每个家庭必须使用不同的待机号码吗?
是的,对于每个地址家族,IPv4备用组号必须与IPv6组不同,否则将无法工作。
在Core0和Core1之间应该配置哪个连接?正常的路由端口还是中继线?
一个正常的主干将足以使HSRP工作。
当我为一个SVI配置HSRP时,另一个路由器如何知道他应该参与这个HSRP过程?仅仅通过配置相同的备用标识--另一个路由器?
我在这里解释过:HSRP -具有相同待机组的路由器如何找到彼此?
https://networkengineering.stackexchange.com/questions/48425
复制相似问题