summaryrefslogtreecommitdiff
path: root/src/conf_mode/protocols_bgp.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-05-08 21:21:21 +0200
committerChristian Poessinger <christian@poessinger.com>2021-05-08 22:49:42 +0200
commit1d9cf31e849b862063200309734bab6620f57f1d (patch)
tree21b40ddd787447d6fb452dcf58256a28027d8522 /src/conf_mode/protocols_bgp.py
parentb5c608949719f4fcbf4234a0e8e52e5d7692b362 (diff)
downloadvyos-1x-1d9cf31e849b862063200309734bab6620f57f1d.tar.gz
vyos-1x-1d9cf31e849b862063200309734bab6620f57f1d.zip
vrf: bgp: T3523: bugfix Kernel route-map deployment
Commit 4f9aa30f ("vrf: bgp: T3523: add route-map support for kernel routes") added the possibility to also filter BGP routes towards the OS kernel, but the smoketests failed. Reason was a non working CLI command applied to bgpd. Thus the VRF route-map and the BGP configuration is now split into two templates, one to be used for each daemon (zebra and bgpd). Nevertheless one more bug was found in vyos.frr which currently does not suppoort calling modify_section() inside a configuration "block". See [1] for more info. [1]: https://phabricator.vyos.net/T3529
Diffstat (limited to 'src/conf_mode/protocols_bgp.py')
-rwxr-xr-xsrc/conf_mode/protocols_bgp.py20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/conf_mode/protocols_bgp.py b/src/conf_mode/protocols_bgp.py
index 2b0cb1fe2..a51fe6d72 100755
--- a/src/conf_mode/protocols_bgp.py
+++ b/src/conf_mode/protocols_bgp.py
@@ -233,10 +233,14 @@ def verify(bgp):
def generate(bgp):
if not bgp or 'deleted' in bgp:
- bgp['new_frr_config'] = ''
+ bgp['frr_bgpd_config'] = ''
+ bgp['frr_zebra_config'] = ''
return None
- bgp['new_frr_config'] = render_to_string('frr/bgp.frr.tmpl', bgp)
+ bgp['protocol'] = 'bgp' # required for frr/vrf.route-map.frr.tmpl
+ bgp['frr_zebra_config'] = render_to_string('frr/vrf.route-map.frr.tmpl', bgp)
+ bgp['frr_bgpd_config'] = render_to_string('frr/bgpd.frr.tmpl', bgp)
+
return None
def apply(bgp):
@@ -248,7 +252,8 @@ def apply(bgp):
# The route-map used for the FIB (zebra) is part of the zebra daemon
frr_cfg.load_configuration(zebra_daemon)
- frr_cfg.modify_section(r'\s+ip protocol bgp route-map [-a-zA-Z0-9.]+$', '', ' ')
+ frr_cfg.modify_section(r'(\s+)?ip protocol bgp route-map [-a-zA-Z0-9.]+$', '', '(\s|!)')
+ frr_cfg.add_before(r'(ip prefix-list .*|route-map .*|line vty)', bgp['frr_zebra_config'])
frr_cfg.commit_configuration(zebra_daemon)
# Generate empty helper string which can be ammended to FRR commands, it
@@ -259,14 +264,17 @@ def apply(bgp):
frr_cfg.load_configuration(bgp_daemon)
frr_cfg.modify_section(f'^router bgp \d+{vrf}$', '')
- frr_cfg.add_before(r'(ip prefix-list .*|route-map .*|line vty)', bgp['new_frr_config'])
+ frr_cfg.add_before(r'(ip prefix-list .*|route-map .*|line vty)', bgp['frr_bgpd_config'])
frr_cfg.commit_configuration(bgp_daemon)
- # If FRR config is blank, rerun the blank commit x times due to frr-reload
+ # If FRR config is blank, re-run the blank commit x times due to frr-reload
# behavior/bug not properly clearing out on one commit.
- if bgp['new_frr_config'] == '':
+ if bgp['frr_bgpd_config'] == '':
for a in range(5):
frr_cfg.commit_configuration(bgp_daemon)
+ if bgp['frr_zebra_config'] == '':
+ for a in range(5):
+ frr_cfg.commit_configuration(zebra_daemon)
# Save configuration to /run/frr/config/frr.conf
frr.save_configuration()