[libvirt] Proposal: no dnsmasq (no dhcp and no dns) and no radvd option

Laine Stump laine at laine.org
Sat Nov 24 21:19:31 UTC 2012


On 11/23/2012 02:18 PM, Gene Czarcinski wrote:
> On 11/20/2012 05:29 PM, Laine Stump wrote:
>> On 11/20/2012 02:36 PM, Gene Czarcinski wrote:
>>> >Laine mentioned something yesterday that got me to thinking: being
>>> >able to specify that dnsmasq is not to be started for an interface.
>>> >
>>> >Let me expand that by saying that libvirt would not start dnsmasq for
>>> >either dns or dhcp and also would not start radvd.  However, the IPv4
>>> >and IPv6 gateway addresses would be defined on the virtual network
>>> >interface and the "usual" iptables and ip6tables rules would be in
>>> force.
>>> >
>>> >This would allow a user to configure dnsmasq to meet any user desires
>>> >or use something completely different instead of dnsmasq.
>>> >
>>> >Questions:  Useful?  Worth the time and effort?
>> That was already determined before I mentioned it to you - it's been
>> requested several times, and I've told some people it was "going to
>> happen", although didn't say when:-).
>>
> OK, color this "almost done" (doc and schemas need updating).
>
> Three new parameters are added:
>       <network disableDnsmasq='yes'  logDnsQueries='yes' logDhcp='yes' >

Don't refer to dnsmasq specifically in the XML unless it's something
that is unique to dnsmasq (and then we should seriously consider  if
we're thinking about it the right way before adding it). The intent is
that the XML should describe the desired configuration in a manner high
level enough that a new driver using different backend components would
be able to use the same XML attributes and arrive at similar
functionality. For example, there is active work right now to support
libvirt's server side on FreeBSD, and they may decide that they want to
implement their networks using different implementations of DNS and dhcp
servers (they will already need to do something different in place of
Linux host brdges and iptables, so it will have to be a completely new
driver anyway).

Obviously there are cases where something specific to the backend needs
to be in the XML; for example the virtio-net drivers can specify <driver
name='qemu' ...> and in that case can have an option ioeventfd and
event_idx options which would probably be meaningless to any netdev
driver for another hypervisor, but we aim to keep that to a minimum, and
use it only when the characteristic described really is unique to
particular backend).

(At any rate, it seems reasonable to me that someone may want us to
provide a dhcp server but no dns server. Yes, this also implies that we
should have a way in the config to feed in the address of an alternative
DNS server ("--dhcp-option=option:dns-server,x.x.x.x" and
"--dhcp-option=option6:dnsserver,xxxx::xxxx") to send to dhcp clients
when they've disabled dnsmasq's own dns server (in case you hadn't found
it in the manpage yet - you can run dnsmasq with no dns server by adding
"--port=0" to the commandline). As soon as I hit send on this, I'm going
to type up a short mail asking for comments on how to add support for
any standard dhcp option.

As for the other two - any reason why you used "logDnsQueries" instead
of "logDns"? Also, do you think we might want the ability to specify a
level in the future? (I guess if we did, that could coexist with yes|no).

And while we're on the topic of logging: one thing that's bothered me a
lot, and we've had other people complain about it as well, is that every
single DHCP lease renewal results in a message to /var/log/messages, and
there doesn't seem to be any way to suppress it. Is that correct?

>
> If nothing is specified, then the default is no, no, no so that things
> work as they do now.  Currently, if the boolean value is 'no' or
> false, then that parameter is not written out.  I could easily change
> that depending on what others want to do.
>
> Laine, I changed this to be disableDnsmasq because that is the real
> result.  If this is specified, then starting radvd will also be
> suppressed.  It is as if no IPv4 or IPv6 addresses were specified.
> However, the iptables and ip6tables rules will remain the same since
> it is assumed that gateway addresses will be specified.

Actually that's yet another switch that we need to add - the ability to
suppress all iptables rules for a particular network (unless it is in
NAT mode, in which case it makes no sense, because it's the difference
in rules that changes it from mode='route' to mode='nat'). Perhaps it
could be something like filter='none|open|restricted', although I don't
know if that's descriptive enough - even without getting into specific
protocols (which I don't think should be done - at that point they
should really be using a guest-specific filterref) you might still want
to know if there should be any rules at all, allow everything, allow
outgoing sessions but not incoming, allow inter-guest traffic but not
incoming from the outside, allow nothing (all of these could be
overridden by a particular guest's filterref)

> I have scratched an itch of mine by providing a way to specify that
> dns-queries and dhcp activity should be logged and that this is
> specified separately for each virtual network interface.
>
> Dan suggested that a user might still want to run dnsmasq's dns
> service even if no IP addresses are specified.  However, in that case
> I am not sure what dnsmasq is suppose to monitor for queries ... it
> needs some kind of address or we will have the problems which the
> bind-dynamic update is suppose to fix.


Yeah, I didn't understand that either - If the bridge has no IP address,
there's no target IP for a DNS request to be sent to. I just assumed he
was thinking of something else.


>
> I have not integrated this with the bind-dynamic update but plan to
> before I submit it.  I will be submitting this patch with the IPV6
> enhancement, DHCPv6, etc. series since it is yet again messing with
> the same code.
>
> If any of the series get rejected rather than accepted, it will not be
> too much of a problem to rework them.




More information about the libvir-list mailing list