Replies: 1 comment
-
because it must be the best path. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
frr version 9.1-dev-MyOwnFRRVersion
RA and RB are in AS 61, PC's network is 192.168.110.3
RA ====192.168.110.1 and 172.16.0.1;
RB ====192.168.110.2 and 172.16.0.1.
RC and RD are in AS 62, PC's network is 192.168.220.3
RC ====192.168.220.1 and 172.16.0.3;
RD ====192.168.220.2 and 172.16.0.4.
192.168.110.0/24 and 192.168.220.0/24 are dhcp.
RA
router bgp 61
bgp route-id 172.16.0.1
neighbor 172.16.0.3 remote-as 62
neighbor 172.16.0.4 remote-as 62
address-family ipv4 unicast
network 192.168.110.0/24
exit-address-family
bgp log-neighbor-changes ->all routes has
no bgp ebgp-requires-policy ->all routes has
no bgp network import-check ->all routes has
bgp fast-convergence ->all routes has
RB
router bgp 61
bgp route-id 172.16.0.2
neighbor 172.16.0.3 remote-as 62
neighbor 172.16.0.4 remote-as 62
address-family ipv4 unicast
network 192.168.110.0/24
exit-address-family
RC
router bgp 62
bgp route-id 172.16.0.3
neighbor 172.16.0.1 remote-as 61
neighbor 172.16.0.2 remote-as 61
address-family ipv4 unicast
network 192.168.220.0/24
exit-address-family
RD
router bgp 62
bgp route-id 172.16.0.4
neighbor 172.16.0.1 remote-as 61
neighbor 172.16.0.2 remote-as 61
address-family ipv4 unicast
network 192.168.220.0/24
exit-address-family
What i want :
But it's:
If the routers restart frr, the actual phenomenon may change, but none of it will achieve what I want.
Beta Was this translation helpful? Give feedback.
All reactions