1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Do not block traffic originating from an Ethernet interface in the cloud. Ref #771.

This commit is contained in:
grossmj 2016-11-23 22:06:44 +11:00
parent 7754d7f211
commit 38d9555f72

View File

@ -188,7 +188,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"])
yield from self._add_ubridge_ethernet_connection(bridge_name, port_info["interface"], block_host_traffic=False)
else: