Routes EBGP advertised to IBGP neighbors but not reachable (pingable) via non border routers #17554
-
Hello everyone, I do a project for school and I'm learning Route Reflectors but I'm stuck for a while on a issue that I haven't found solutions for it so I come to you. I have created a virtual network where for now there are two AS one principal AS 1 and an other AS 10, I have connected the router R0 GOOGLE (fc00:2142:2::0) of AS 10 to the router R0 (fc00:2142::0) of the AS 1 in EBGP session. The R0 GOOGLE advertises the subnet fc00:2142:2:1::/64 and R0 receives it well and can reach the host behind RO GOOGLE at ipv6 fc00:2142:2:1::2. R0 announces the route to its route reflector R1 (fc00:2142::1) and R3 (fc00:2142::3) but here I focus on R1. R1 chooses the route passing by R0 as it a closest next hop and doing a show bgp I can see the route from the AS 10. My question is why R1 can't ping the host fc00:2142:2:1::2, when doing a traceroute6 I see the connection being stuck when reaching a border routers. So my problem is that all routers border or not receive the route but only the border ones can reach it (ping) ? I'm practically sure that the problem is from R0. I put some logs if it can help and my configs below. Thank you very much for you help, FROM R0 GOOGLE :
FROM R0 :
FROM R1 :
CONFIG R0 GOOGLE :
CONFIG R0 :
CONFIG R1 :
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello I have solved the problem in fact visible routes aren't always reachable (via ping for example). My problem was that AS X knows the routes of AS Y but not AS Y of AS X. So the message was delivered to AS Y but AS Y could not send back response to AS X due to a miss of routes. I have discovered two common practices in bgp to do it :
I'm a visual people so I prefer examples than explanations so example for the blackholes :
And an example for prefix lists :
Sorry I can't post the whole config now just a subset of the project because it's a school project and I want to avoid any issues but I wanted to post the solution. When it'll be finished if it interests someone I can post the whole config. |
Beta Was this translation helpful? Give feedback.
Hello I have solved the problem in fact visible routes aren't always reachable (via ping for example). My problem was that AS X knows the routes of AS Y but not AS Y of AS X. So the message was delivered to AS Y but AS Y could not send back response to AS X due to a miss of routes.
I have discovered two common practices in bgp to do it :
I'm a visual people so I prefer examples than explanations so example for the b…