Hi.

We are setting two hosts to be our high availability gateway to our up streams 
providers.
Since only one host will have a established BGP connection, I'm trying to setup 
a iBGP session between the gateways, to send the
learned routes from the active to the passive gateway.
Also the same router-id has to be used toward the upstream routers

I configured the BGP daemon this way, with the upstream routers it worked fine 
but the iBGP session won't get up, because the same
router-id is used on both hosts.

Facing this issue I did the following configuration at the Quagga BGP deamon on 
both gateways.

Gateway rjgw-01 

bgp multiple-instance
!
router bgp 65001
 bgp router-id 192.168.2.111
 network 172.31.198.0/24
 neighbor 172.31.2.199 remote-as 65001
!
router bgp 65002 view 1
 bgp router-id 192.168.2.197
 neighbor 192.168.2.1 remote-as 23289
 neighbor 192.168.2.1 passive
!


Gateway rjgw-02 BGP

bgp multiple-instance
!
router bgp 65001
 bgp router-id 192.168.2.110
 network 172.31.199.0/24
 neighbor 172.31.2.198 remote-as 65001
!
router bgp 65002 view 1
 bgp router-id 192.168.2.197
 neighbor 192.168.2.1 remote-as 23289
 neighbor 192.168.2.1 passive
!

With the above configuration, both BGP session are up but the routes learned 
from the "view 1" session are not added to the kernel
and so, they are not sent to the other node.

Is there another way I can achieve the wanted behavior working?
Am I missing something?
Please, can someone give any clues about solving this issue?

Regards,
Carlos Xavier.
 


_______________________________________________
Quagga-users mailing list
[email protected]
https://lists.quagga.net/mailman/listinfo/quagga-users

Reply via email to