Hi. On Thu, Oct 29, 2015 at 08:47:51PM +0000, Andrew Wood wrote: > > > On 24/10/15 22:56, Reco wrote: > >Currently you have three ways of doing it (all do not require X): 1) > >Universal one, but slow. Adding something like "-vnc 0.0.0.0:0" to qemu > >commandline will force qemu to provide a VNC server on customary tcp:5900, > >and guest OS will draw to VNC server only. > That works great but is it possible to specify a port or an IP address? I > tried replacing -vnc 0.0.0.0:0 with the IP of the host but QEMU refused to > start.
Specifing $SOME_IP instead of 0.0.0.0 should be possible, although I have to admit that I've never tried it (127.0.0.1 does not count). But 'refused to start' lacks some specific details: 1) What vnc stanza have you use? 2) What's the list of IPs on the host that runs QEMU? > I tried using 0.0.0.0:5901 and it started but I cannot connect > remotely using Vinegre by specifying the port even though there is no > firewall issue. VNC follows the simple rule: VNC port + 5900 = TCP port. So, you should either use tcp port 11801, or specify 0.0.0.0:1. Reco