Queremos que la red 192.168.2.0 no esté sumarizada aunque se suprima con el summary-only. La configuración de R1 será la siguiente
R1#sh run | s bgp router bgp 100 no synchronization bgp log-neighbor-changes network 192.168.0.0 network 192.168.1.0 network 192.168.2.0 network 192.168.3.0 aggregate-address 192.168.0.0 255.255.252.0 summary-only neighbor 10.0.0.2 remote-as 200 no auto-summary
R2 verá una única ruta
R2#sh ip bgp Network Next Hop Metric LocPrf Weight Path *> 192.168.0.0/22 10.0.0.1 0 0 100 i
Ahora crearemos una ACL o un PREFIX-LIST para marcar la ruta que se va a anunciar con su propia máscara más específica
ip access-list standard UNSUPRESS permit 192.168.2.0 0.0.0.255 deny anyAplicaremos esa access-list o prefix-list a un route-map
route-map UNSUPRESS permit 10 match ip address UNSUPRESS
Y aplicaremos el route-map al neighbor
neighbor 10.0.0.2 unsuppress-map UNSUPRESS
Ahora vemos que rutas recibe R2 con la ruta 192.168.2.0/24
R2#sh ip bgp Network Next Hop Metric LocPrf Weight Path *> 192.168.0.0/22 10.0.0.1 0 0 100 i *> 192.168.2.0 10.0.0.1 0 0 100 i
No hay comentarios:
Publicar un comentario