G'day folks,
For reasons a plenty, looking at making some additions including:
- Controller: different ASN between host and peer
- Controller: capability for filters to not send default, for options to not have the below
Is/has anyone been working on this already but it just hasn't yet been pushed to the non-enterprise repositories?
Cheers,
Ben.
For reasons a plenty, looking at making some additions including:
- Controller: different ASN between host and peer
Code:
root@pmx03:~# cat /etc/pve/sdn/*
evpn: ctrlr1
asn 65004
peers 10.61.2.142
gateway-nodes pmx03
root@pmx03:~#
pmx03# sh run
Building configuration...
Current configuration:
!
frr version 7.2.1
frr defaults traditional
hostname pmx03
log syslog informational
service integrated-vtysh-config
!
router bgp 65004
bgp router-id 10.24.1.111
no bgp default ipv4-unicast
coalesce-time 1000
neighbor 10.61.2.142 remote-as 65004
!
address-family l2vpn evpn
neighbor 10.61.2.142 activate
advertise-all-vni
exit-address-family
!
line vty
!
end
pmx03#
Code:
142 @controller_config = ();
143 #add default originate to announce 0.0.0.0/0 type5 route in evpn
144 push @controller_config, "default-originate ipv4";
145 push @controller_config, "default-originate ipv6";
146 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"l2vpn evpn"}}, @controller_config);
Is/has anyone been working on this already but it just hasn't yet been pushed to the non-enterprise repositories?
Cheers,
Ben.