diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-12 12:05:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 12:05:46 +0200 |
commit | cc4be2ccd72b1d48f9cd37c54b151cdf3217a9d1 (patch) | |
tree | de26679509122dfdfdbb816171e97fc3f31cf543 /python/vyos/ifconfig/input.py | |
parent | 7065330dc023241f5aed98e2233d212c528db60f (diff) | |
parent | bf39fe03e132ae4cf0985432345b61f6e7af2135 (diff) | |
download | vyos-1x-cc4be2ccd72b1d48f9cd37c54b151cdf3217a9d1.tar.gz vyos-1x-cc4be2ccd72b1d48f9cd37c54b151cdf3217a9d1.zip |
Merge pull request #334 from thomas-mangin/T31
ifconfig: T31: add skeleton VTI and input classes
Diffstat (limited to 'python/vyos/ifconfig/input.py')
-rw-r--r-- | python/vyos/ifconfig/input.py | 31 |
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', ], + }, + } |