10-30-2023 10:15 AM
hola comunidad, aplique por error el siguiente comando en mi ASR1002 (Cisco IOS XE Software, Version 16.05.01b) "neighbor 10.99.2.18 activate" y me cambio la vista en la saluda del comando "sh run", de tal manera que no muesta los prefix-list ni los route-map para ningun vecino perteneciente al proceso bgp del router, los muestra como si tuviera address family ipv4 activado pero tampoco muestra el listado en address family, se podra volver atras el efecto del comando que aplique por error? borre el neighbor y lo volvi a crear tambien ejecute el comando " no neighbor 10.99.2.18 activate" y no volvio a mostrarse la info como antes.
Antes
router bgp 65000
bgp log-neighbor-changes
network 172.30.246.2 mask 255.255.255.255
redistribute connected
redistribute static
neighbor 10.99.2.18 remote-as 00000
neighbor 10.99.2.18 description cliente1
neighbor 10.99.2.18 ebgp-multihop 255
neighbor 10.99.2.18 next-hop-self
neighbor 10.99.2.18 soft-reconfiguration inbound
neighbor 10.99.2.18 prefix-list cliente1 out
neighbor 10.99.2.18 route-map cliente1 in
neighbor 10.111.0.130 remote-as 00000
neighbor 10.111.0.130 description cliente2
neighbor 10.111.0.130 soft-reconfiguration inbound
neighbor 10.111.0.130 route-map cliente2 in
neighbor 10.111.0.130 route-map cliente2 out
neighbor 10.111.0.178 remote-as 00000
neighbor 10.111.0.178 description cliente3
neighbor 10.111.0.178 soft-reconfiguration inbound
neighbor 10.111.0.178 route-map cliente3 in
neighbor 10.111.0.178 route-map cliente3 out
Ahora
router bgp 65000
bgp log-neighbor-changes
neighbor 10.99.2.18 remote-as 00000
neighbor 10.99.2.18 description cliente1
neighbor 10.99.2.18 ebgp-multihop 255
neighbor 10.111.0.130 remote-as 00000
neighbor 10.111.0.130 description cliente2
neighbor 10.111.0.178 remote-as 00000
neighbor 10.111.0.178 description cliente3
Es como si tuviera implementado address family pero no vi forma de volver atras.
Les agradezco de antemano su ayuda!
Solved! Go to Solution.
10-30-2023 11:59 AM
Hola @JJQUINTERO ,
Desgraciadamente, no hay una manera sencilla de revertir la configuración una vez que se hace la migración al modo MP-BGP.
Podrías hacer un "no router bgp 65000" y volver a aplicar la configuración original.
Saludos,
10-30-2023 10:57 AM - edited 10-30-2023 11:11 AM
Holo, buenas tardes @JJQUINTERO ,
El comando "neighbor 10.99.2.18 activate" activa el modo de configuracíon MP-BGP, lo que significa que tienes que configurar ciertos comandos en el modo BGP global y otros comandos abajo del nivel "address-family ipv4 unicast". La configuracíon debria ser así:
router bgp 65000
bgp log-neighbor-changes
neighbor 10.99.2.18 remote-as 00000
neighbor 10.99.2.18 description cliente1
neighbor 10.99.2.18 ebgp-multihop 255
neighbor 10.111.0.130 remote-as 00000
neighbor 10.111.0.130 description cliente2
neighbor 10.111.0.178 remote-as 00000
neighbor 10.111.0.178 description cliente3
!
address-family ipv4
network 172.30.246.2 mask 255.255.255.255
redistribute connected
redistribute static
neighbor 10.99.2.18 activate
neighbor 10.99.2.18 next-hop-self
neighbor 10.99.2.18 soft-reconfiguration inbound
neighbor 10.99.2.18 prefix-list cliente1 out
neighbor 10.99.2.18 route-map cliente1 in
neighbor 10.111.0.130 activate
neighbor 10.111.0.130 soft-reconfiguration inbound
neighbor 10.111.0.130 route-map cliente2 in
neighbor 10.111.0.130 route-map cliente2 out
neighbor 10.111.0.178 activate
neighbor 10.111.0.178 soft-reconfiguration inbound
neighbor 10.111.0.178 route-map cliente3 in
neighbor 10.111.0.178 route-map cliente3 out
exit-address-family
Saludos,
10-30-2023 11:44 AM - edited 10-30-2023 11:46 AM
Hola harol,
gracias por tu amable respuesta, mi consulta iba orientada a revertir el efecto del comando "neighbor 10.99.2.18 activate", es decir que vuelva a mostra la informacion a como lo mostraba antes de activar el modo de configuracíon MP-BGP al que haces referencia.
10-30-2023 11:59 AM
Hola @JJQUINTERO ,
Desgraciadamente, no hay una manera sencilla de revertir la configuración una vez que se hace la migración al modo MP-BGP.
Podrías hacer un "no router bgp 65000" y volver a aplicar la configuración original.
Saludos,
10-30-2023 12:24 PM
Gracias por tus respuestas!
10-30-2023 12:31 PM
Por nada @JJQUINTERO y gracias por la retroalimentación
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide