From 7508af79700ea46198f1bf3081c8f2ae3be00c0b Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Wed, 20 Jan 2021 17:07:55 +0100 Subject: 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. --- python/vyos/ifconfig/tunnel.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python') 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()) -- cgit v1.2.3