6

Is there a way to to edit the listen address of a Libvirt-Machine on the fly? At the moment it seems like when I want to edit the listen address, I have to shut down the corresponding VM first, then edit the xml and redefine the domain.

I'm currently building a small web application (libvirt frontend) where I would like to implement a function called "enable / disable vnc" - however, that doesn't seem possible to me at the moment if the only way is shutting down the vm.

user1320304
  • 125
  • 1
  • 1
  • 5

2 Answers2

8

You have to go to QEMU Monitor and run:

change vnc display,options

Where display is <host>:<display_number> or unix:<path> or none. Options are options for display. See: https://qemu.weilnetz.de/doc/qemu-doc.html#sec_005finvocation

E.g. To change the port to 5905 and accept VNC connections for any host:

change vnc :5

If you are using virsh, use "qemu-monitor-command":

virsh # qemu-monitor-command <domain> --hmp change  vnc :5
Mircea Vutcovici
  • 17,619
  • 4
  • 56
  • 83
0

No, it doesn't seem possible to change the VNC display dynamically. I don't think that KVM supports it anyway, so libvirt can't provide it.

What you could do is put something in front of the VNC port as a proxy, like socat. You'd setup the VM on a localhost address which can't be accessed from outside, and then to enable it start a proxy on the external IP.

mgorven
  • 30,615
  • 7
  • 79
  • 122
  • Right QEMU does not support this: http://code.metager.de/source/xref/libvirt/src/qemu/qemu_hotplug.c#1861 (except password) – lzap Apr 05 '13 at 14:27