[et-mgmt-tools] [libvirt] [virt-manager] PATCH: Support nonstandard ssh-port for tunnels

Cole Robinson crobinso at redhat.com
Tue May 20 14:31:47 UTC 2008


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) ]
> 

Thanks, I've committed this.

http://hg.et.redhat.com/virt/applications/virt-manager--devel?cs=57ff06da8a73

- Cole




More information about the et-mgmt-tools mailing list