diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-20 17:07:55 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-20 17:07:55 +0100 |
commit | 7508af79700ea46198f1bf3081c8f2ae3be00c0b (patch) | |
tree | cef0db924b051bf9b89da67854851940c670d256 /python | |
parent | 9207897983a3bfafa0ec3e436c1ad67790f09f06 (diff) | |
download | vyos-1x-7508af79700ea46198f1bf3081c8f2ae3be00c0b.tar.gz vyos-1x-7508af79700ea46198f1bf3081c8f2ae3be00c0b.zip |
tunnel: T3173: bugfix nopmtu raw key
The raw key was not copied into the class member variable. Also added a smoketest
to ensure the configured parameters are always set.
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/tunnel.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/vyos/ifconfig/tunnel.py b/python/vyos/ifconfig/tunnel.py index 7e3f9565a..4320bf8bc 100644 --- a/python/vyos/ifconfig/tunnel.py +++ b/python/vyos/ifconfig/tunnel.py @@ -55,6 +55,7 @@ class _Tunnel(Interface): 'ttl' : '', 'tos' : '', 'key' : '', + 'raw' : '', } options = Interface.options + list(default.keys()) |