summaryrefslogtreecommitdiff
path: root/python/vyos/ifconfig/input.py
diff options
context:
space:
mode:
authorThomas Mangin <thomas.mangin@exa.net.uk>2020-04-12 01:45:07 +0100
committerThomas Mangin <thomas.mangin@exa.net.uk>2020-04-12 10:19:56 +0100
commitbf39fe03e132ae4cf0985432345b61f6e7af2135 (patch)
tree61546fb468d9edfe57ef4797fdcc921fdac789ef /python/vyos/ifconfig/input.py
parent23225b31139e3f45cced5041d6d230909bb9e3d6 (diff)
downloadvyos-1x-bf39fe03e132ae4cf0985432345b61f6e7af2135.tar.gz
vyos-1x-bf39fe03e132ae4cf0985432345b61f6e7af2135.zip
ifconfig: T31: add skeleton VTI and input classes
also add a function to Section which provides a list of reserved names
Diffstat (limited to 'python/vyos/ifconfig/input.py')
-rw-r--r--python/vyos/ifconfig/input.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/python/vyos/ifconfig/input.py b/python/vyos/ifconfig/input.py
new file mode 100644
index 000000000..bfab36335
--- /dev/null
+++ b/python/vyos/ifconfig/input.py
@@ -0,0 +1,31 @@
+# Copyright 2020 VyOS maintainers and contributors <maintainers@vyos.io>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library 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
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library. If not, see <http://www.gnu.org/licenses/>.
+
+
+from vyos.ifconfig.interface import Interface
+
+
+@Interface.register
+class InputIf(Interface):
+ default = {
+ 'type': '',
+ }
+ definition = {
+ **Interface.definition,
+ **{
+ 'section': 'input',
+ 'prefixes': ['ifb', ],
+ },
+ }