diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-26 07:48:33 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-11-26 07:48:33 +0100 |
commit | e59415d350c9f7c57a3fee350e5426a5fc920722 (patch) | |
tree | 87a735e8cffc4d19d0cbc04d5857ff97906c50ce | |
parent | cf36b7ab1e1eb9d91b0877b55115d9a6ad2f196c (diff) | |
download | vyos-1x-e59415d350c9f7c57a3fee350e5426a5fc920722.tar.gz vyos-1x-e59415d350c9f7c57a3fee350e5426a5fc920722.zip |
wireguard: T2653: interface is not bridgeable
FileNotFoundError: [Errno 2] failed to run command: ip link set dev wg01 master br0
-rw-r--r-- | python/vyos/ifconfig/wireguard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/wireguard.py b/python/vyos/ifconfig/wireguard.py index ac6dc2109..9ee798ee8 100644 --- a/python/vyos/ifconfig/wireguard.py +++ b/python/vyos/ifconfig/wireguard.py @@ -165,7 +165,7 @@ class WireGuardIf(Interface): **{ 'section': 'wireguard', 'prefixes': ['wg', ], - 'bridgeable': True, + 'bridgeable': False, } } options = Interface.options + \ |