diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-13 13:07:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-13 13:07:16 +0100 |
commit | fd74eb2e388308b9bd50ccc4236d53baa53a8da2 (patch) | |
tree | 4f3be6ea2a1d80f3795bec344af85e680ced2545 /data/templates/frr/bgpd.frr.j2 | |
parent | 6b18f0d0bd6d688b84d54aec8f5a46687c7317f6 (diff) | |
parent | 5904a4163d004561b8cb51ad76212a841ce85832 (diff) | |
download | vyos-1x-fd74eb2e388308b9bd50ccc4236d53baa53a8da2.tar.gz vyos-1x-fd74eb2e388308b9bd50ccc4236d53baa53a8da2.zip |
Merge pull request #2626 from vyos/mergify/bp/sagitta/pr-2606
SRv6: T591: initial implementation to support locator definition (backport #2606)
Diffstat (limited to 'data/templates/frr/bgpd.frr.j2')
-rw-r--r-- | data/templates/frr/bgpd.frr.j2 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/templates/frr/bgpd.frr.j2 b/data/templates/frr/bgpd.frr.j2 index 6f81174ac..641dac44a 100644 --- a/data/templates/frr/bgpd.frr.j2 +++ b/data/templates/frr/bgpd.frr.j2 @@ -588,6 +588,14 @@ bgp route-reflector allow-outbound-policy {% if parameters.tcp_keepalive.idle is vyos_defined and parameters.tcp_keepalive.interval is vyos_defined and parameters.tcp_keepalive.probes is vyos_defined %} bgp tcp-keepalive {{ parameters.tcp_keepalive.idle }} {{ parameters.tcp_keepalive.interval }} {{ parameters.tcp_keepalive.probes }} {% endif %} +{% if srv6.locator is vyos_defined %} + segment-routing srv6 + locator {{ srv6.locator }} + exit +{% endif %} +{% if sid.vpn.per_vrf.export is vyos_defined %} + sid vpn per-vrf export {{ sid.vpn.per_vrf.export }} +{% endif %} {% if timers.keepalive is vyos_defined and timers.holdtime is vyos_defined %} timers bgp {{ timers.keepalive }} {{ timers.holdtime }} {% endif %} |