From a223e169b0994841e482fa2645047c6fc2d82238 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Mon, 23 Nov 2020 17:07:52 +0100 Subject: tunnel: T3072: 'gre' devices do not support bridging --- python/vyos/ifconfig/tunnel.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'python/vyos/ifconfig/tunnel.py') 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'] -- cgit v1.2.3