mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
loopback is not always just lo
On BSD family OSes (Free/Net/Open/DragonFlyBSD, Mac OS) and Solaris loopback interface is called 'lo0' instead of just 'lo'.
This commit is contained in:
parent
fb2d0cc633
commit
478ddedc12
@ -1002,7 +1002,12 @@ networkDnsmasqConfContents(virNetworkObjPtr network,
|
||||
virBufferAsprintf(&configbuf, "pid-file=%s\n", pidfile);
|
||||
|
||||
/* dnsmasq will *always* listen on localhost unless told otherwise */
|
||||
#ifdef __linux__
|
||||
virBufferAddLit(&configbuf, "except-interface=lo\n");
|
||||
#else
|
||||
/* BSD family OSes and Solaris call loopback interface as lo0 */
|
||||
virBufferAddLit(&configbuf, "except-interface=lo0\n");
|
||||
#endif
|
||||
|
||||
if (dnsmasqCapsGet(caps, DNSMASQ_CAPS_BIND_DYNAMIC)) {
|
||||
/* using --bind-dynamic with only --interface (no
|
||||
|
Loading…
Reference in New Issue
Block a user