Enrutamiento dinámico.
Hola amigos.
actualizando mi OS de 12.7 a 12.10 me di cuenta que el enrutamiento BGP migro a FRR. (antes quagga).. eh tratado de migrar los comandos.. que deberían ser los mismos pero no logra ver mis redes..
quagga
!Configure BGP Routing Daemon
router bgp 65501
bgp router-id 63.63.63.63
!Set Neighbor Properties
neighbor 172.67.100.1 remote-as 65000
neighbor 172.67.100.1 default-originate
neighbor 172.67.100.1 weight 1000
neighbor 172.67.100.9 remote-as 65000
neighbor 172.67.100.9 default-originate
neighbor 172.67.100.9 weight 500
!Redistribute Routes to BGP
redistribute static
al pasar a FRR la redistribute static no va?
saludos
0
Sign In to comment.
Comments
Hi @KakoFagalde_11
The only thing I specifically see wrong is "quagga" and your first command has router and bgp flipped.
Try:
!Configure BGP
router bgp 65501
bgp router-id 63.63.63.63
!Set Neighbor Properties
neighbor 172.67.100.1 remote-as 65000
neighbor 172.67.100.1 default-originate
neighbor 172.67.100.1 weight 1000
neighbor 172.67.100.9 remote-as 65000
neighbor 172.67.100.9 default-originate
neighbor 172.67.100.9 weight 500
!Redistribute Routes to BGP
redistribute static
You can see a list of possible commands and their correct format here:
(BGP Commands (FRR))
https://www.watchguard.com/help/docs/help-center/en-US/Content/en-US/Fireware/dynamicrouting/bgp_commands_frr.html
If you continue to have an issue I'd suggest opening a support case so that we can help debug this with you.
-James Carson
WatchGuard Customer Support