diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-14 11:36:31 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-01-14 11:36:31 +0100 |
commit | 7349927908206fa83a7295d643f56950309efb4f (patch) | |
tree | e5ccd4336c67d9a37c599785d71bc72e705a14bd /data | |
parent | d7e248ba514108461ca9d5875c0be077c80ceca7 (diff) | |
download | vyos-1x-7349927908206fa83a7295d643f56950309efb4f.tar.gz vyos-1x-7349927908206fa83a7295d643f56950309efb4f.zip |
bgp: T591: add VPN nexthop support per address-family
set protocols bgp address-family ipv4-unicast nexthop vpn export <ipv4-address|ipv6-address>
set protocols bgp address-family ipv6-unicast nexthop vpn export <ipv4-address|ipv6-address>
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/frr/bgpd.frr.j2 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/templates/frr/bgpd.frr.j2 b/data/templates/frr/bgpd.frr.j2 index f3ae56903..e02fdd1bb 100644 --- a/data/templates/frr/bgpd.frr.j2 +++ b/data/templates/frr/bgpd.frr.j2 @@ -402,6 +402,9 @@ router bgp {{ system_as }} {{ 'vrf ' ~ vrf if vrf is vyos_defined }} {% if afi_config.flooding.head_end_replication is vyos_defined %} flooding head-end-replication {% endif %} +{% if afi_config.nexthop.vpn.export is vyos_defined %} + nexthop vpn export {{ afi_config.nexthop.vpn.export }} +{% endif %} {% if afi_config.rd.vpn.export is vyos_defined %} rd vpn export {{ afi_config.rd.vpn.export }} {% endif %} |