summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2026-06-25 16:33:26 +0200
committerGitHub <noreply@github.com>2026-06-25 16:33:26 +0200
commita141346934897cf25df38f3fe916bae9d06b886d (patch)
tree8391e371c383fb8e65f610edbff54e54fd632448 /data
parent92de46c87e27415105614172c891fff6cfbbc816 (diff)
parenta83edf1a11c86df0a1419930b31544296a7a6e6c (diff)
downloadvyos-1x-a141346934897cf25df38f3fe916bae9d06b886d.tar.gz
vyos-1x-a141346934897cf25df38f3fe916bae9d06b886d.zip
Merge pull request #5290 from natali-rs1985/T9013
bgp: T9013: Add BMP source-interface support
Diffstat (limited to 'data')
-rw-r--r--data/templates/frr/bgpd.frr.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/frr/bgpd.frr.j2 b/data/templates/frr/bgpd.frr.j2
index c10aa2826..3035262a6 100644
--- a/data/templates/frr/bgpd.frr.j2
+++ b/data/templates/frr/bgpd.frr.j2
@@ -538,7 +538,7 @@ router bgp {{ system_as }} {{ 'vrf ' ~ vrf if vrf is vyos_defined }} {{ 'as-nota
{% endif %}
{% endif %}
{% if bmp_config.address is vyos_defined %}
- bmp connect {{ bmp_config.address }} port {{ bmp_config.port }} min-retry {{ bmp_config.min_retry }} max-retry {{ bmp_config.max_retry }}
+ bmp connect {{ bmp_config.address }} port {{ bmp_config.port }} min-retry {{ bmp_config.min_retry }} max-retry {{ bmp_config.max_retry }} {{ 'source-interface ' ~ bmp_config.source_interface if bmp_config.source_interface is vyos_defined }}
{% endif %}
{% endfor %}
exit