Cisco

Cisco - 重新分配前綴

  • June 5, 2013

我有 2 個 C 類 IP:xx.xx.xx.0/23。

我必須在 BGP 協議上宣傳它。我的配置是:

ip route xx.xx.xx.0 255.255.254.0 Null0

!訪問列表 50 允許 xx.xx.xx.0 0.0.1.255

route-map RIPE permit 10

match ip address 50

set origin igp

router bgp YYYYY

network xx.xx.xx.0 mask 255.255.254.0

redistribute static route-map RIPE

….

no auto-summary

好的,這可行,但我需要將前綴的子網移動到網關到我的網路中:

ip 路由 xx.xx.xx.8 255.255.255.248 xx.xx.xx.123

ip 路由 xx.xx.xx.16 255.255.255.240 xx.xx.xx.122

如何防止分發 /29 和 /28 ?我應該只分發 /23

RO:sh ip bgp route-map RIPE

BGP 表版本為 9203492,本地路由器 ID 為 192.168.14.1

狀態碼:s 抑制,d 阻尼,h 歷史,* 有效,> 最佳,i - 內部,

r RIB-failure,S過時

的來原始碼:i - IGP、e - EGP、?- 不完整

的網路下一跳度量 LocPrf 權重路徑

*> xx.xx.xx.0/23 0.0.0.0 0 32768 i

*> xx.xx.xx.8/29 xx.xx.xx.123 0 32768 i

*> xx .xx.xx.16/28 xx.xx.xx.132 0 32768 我

使用前綴列表而不是直接 ACL。查看此描述,將其設置為 /23 的完全匹配,然後在您的路線圖中匹配它。不允許使用較長的前綴。

引用自:https://serverfault.com/questions/513561