Code:log syslog informational ip forwarding ipv6 forwarding frr defaults datacenter service integrated-vtysh-config hostname pve02 ! ! vrf vrf_public vni 10000 exit-vrf ! router bgp 65000 bgp router-id 192.168.10.2 no bgp default ipv4-unicast coalesce-time 1000 bgp network import-check no bgp ebgp-requires-policy neighbor BGP peer-group neighbor BGP remote-as external neighbor BGP bfd neighbor 192.168.10.250 peer-group BGP neighbor VTEP peer-group neighbor VTEP remote-as 65000 neighbor VTEP bfd neighbor 192.168.128.1 peer-group VTEP neighbor 192.168.128.3 peer-group VTEP ! address-family ipv4 unicast neighbor BGP activate neighbor BGP soft-reconfiguration inbound import vrf vrf_public exit-address-family ! address-family ipv6 unicast import vrf vrf_public exit-address-family ! address-family l2vpn evpn neighbor VTEP activate advertise-all-vni exit-address-family ! router bgp 65000 vrf vrf_public ! address-family ipv4 unicast redistribute connected exit-address-family ! address-family ipv6 unicast redistribute connected exit-address-family ! address-family l2vpn evpn default-originate ipv4 default-originate ipv6 exit-address-family ! line vty
can your tri to edit frr.conf, and add network X.X.X.X/X in
Code:
address-family ipv4 unicast
neighbor BGP activate
neighbor BGP soft-reconfiguration inbound
import vrf vrf_public
exit-address-family
Code:
address-family ipv4 unicast
network X.X.X.X/X
neighbor BGP activate
neighbor BGP soft-reconfiguration inbound
import vrf vrf_public
exit-address-family
where X.X.X.X/X is the subnet of your evpn. (ex: "network 192.168.0.0/24")
then restart frr service.
because, I'm not sure than the routes coming from evpn (with the "import vrf_public"), are automaticaly announced.