diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-10-24 20:48:55 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-10-24 20:48:55 +0200 |
commit | 44c57a59f24b32a384bdf42c3097882f6c32169e (patch) | |
tree | bb818d1c84150c18a72f836c8f533b356a44f8d1 | |
parent | 110ab21dba160b9c00b0aca4a79893235317a1e8 (diff) | |
download | vyos-1x-44c57a59f24b32a384bdf42c3097882f6c32169e.tar.gz vyos-1x-44c57a59f24b32a384bdf42c3097882f6c32169e.zip |
tunnel: T3010: add missing ttl option for GRETap / GRE bridge interface
-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 964ffe383..4122d1a2f 100644 --- a/python/vyos/ifconfig/tunnel.py +++ b/python/vyos/ifconfig/tunnel.py @@ -179,7 +179,7 @@ class GRETapIf(_Tunnel): default = {'type': 'gretap'} required = ['local', ] - options = ['local', 'remote', ] + options = ['local', 'remote', 'ttl',] updates = ['mtu', ] create = 'ip link add {ifname} type {type}' |