Merge pull request #376 from TheEdgeOfRage/master
Detect wireguard interfaces as tunnel type
This commit is contained in:
commit
62d34395c7
1 changed files with 4 additions and 4 deletions
|
@ -63,7 +63,7 @@ class Module(bumblebee.engine.Module):
|
|||
return False
|
||||
|
||||
def _istunnel(self, intf):
|
||||
return intf.startswith("tun")
|
||||
return intf.startswith("tun") or intf.startswith("wg")
|
||||
|
||||
def get_addresses(self, intf):
|
||||
retval = []
|
||||
|
|
Loading…
Reference in a new issue