ClaesBas wrote:
> If you have ssh moved/hidden somewhere else then port 22 this patch
> makes it possible to open the vnc/console.
> I have to add the entry from commandline like this:
> virt-manager -c qemu+ssh://username@some_machine:22222/system
> If ssh is running on port 22222.
>
> I've also submitet this on bugzilla:
> https://bugzilla.redhat.com/show_bug.cgi?id=447070
> and by mistake to libvir-list (sorry).
>
> Regards
> Claes
>
> --- a/src/virtManager/details.py Tue May 13 15:59:25 2008 -0400
> +++ b/src/virtManager/details.py Sun May 18 23:07:37 2008 +0200
> @@ -975,7 +975,11 @@ class vmmDetails(gobject.GObject):
> os.close(1)
> os.dup(fds[1].fileno())
> os.dup(fds[1].fileno())
> - argv = ["ssh", "ssh", "-p", "22"]
> + if not server.count(":"):
> + sshport = 22
> + else:
> + (server, sshport) = server.split(":")
> + argv = ["ssh", "ssh", "-p", sshport]
> if username:
> argv += ['-l', username]
> argv += [ server, "nc", vncaddr, str(vncport) ]
>