diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-07-20 19:28:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 19:28:18 +0200 |
commit | d114792a0dd7c7730832a25d8a2b879f32783cca (patch) | |
tree | 2c5e2b114a14ebcd04c85c15209f586e3bf262e3 /python | |
parent | ba4e07155e497dac615c78dc0167186b857fb07b (diff) | |
download | vyos-1x-d114792a0dd7c7730832a25d8a2b879f32783cca.tar.gz vyos-1x-d114792a0dd7c7730832a25d8a2b879f32783cca.zip |
ifconfig: tunnel: T3691: add missing GRETAP key support
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/tunnel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/tunnel.py b/python/vyos/ifconfig/tunnel.py index 2609514f0..6f9d7abbf 100644 --- a/python/vyos/ifconfig/tunnel.py +++ b/python/vyos/ifconfig/tunnel.py @@ -136,7 +136,7 @@ class GRETapIf(_Tunnel): # no multicast, ttl or tos for gretap default = {'type': 'gretap'} - options = ['local', 'remote', 'ttl',] + options = ['local', 'remote', 'ttl', 'tos', 'key'] _create_cmd = 'ip link add name {ifname} type {type}' |