Use RAW sockets by default on Linux.

pull/1185/head
grossmj 7 years ago
parent fcd2c7b6d4
commit d76bcf7078

@ -622,7 +622,7 @@ class BaseNode:
i += 1
@asyncio.coroutine
def _add_ubridge_ethernet_connection(self, bridge_name, ethernet_interface, block_host_traffic=True):
def _add_ubridge_ethernet_connection(self, bridge_name, ethernet_interface, block_host_traffic=False):
"""
Creates a connection with an Ethernet interface in uBridge.

@ -210,7 +210,7 @@ class Cloud(BaseNode):
if port_info["type"] in ("ethernet", "tap"):
if sys.platform.startswith("win"):
yield from self._add_ubridge_ethernet_connection(bridge_name, port_info["interface"], block_host_traffic=False)
yield from self._add_ubridge_ethernet_connection(bridge_name, port_info["interface"])
else:

Loading…
Cancel
Save