diff options
Diffstat (limited to 'python/vyos')
-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}' |