diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-28 20:01:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 20:01:30 +0200 |
commit | 2a2bb78fb1dc01a1adc454b637f92cd99f698db7 (patch) | |
tree | 0effa25bfcd875d15899432328df7e4a08c0008f /src/conf_mode | |
parent | af04f714897258cbb0bf08628ab6d11cdedfb40f (diff) | |
parent | 6bb409f397b4b7e0e78d6574bd1d7df1c94cb08c (diff) | |
download | vyos-1x-2a2bb78fb1dc01a1adc454b637f92cd99f698db7.tar.gz vyos-1x-2a2bb78fb1dc01a1adc454b637f92cd99f698db7.zip |
Merge pull request #1286 from c-po/t4633-geneve-equuleus
geneve: T4366: prevent interface re-creation when not required
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/interfaces-geneve.py | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/src/conf_mode/interfaces-geneve.py b/src/conf_mode/interfaces-geneve.py index 979a5612e..f49d5b304 100755 --- a/src/conf_mode/interfaces-geneve.py +++ b/src/conf_mode/interfaces-geneve.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2019-2020 VyOS maintainers and contributors +# Copyright (C) 2019-2022 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -21,6 +21,7 @@ from netifaces import interfaces from vyos.config import Config from vyos.configdict import get_interface_dict +from vyos.configdict import leaf_node_changed from vyos.configverify import verify_address from vyos.configverify import verify_mtu_ipv6 from vyos.configverify import verify_bridge_delete @@ -41,6 +42,14 @@ def get_config(config=None): conf = Config() base = ['interfaces', 'geneve'] geneve = get_interface_dict(conf, base) + + # GENEVE interfaces are picky and require recreation if certain parameters + # change. But a GENEVE interface should - of course - not be re-created if + # it's description or IP address is adjusted. Feels somehow logic doesn't it? + for cli_option in ['remote', 'vni']: + if leaf_node_changed(conf, cli_option): + geneve.update({'rebuild_required': {}}) + return geneve def verify(geneve): @@ -65,11 +74,12 @@ def generate(geneve): def apply(geneve): # Check if GENEVE interface already exists - if geneve['ifname'] in interfaces(): - g = GeneveIf(geneve['ifname']) - # GENEVE is super picky and the tunnel always needs to be recreated, - # thus we can simply always delete it first. - g.remove() + if 'rebuild_required' in geneve or 'delete' in geneve: + if geneve['ifname'] in interfaces(): + g = GeneveIf(geneve['ifname']) + # GENEVE is super picky and the tunnel always needs to be recreated, + # thus we can simply always delete it first. + g.remove() if 'deleted' not in geneve: # This is a special type of interface which needs additional parameters |