diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-05-28 19:13:59 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-05-28 19:20:06 +0200 |
commit | e416035c66fe8f8bcb0dfce8058deff10656075c (patch) | |
tree | 14093b49fdd25a38616c3ea151cc0bdc7dca7526 /src/conf_mode/interfaces-vti.py | |
parent | 1f7db44a17b02a591d5ff9f64ee0717c697b8a5d (diff) | |
download | vyos-1x-e416035c66fe8f8bcb0dfce8058deff10656075c.tar.gz vyos-1x-e416035c66fe8f8bcb0dfce8058deff10656075c.zip |
vti: T1579: implement Virtual Tunnel Interfaces using XML and Python
Diffstat (limited to 'src/conf_mode/interfaces-vti.py')
-rwxr-xr-x | src/conf_mode/interfaces-vti.py | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/conf_mode/interfaces-vti.py b/src/conf_mode/interfaces-vti.py new file mode 100755 index 000000000..432d113e8 --- /dev/null +++ b/src/conf_mode/interfaces-vti.py @@ -0,0 +1,59 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2021 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 +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +from sys import exit + +from vyos.config import Config +from vyos.configdict import get_interface_dict +from vyos.ifconfig import VTIIf +from vyos import ConfigError +from vyos import airbag +airbag.enable() + +def get_config(config=None): + """ + Retrive CLI config as dictionary. Dictionary can never be empty, as at least the + interface name will be added or a deleted flag + """ + if config: + conf = config + else: + conf = Config() + base = ['interfaces', 'vti'] + vti = get_interface_dict(conf, base) + return vti + +def verify(vti): + if 'deleted' in vti: + return None + + return None + +def generate(vti): + return None + +def apply(vti): + return None + +if __name__ == '__main__': + try: + c = get_config() + verify(c) + generate(c) + apply(c) + except ConfigError as e: + print(e) + exit(1) |