Fix link capture for ATM switch. Fixes https://github.com/GNS3/gns3-gui/issues/3570

This commit is contained in:
grossmj
2024-04-23 18:35:36 +07:00
parent 2609849507
commit 35b75f0f7f
2 changed files with 3 additions and 3 deletions

View File

@ -189,7 +189,7 @@ class UDPLink(Link):
:returns: Node where the capture should run
"""
ALWAYS_RUNNING_NODES_TYPE = ("cloud", "nat", "ethernet_switch", "ethernet_hub")
ALWAYS_RUNNING_NODES_TYPE = ("cloud", "nat", "ethernet_switch", "ethernet_hub", "frame_relay_switch", "atm_switch")
for node in self._nodes:
if node["node"].compute.id == "local" and node["node"].node_type in ALWAYS_RUNNING_NODES_TYPE and node["node"].status == "started":