1
22.1 Legacy Series / Re: FRR and BGP or OSFP - can't get Route Maps to select more than 1 prefix list
« on: May 18, 2022, 09:02:43 pm »Code: [Select]Building configuration...
Current configuration:
!
frr version 7.5.1
frr defaults traditional
hostname ONAfw1.localdomain
log syslog notifications
!
router bgp 65521
no bgp ebgp-requires-policy
bgp graceful-restart
neighbor 172.27.4.2 remote-as 65524
neighbor 172.27.4.2 bfd
neighbor 172.27.4.2 update-source ipsec2
!
address-family ipv4 unicast
redistribute kernel
redistribute connected
redistribute static
neighbor 172.27.4.2 next-hop-self
exit-address-family
!
address-family ipv6 unicast
redistribute kernel
redistribute connected
redistribute static
exit-address-family
!
ip prefix-list sitea-net1 seq 10 permit 192.168.1.0/24
ip prefix-list sitea-net2 seq 20 permit 10.1.55.0/24
!
route-map routemap-out permit 10
match ip address prefix-list sitea-net1
!
line vty
!
bfd
peer 172.27.4.2
!
peer 172.227.4.2
!
!
end
You did create a route map, but did not assign it to any peer/neighbor in or outbound, so right now it is not applied.