summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/vyos/ifconfig/tunnel.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/python/vyos/ifconfig/tunnel.py b/python/vyos/ifconfig/tunnel.py
index 90dcac0f2..2609514f0 100644
--- a/python/vyos/ifconfig/tunnel.py
+++ b/python/vyos/ifconfig/tunnel.py
@@ -45,6 +45,7 @@ class _Tunnel(Interface):
**{
'section': 'tunnel',
'prefixes': ['tun',],
+ 'bridgeable': True,
},
}
@@ -134,14 +135,6 @@ class GRETapIf(_Tunnel):
"""
# no multicast, ttl or tos for gretap
-
- definition = {
- **_Tunnel.definition,
- **{
- 'bridgeable': True,
- },
- }
-
default = {'type': 'gretap'}
options = ['local', 'remote', 'ttl',]