From e416035c66fe8f8bcb0dfce8058deff10656075c Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 28 May 2021 19:13:59 +0200 Subject: vti: T1579: implement Virtual Tunnel Interfaces using XML and Python --- interface-definitions/interfaces-vti.xml.in | 39 +++++++++++++++++++ src/conf_mode/interfaces-vti.py | 59 +++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 interface-definitions/interfaces-vti.xml.in create mode 100755 src/conf_mode/interfaces-vti.py diff --git a/interface-definitions/interfaces-vti.xml.in b/interface-definitions/interfaces-vti.xml.in new file mode 100644 index 000000000..604d7dd29 --- /dev/null +++ b/interface-definitions/interfaces-vti.xml.in @@ -0,0 +1,39 @@ + + + + + + + Virtual Tunnel interface + 381 + + ^vti[0-9]+$ + + VTI interface must be named vtiN + + vtiN + VTI interface name + + + + + + IP address + + ipv4net + IPv4 address and prefix length + + + + + + + + #include + #include + #include + + + + + 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 . + +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) -- cgit v1.2.3