Utilizaremos el siguiente ejemplo
El valor weight en BGP es propietario de Cisco Systems y es significativo solo localmente en el router, no se propaga en el dominio BGP.
Vamos a ver como aprende las rutas
La config de R1
R1#sh run | s bgp router bgp 100 no synchronization bgp log-neighbor-changes neighbor 10.0.0.2 remote-as 200 neighbor 10.0.0.6 remote-as 300 no auto-summary
La config de R2
R2#sh run | s bgp router bgp 200 no synchronization bgp log-neighbor-changes redistribute static neighbor 10.0.0.1 remote-as 100 default-information originate no auto-summary
La config de R3
R3#sh run | s bgp router bgp 300 no synchronization bgp log-neighbor-changes redistribute static neighbor 10.0.0.5 remote-as 100 default-information originate no auto-summary
Vamos a configurar nuestro route R1 para que aumente el valor Weith de las rutas aprendidas por R2 para que actue como enlace principal y R3 como enlace de backup
R1#sh run | s bgp router bgp 100 no synchronization bgp log-neighbor-changes neighbor 10.0.0.2 remote-as 200 neighbor 10.0.0.2 weight 100 neighbor 10.0.0.6 remote-as 300 neighbor 10.0.0.6 weight 50 no auto-summary
Forzamos un soft reconfiguracion y vemos como quedan las rutas aprendias
R1#clear ip bgp * soft in R1#sh ip bgp Network Next Hop Metric LocPrf Weight Path * 0.0.0.0 10.0.0.6 0 50 300 ? *> 10.0.0.2 0 100 200 ?El valor de Weight por defecto es 0 para todas las rutas aprendidas y 32768 para todas las rutas localmente anunciadas, a mayor valor más prioridad para que sea la ruta desada.
No hay comentarios:
Publicar un comentario