diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-01 21:27:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 21:27:27 +0200 |
commit | 4387d096d15efa111bade59452d3fbdb43e7780a (patch) | |
tree | 27c36d4ce7b4c8ec3a3d95e633272b217887b3aa /src/conf_mode/vrf.py | |
parent | 986743cd67f56605c5ea9ae7153da5fe44055775 (diff) | |
parent | 7b46172a4aecc714d929aecb8768ab82633de3ba (diff) | |
download | vyos-1x-4387d096d15efa111bade59452d3fbdb43e7780a.tar.gz vyos-1x-4387d096d15efa111bade59452d3fbdb43e7780a.zip |
Merge pull request #3392 from c-po/bgp-evpn-T6189
bgp: T6189: L3VPN connectivity is broken after re-enabling VRF
Diffstat (limited to 'src/conf_mode/vrf.py')
-rwxr-xr-x | src/conf_mode/vrf.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py index 587309005..8d8c234c0 100755 --- a/src/conf_mode/vrf.py +++ b/src/conf_mode/vrf.py @@ -130,11 +130,6 @@ def get_config(config=None): tmp = {'policy' : {'route-map' : conf.get_config_dict(['policy', 'route-map'], get_first_key=True)}} - # L3VNI setup is done via vrf_vni.py as it must be de-configured (on node - # deletetion prior to the BGP process. Tell the Jinja2 template no VNI - # setup is needed - vrf.update({'no_vni' : ''}) - # Merge policy dict into "regular" config dict vrf = dict_merge(tmp, vrf) return vrf |