2.5 基于 IPv4 的 VRRP 的典型配置示例 在下图所示的连接中,在路由设备R1 与 R2 上配置了 VRRP 备份组来为内部网段 192.168.201.0 /24 提供 VRRP 服务,而在路由设备 R3 上没有配置 VRRP 而只是配置了普通路由功能。下面 的配置中将只给出路由设备 R1 与 R2 的 VRRP 相关配置。 建立 VRRP 环境的网络连接示意图 在下面的配置示例中,路由设备 R3 的配置是不变的。下面给出路由设备R3 的配置: ! ! hostname "R3" ! ! ! interface FastEthernet 0/0 /* “no switchport”命令只有在交换机上才需要 */ no switchport ip address 192.168.12.217 255.255.255.0 ! interface GigabitEthernet 1/1 /* “no switchport”命令只有在交换机上才需要 */ no switchport ip address 60.154.101.5 255.255.255.0 ! interface GigabitEthernet 2/1
/* “no switchport”命令只有在交换机上才需要 */ no switchport ip address 202.101.90.61 255.255.255.0 ! router ospf network | 202.101.90.0 | 0.0.0.255 | area | 10 | network | 192.168.12.0 | 0.0.0.255 | area | 10 | network | 60.154.101.0 | 0.0.0.255 | area | 10 | ! | | ! | ! | end |
|