mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-09-03 00:25:17 +03:00
use GNS3 node name as vnc Desktop name
Most VNC clients use the Desktop name in their window title. Currently this defaults to user@host which means all docker vnc connections have identical window names of e.g. SSVNC: gns3@gns3server This uses the node name instead.
This commit is contained in:
parent
975ca254fd
commit
a7108e1592
@ -745,6 +745,7 @@ class DockerVM(BaseNode):
|
||||
"-rfbport", str(self.console),
|
||||
"-AlwaysShared",
|
||||
"-SecurityTypes", "None",
|
||||
"-desktop", self.name,
|
||||
":{}".format(self._display),
|
||||
stdout=fd, stderr=subprocess.STDOUT)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user