diff --git a/docs/en-US/hypervisor-host-install-libvirt.xml b/docs/en-US/hypervisor-host-install-libvirt.xml
index 34fe4c4d6f2..c3e37c5edec 100644
--- a/docs/en-US/hypervisor-host-install-libvirt.xml
+++ b/docs/en-US/hypervisor-host-install-libvirt.xml
@@ -34,22 +34,20 @@
apt-get install libvirt-bin
- In order to have live migration working libvirt has to listen for unsecured TCP connections.
- vi /etc/libvirt/libvirtd.conf
+ In order to have live migration working libvirt has to listen for unsecured TCP connections. We also need to turn off libvirts attempt to use Multicast DNS advertising. Both of these settings are in /etc/libvirt/libvirtd.conf
Set the following paramaters:
listen_tls = 0
listen_tcp = 1
tcp_port = 16059
auth_tcp = "none"
+ mdns_adv = 0
Turning on "listen_tcp" in libvirtd.conf is not enough, we have to change the parameters as well:
- On RHEL or CentOS:
- vi /etc/sysconfig/libvirtd
+ On RHEL or CentOS modify /etc/sysconfig/libvirtd:
Uncomment the following line:
#LIBVIRTD_ARGS="--listen"
- On Ubuntu:
- vi /etc/init/libvirt-bin.conf
+ On Ubuntu: modify /etc/init/libvirt-bin.conf
Change the following line (at the end of the file):
exec /usr/sbin/libvirtd -d
to (just add -l)