mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-04 20:18:54 +00:00

Fix and adjust the topotest post the fix for route selection with AIGP. When there are multiple IGP domains (OSPF in this case), the nexthop for a BGP route with the AIGP attribute must be resolved in its own IGP domain. The changes in r2/bgpd.conf and r3/bgpd.conf are needed as incorrect IGP metrics are received from NHT for the recursive nexthops. Once the issue is resolved, the changes can be reverted. Signed-off-by: Enke Chen <enchen@paloaltonetworks.com>
18 lines
517 B
Plaintext
18 lines
517 B
Plaintext
router bgp 65001
|
|
no bgp ebgp-requires-policy
|
|
no bgp network import-check
|
|
bgp route-reflector allow-outbound-policy
|
|
neighbor 10.0.0.1 remote-as internal
|
|
neighbor 10.0.0.1 timers 1 3
|
|
neighbor 10.0.0.1 timers connect 1
|
|
neighbor 10.0.0.1 route-reflector-client
|
|
neighbor 192.168.24.4 remote-as internal
|
|
neighbor 192.168.24.4 timers 1 3
|
|
neighbor 192.168.24.4 timers connect 1
|
|
neighbor 192.168.24.4 aigp
|
|
address-family ipv4
|
|
redistribute connected
|
|
neighbor 10.0.0.1 next-hop-self force
|
|
exit-address-family
|
|
!
|