diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-23 17:07:52 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-11-23 17:07:52 +0100 |
commit | a223e169b0994841e482fa2645047c6fc2d82238 (patch) | |
tree | 1018af22ab9798216a81e8ada39f88c30fc7d2ee | |
parent | a9b15e94ca7b7866af481b90efe8578d468095ac (diff) | |
download | vyos-1x-a223e169b0994841e482fa2645047c6fc2d82238.tar.gz vyos-1x-a223e169b0994841e482fa2645047c6fc2d82238.zip |
tunnel: T3072: 'gre' devices do not support bridging
-rw-r--r-- | python/vyos/ifconfig/tunnel.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/python/vyos/ifconfig/tunnel.py b/python/vyos/ifconfig/tunnel.py index 4d1441a29..dd4225eb3 100644 --- a/python/vyos/ifconfig/tunnel.py +++ b/python/vyos/ifconfig/tunnel.py @@ -17,6 +17,7 @@ # https://community.hetzner.com/tutorials/linux-setup-gre-tunnel from copy import deepcopy + from netaddr import EUI from netaddr import mac_unix_expanded from random import getrandbits @@ -141,13 +142,6 @@ class GREIf(_Tunnel): https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/tree/ip/link_gre.c """ - definition = { - **_Tunnel.definition, - **{ - 'bridgeable': True, - }, - } - default = {'type': 'gre'} options = ['local', 'remote', 'dev', 'ttl', 'tos', 'key'] |