diff options
| author | Christian Breunig <christian@breunig.cc> | 2025-12-30 17:12:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-30 17:12:53 +0100 |
| commit | 2efe3e56d8a255b0193e721334d1947273908403 (patch) | |
| tree | fa78324740a6fea073c5f70089ff87b15121fc9e /data | |
| parent | 348e26aa40c8a0fbc921fc2153715e48fcd28f71 (diff) | |
| parent | fed84261267a6e760ba9cfe1da807eae36125c10 (diff) | |
| download | vyos-1x-2efe3e56d8a255b0193e721334d1947273908403.tar.gz vyos-1x-2efe3e56d8a255b0193e721334d1947273908403.zip | |
Merge pull request #4922 from sever-sever/T8133
T8133: BGP add local-rib feature for BMP
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/frr/bgpd.frr.j2 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/templates/frr/bgpd.frr.j2 b/data/templates/frr/bgpd.frr.j2 index e5a75090f..c952fb0ec 100644 --- a/data/templates/frr/bgpd.frr.j2 +++ b/data/templates/frr/bgpd.frr.j2 @@ -510,12 +510,18 @@ router bgp {{ system_as }} {{ 'vrf ' ~ vrf if vrf is vyos_defined }} {% if bmp_config.monitor.ipv4_unicast.post_policy is vyos_defined %} bmp monitor ipv4 unicast post-policy {% endif %} +{% if bmp_config.monitor.ipv4_unicast.local_rib is vyos_defined %} + bmp monitor ipv4 unicast loc-rib +{% endif %} {% if bmp_config.monitor.ipv6_unicast.pre_policy is vyos_defined %} bmp monitor ipv6 unicast pre-policy {% endif %} {% if bmp_config.monitor.ipv6_unicast.post_policy is vyos_defined %} bmp monitor ipv6 unicast post-policy {% endif %} +{% if bmp_config.monitor.ipv6_unicast.local_rib is vyos_defined %} + bmp monitor ipv6 unicast loc-rib +{% 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 }} |
