diff --git a/gns3server/compute/qemu/qemu_vm.py b/gns3server/compute/qemu/qemu_vm.py index 332e5813..d715d873 100644 --- a/gns3server/compute/qemu/qemu_vm.py +++ b/gns3server/compute/qemu/qemu_vm.py @@ -972,7 +972,8 @@ class QemuVM(BaseNode): await self._control_vm_commands(set_link_commands) try: - await self.start_wrap_console() + if self.is_running(): + await self.start_wrap_console() except OSError as e: raise QemuError("Could not start Telnet QEMU console {}\n".format(e))