Back in August 2008, DV added support for providing static IP/hostname
assignments to dnsmasq via <host> elements in the network definition.
Since this functionality isn't covered in the documentation, I wrote up
a quick patch, attached.
diff --git a/docs/formatnetwork.html.in b/docs/formatnetwork.html.in
index ca37b05..fd68430 100644
--- a/docs/formatnetwork.html.in
+++ b/docs/formatnetwork.html.in
@@ -98,7 +98,9 @@
...
<ip address="192.168.122.1" netmask="255.255.255.0">
<dhcp>
- <range start="192.168.122.2" end="192.168.122.254" />
+ <range start="192.168.122.100" end="192.168.122.254" />
+ <host mac="00:16:3e:77:e2:ed" name="foo.example.com" ip="192.168.122.10" />
+ <host mac="00:16:3e:3e:a9:1a" name="bar.example.com" ip="192.168.122.11" />
</dhcp>
</ip>
</network></pre>
@@ -126,6 +128,16 @@
must lie within the scope of the network defined on the parent
<code>ip</code> element. <span class="since">Since 0.3.0</span>
</dd>
+ <dt><code>host</code></dt>
+ <dd>Within the <code>dhcp</code> element there may be zero or more
+ <code>host</code> elements; these specify hosts which will be given
+ names and predefined IP addresses by the built-in DHCP server. Any
+ such element must specify the MAC address of the host to be assigned
+ a given name (via the <code>mac</code> attribute), the IP to be
+ assigned to that host (via the <code>ip</code> attribute), and the
+ name to be given that host by the DHCP server (via the
+ <code>name</code> attribute). <span class="since">Since 0.4.5</span>
+ </dd>
</dl>
<h2><a name="examples">Example configuration</a></h2>
--
Libvir-list mailing list
Libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list