我有3个网络192.24.0.0/21 - 192.24.8.0/22 - 192.24.16.0/20,我需要聚合这些地址,我计算出合适的地址是192.24.0.0/19,现在我想模拟所有的数据包,所以我已经配置了三个路由器,但是我不知道如何配置一个接收聚合地址的路由器,我尝试了:
## first router ##
Cambridge(config)#interface FastEthernet0/0
Cambridge(config-if)#ip addr 192.24.7.1 255.255.248.0
## second router ##
Edimbourg(config)#dfinterface fastethernet 1/0
Edimbourg(config-if)#ip addr 192.24.11.1 255.255.252.0
## third router ##
Oxford(config)#interface FastEthernet1/1
Oxford(config-if)#ip address 192.24.31.1 255.255.240.0
## Main router ##
Router(config)#route bgp 1
Router(config-router)#aggregate-address 192.24.0.0 255.255.224.0
^
% Invalid input detected at '^' marker.
但是它会在CLI上生成一个错误。
发布于 2017-01-03 02:25:45
数据包跟踪器7.0似乎不包括总结能力。下面是我在7.0版的任何可用路由器上唯一可用的命令,包括那些运行模拟版本15.x的命令:
Router(config-router)#?
bgp BGP specific commands
distance Define an administrative distance
exit Exit from routing protocol configuration mode
neighbor Specify a neighbor router
network Specify a network to announce via BGP
no Negate a command or set its defaults
redistribute Redistribute information from another routing protocol
synchronization Perform IGP synchronization
timers Adjust routing timers
Router(config-router)#
https://networkengineering.stackexchange.com/questions/37720
复制相似问题