diff options
| author | Nataliia Solomko <natalirs1985@gmail.com> | 2026-06-24 17:10:45 +0300 |
|---|---|---|
| committer | Nataliia Solomko <natalirs1985@gmail.com> | 2026-06-25 16:06:05 +0300 |
| commit | a83edf1a11c86df0a1419930b31544296a7a6e6c (patch) | |
| tree | 34235fc3d5cb944f38d35ce86b10cbfc9473445d /data | |
| parent | 9d0447feb2a20da7275f6c9fa990b2ee36bd937d (diff) | |
| download | vyos-1x-a83edf1a11c86df0a1419930b31544296a7a6e6c.tar.gz vyos-1x-a83edf1a11c86df0a1419930b31544296a7a6e6c.zip | |
bgp: T9013: Add BMP source-interface support
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/frr/bgpd.frr.j2 | 2 |
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 |
