分类: 系统运维
2011-10-20 10:57:42
在下面的示例中,显示的是“ip summary-address rip”路由器配置命令与在全局配置模式下配置的自动路由汇总是如何协同工作的。示例中的主网络为10.0.0.0,汇总地址10.2.0.0覆盖自动汇总地址10.0.0.0,所以10.2.0.0会通过Ethernet 1接口进行通告,而10.0.0.0的自动汇总却不能。下面是正确的配置。
【注意】如果启用了水平分割功能,则无论是自动汇总地址,还是接口非自动汇总地址都不能进行通告。
Router(config)# router rip
Router(config-router)# network 10.0.0.0
Router(config-router)# exit
Router(config)# interface ethernet1
Router(config-if)# ip address 10.1.1.1 255.255.255.0
Router(config-if)# ip summary-address rip 10.2.0.0 255.255.0.0
Router(config-if)# no ip split-horizon
Router(config-if)# end
下面的配置是不正确的。示例的本意是通过“ip summary-address rip”命令把两个地址汇总到同一个主网络中。但是,在接口上的每个路由汇总必须有一个唯一的主网络,即使这些汇总地址中有唯一的子网掩码,所以配置是不正确的。
Router(config)# interface Ethernet 1
Router(config-if)# ip summary-address rip 10.1.0.0 255.255.0.0
Router(config-if)# ip summary-address rip 10.2.2.0 255.255.255.0