1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-11 08:30:57 +00:00

Use TCP instead of Telnet to communicate with Qemu monitor.

This commit is contained in:
grossmj 2015-03-10 00:34:57 -06:00
parent 5910b4b0be
commit 03dfd177f9

View File

@ -831,7 +831,7 @@ class QemuVM(BaseVM):
def _monitor_options(self):
if self._monitor:
return ["-monitor", "telnet:{}:{},server,nowait".format(self._monitor_host, self._monitor)]
return ["-monitor", "tcp:{}:{},server,nowait".format(self._monitor_host, self._monitor)]
else:
return []