summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/vyos/ifconfig/tunnel.py8
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']