01-21-2024 05:02 AM
Here is the current topology in GNS3:
There's a tunnel in between R3 & R4 for the iBGP, R3 & R5 are eBGP, R4 and R6 are eBGP. R1-R4 are within the OSPF AS 1190. The BGP works, R3 and R4 can detect the other BGPs shown here:
Below is the BGP output for R5 and R6:
And below is the ospf config in R1-R4:
However, R5 couldn't detect R6's AS and vice versa. I tried to ping from R3 to R4's f0/0 and R4 to R3's f0/0, it works, but when pinging R3 to R4's g1/0 and R4 to R3's g1/0, they failed. Then, when pinging from R5 to R3's f0/0 and R6 to R4's f0/0, it works but doesn't work when pinging R5 to R1's f0/0 and R6 to R2's f0/0. Here are the paths drawn out:
Does anyone know what might be the cause of this issue?
Solved! Go to Solution.
01-21-2024 07:04 AM - last edited on 01-23-2024 01:39 AM by Translator
Hi @ss571 ,
The issue is that the eBGP next hops are not known to R3 and R4 (148.92.0.2 is not known to R3 and next hop 148.91.0.2 is not known to R4).
You should add the following commands to R3 and R4:
R3:
neighbor 192.168.0.2 next-hop-self
R4:
neighbor 192.168.0.1 next-hop-self
Regards,
01-21-2024 05:22 AM
Did you config neighbor ebgp multihop?
MHM
01-21-2024 05:50 AM - edited 01-21-2024 05:54 AM
Networks 148.91.0.0 and 148.92.0.0 must be in BGP either advertised or redistributed via connected interfaces.
R5 and r6 cannot ping opposite gig1/0 IPs. You can even try ping r5 to r6 with source IP that is advertised.
Regards, ML
**Please Rate All Helpful Responses **
01-21-2024 07:04 AM - last edited on 01-23-2024 01:39 AM by Translator
Hi @ss571 ,
The issue is that the eBGP next hops are not known to R3 and R4 (148.92.0.2 is not known to R3 and next hop 148.91.0.2 is not known to R4).
You should add the following commands to R3 and R4:
R3:
neighbor 192.168.0.2 next-hop-self
R4:
neighbor 192.168.0.1 next-hop-self
Regards,
01-21-2024 08:22 AM
Thank you for the explanation sir, may I know which protocol do i put these commands under?
01-21-2024 08:40 AM - last edited on 01-23-2024 01:41 AM by Translator
Hi @ss571 ,
They are
bgp
commands. They go under
router bgp 1190
Regards,
01-22-2024 11:41 PM
Thank you very much for everyone's assistance and advice, really appreciate all of your help
01-23-2024 12:24 AM
Ebgp work without ebgp multihop?
MHM
01-23-2024 05:03 AM
You are very welcome @ss571 and thanks for the feedback
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