search for: vnc_host

Displaying 3 results from an estimated 3 matches for "vnc_host".

Did you mean: mic_host
2006 Jul 13
3
[PATCH] Update new qemu-dm to spawn vncviewer
...ls.vnc and vals.vncviewer) or vals.dryrun: return - vnc_display = choose_vnc_display() - if not vnc_display: - warn("No free vnc display") - return - print ''VNC='', vnc_display - vnc_port = spawn_vnc(vnc_display) - if vnc_port > 0: - vnc_host = get_host_addr() - vnc = ''VNC_VIEWER=%s:%d'' % (vnc_host, vnc_port) - vals.extra = vnc + '' '' + vals.extra + if not vals.vnc or vals.dryrun: return + if vals.vncconnect: + vnc_display = choose_vnc_display() + if not vnc_display: + warn(&quo...
2008 Sep 17
2
[Xen-ia64-devel] [PATCH] xm: Don''t spawn vncviewer twice.
...f vals.vncviewer: - vnc_display = choose_vnc_display() - if not vnc_display: - warn("No free vnc display") - return - print ''VNC='', vnc_display - vnc_port = spawn_vnc(vnc_display) - if vnc_port > 0: - vnc_host = get_host_addr() - vnc = ''VNC_VIEWER=%s:%d'' % (vnc_host, vnc_port) - vals.extra = vnc + '' '' + vals.extra - def preprocess(vals): preprocess_disk(vals) preprocess_pci(vals) @@ -1156,7 +1124,6 @@ preprocess_ioports(vals)...
2005 May 02
2
forwarding stdin/out to remote socket
Hi! Some vnc clients has '-via ssh_gateway' option to simplify the setup of ssh port forwarding. Basically the option implements the following 3 steps: 1. Find local port available for listening. 2. Fork/exec ssh -L found_port:vnc_host:vnc_port ssh_gateway sleep some_delay 3. Connect to the found_port Although convenient the setup has its problems. First, it exposes the remote vnc port for everybody on the localhost for the duration of some_delay. Second it can cause connection at step 3 to fail if it would take a long time fo...