[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [libvirt] [virt-manager] PATCH: Support nonstandard ssh-port fortunnels
- From: Atsushi SAKAI <sakaia jp fujitsu com>
- To: ClaesBas <libvir-list clabbe com>
- Cc: libvir-list redhat com
- Subject: Re: [libvirt] [virt-manager] PATCH: Support nonstandard ssh-port fortunnels
- Date: Mon, 19 May 2008 13:30:58 +0900
Hi Claes
It should be posted on virt-manager mailing list.
"et-mgmt-tools at redhat.com"
Thanks
Atsushi SAKAI
ClaesBas <libvir-list clabbe com> 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
>
> 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) ]
>
> --
> Libvir-list mailing list
> Libvir-list redhat com
> https://www.redhat.com/mailman/listinfo/libvir-list
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]