1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-17 22:08:35 +00:00

Interface starting with gns3 are not display by default in the cloud

Fix https://github.com/GNS3/gns3-gui/issues/2199
This commit is contained in:
Julien Duponchelle 2017-08-03 16:33:42 +02:00
parent 211f48d981
commit 2dc83d7894
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -240,7 +240,9 @@ def interfaces():
# This interface have special behavior
for result in results:
result["special"] = False
for special_interface in ("lo", "vmnet", "vboxnet", "docker", "lxcbr", "virbr", "ovs-system", "veth", "fw", "p2p", "bridge", "vmware", "virtualbox"):
for special_interface in ("lo", "vmnet", "vboxnet", "docker", "lxcbr",
"virbr", "ovs-system", "veth", "fw", "p2p",
"bridge", "vmware", "virtualbox", "gns3"):
if result["name"].lower().startswith(special_interface):
result["special"] = True
for special_interface in ("-nic"):