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 neighbor 10.0.0.2 remote-as 200 no auto-summaryAnunciamos todas las rutas por BGP al vecino, y vemos como las recibe R2
R2#sh ip bgp BGP table version is 5, local router ID is 10.0.0.2 Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, r RIB-failure, S Stale Origin codes: i - IGP, e - EGP, ? - incomplete Network Next Hop Metric LocPrf Weight Path *> 192.168.0.0 10.0.0.1 0 0 100 i *> 192.168.1.0 10.0.0.1 0 0 100 i *> 192.168.2.0 10.0.0.1 0 0 100 i *> 192.168.3.0 10.0.0.1 0 0 100 iAhora en R1 vamos a tratar de sumarizar las rutas en una red 192.168.0.0/22 para ello dentro de router bgp 100 haremos lo siguiente
R1(config-router)#aggregate-address 192.168.0.0 255.255.252.0Volvemos a R2 a ver como ve la ruta sumarizada
R2#sh ip bgp BGP table version is 6, local router ID is 10.0.0.2 Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, r RIB-failure, S Stale Origin codes: i - IGP, e - EGP, ? - incomplete Network Next Hop Metric LocPrf Weight Path *> 192.168.0.0 10.0.0.1 0 0 100 i *> 192.168.0.0/22 10.0.0.1 0 0 100 i *> 192.168.1.0 10.0.0.1 0 0 100 i *> 192.168.2.0 10.0.0.1 0 0 100 i *> 192.168.3.0 10.0.0.1 0 0 100 iNo hemos ganado nada puesto que en la tabla de rutas se inserta la ruta con máscara más grande y la 24 es más grande que la 22, luego tenemos que eliminar las rutas /24 redundadas, para ello modificaremos la manera de sumarizar en R1 así
R1(config-router)#aggregate-address 192.168.0.0 255.255.252.0 summary-onlyY volvemos a comprobar que queda en R2
R2#sh ip bgp BGP table version is 10, local router ID is 10.0.0.2 Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, r RIB-failure, S Stale Origin codes: i - IGP, e - EGP, ? - incomplete Network Next Hop Metric LocPrf Weight Path *> 192.168.0.0/22 10.0.0.1 0 0 100 i
No hay comentarios:
Publicar un comentario