2013-05-03 14:25:37 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
2008-04-23 17:08:31 +00:00
|
|
|
<body>
|
|
|
|
<h1>Network XML format</h1>
|
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<ul id="toc">
|
|
|
|
</ul>
|
|
|
|
|
2008-04-29 14:08:08 +00:00
|
|
|
<p>
|
|
|
|
This page provides an introduction to the network XML format. For background
|
|
|
|
information on the concepts referred to here, consult the <a href="archnetwork.html">network driver architecture</a>
|
|
|
|
page.
|
|
|
|
</p>
|
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<h2><a name="elements">Element and attribute overview</a></h2>
|
2008-04-29 14:08:08 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
The root element required for all virtual networks is
|
2012-08-06 20:17:58 +00:00
|
|
|
named <code>network</code> and has no configurable attributes
|
|
|
|
(although <span class="since">since 0.10.0</span> there is one
|
|
|
|
optional read-only attribute - when examining the live
|
|
|
|
configuration of a network, the
|
|
|
|
attribute <code>connections</code>, if present, specifies the
|
|
|
|
number of guest interfaces currently connected via this
|
|
|
|
network). The network XML format is
|
|
|
|
available <span class="since">since 0.3.0</span>
|
2008-04-29 14:08:08 +00:00
|
|
|
</p>
|
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<h3><a name="elementsMetadata">General metadata</a></h3>
|
2008-04-29 14:08:08 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
The first elements provide basic metadata about the virtual
|
|
|
|
network.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
2012-12-03 16:13:36 +00:00
|
|
|
<network ipv6='yes'>
|
2008-04-29 14:08:08 +00:00
|
|
|
<name>default</name>
|
|
|
|
<uuid>3e3fce45-4f53-4fa7-bb32-11f34168b82b</uuid>
|
|
|
|
...</pre>
|
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt><code>name</code></dt>
|
|
|
|
<dd>The content of the <code>name</code> element provides
|
2009-11-06 15:04:19 +00:00
|
|
|
a short name for the virtual network. This name should
|
|
|
|
consist only of alpha-numeric characters and is required
|
|
|
|
to be unique within the scope of a single host. It is
|
|
|
|
used to form the filename for storing the persistent
|
|
|
|
configuration file. <span class="since">Since 0.3.0</span></dd>
|
2008-04-29 14:08:08 +00:00
|
|
|
<dt><code>uuid</code></dt>
|
|
|
|
<dd>The content of the <code>uuid</code> element provides
|
2009-11-06 15:04:19 +00:00
|
|
|
a globally unique identifier for the virtual network.
|
|
|
|
The format must be RFC 4122 compliant, eg <code>3e3fce45-4f53-4fa7-bb32-11f34168b82b</code>.
|
|
|
|
If omitted when defining/creating a new network, a random
|
|
|
|
UUID is generated. <span class="since">Since 0.3.0</span></dd>
|
2012-12-03 16:13:36 +00:00
|
|
|
<dt><code>ipv6='yes'</code></dt>
|
|
|
|
<dd>The new, optional parameter <code>ipv6='yes'</code> enables
|
|
|
|
a network definition with no IPv6 gateway addresses specified
|
|
|
|
to have guest-to-guest communications. For further information,
|
|
|
|
see the example below for the example with no gateway addresses.
|
|
|
|
<span class="since">Since 1.0.1</span></dd>
|
2008-04-29 14:08:08 +00:00
|
|
|
</dl>
|
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<h3><a name="elementsConnect">Connectivity</a></h3>
|
2008-04-29 14:08:08 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
The next set of elements control how a virtual network is
|
|
|
|
provided connectivity to the physical LAN (if at all).
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
...
|
2010-02-22 21:26:44 +00:00
|
|
|
<bridge name="virbr0" stp="on" delay="5"/>
|
2011-10-14 18:35:32 +00:00
|
|
|
<domain name="example.com"/>
|
2009-11-06 15:04:19 +00:00
|
|
|
<forward mode="nat" dev="eth0"/>
|
|
|
|
...</pre>
|
2008-04-29 14:08:08 +00:00
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt><code>bridge</code></dt>
|
|
|
|
<dd>The <code>name</code> attribute on the <code>bridge</code> element
|
2009-11-06 15:04:19 +00:00
|
|
|
defines the name of a bridge device which will be used to construct
|
|
|
|
the virtual network. The virtual machines will be connected to this
|
|
|
|
bridge device allowing them to talk to each other. The bridge device
|
|
|
|
may also be connected to the LAN. It is recommended that bridge
|
|
|
|
device names started with the prefix <code>vir</code>, but the name
|
2011-08-10 05:41:19 +00:00
|
|
|
<code>virbr0</code> is reserved for the "default" virtual
|
|
|
|
network. This element should always be provided when defining
|
|
|
|
a new network with a <code><forward></code> mode of
|
|
|
|
"nat" or "route" (or an isolated network with
|
|
|
|
no <code><forward></code> element).
|
|
|
|
Attribute <code>stp</code> specifies if Spanning Tree Protocol
|
|
|
|
is 'on' or 'off' (default is
|
|
|
|
'on'). Attribute <code>delay</code> sets the bridge's forward
|
|
|
|
delay value in seconds (default is 0).
|
2009-11-06 15:04:19 +00:00
|
|
|
<span class="since">Since 0.3.0</span>
|
2008-04-29 14:08:08 +00:00
|
|
|
</dd>
|
2010-02-22 21:39:55 +00:00
|
|
|
<dt><code>domain</code></dt>
|
|
|
|
<dd>
|
2011-08-10 05:41:19 +00:00
|
|
|
The <code>name</code> attribute on the <code>domain</code>
|
|
|
|
element defines the DNS domain of the DHCP server. This
|
|
|
|
element is optional, and is only used for those networks with
|
|
|
|
a <code><forward></code> mode of "nat" or "route" (or an
|
|
|
|
isolated network with no <code><forward></code>
|
|
|
|
element). <span class="since">Since 0.4.5</span>
|
2010-02-22 21:39:55 +00:00
|
|
|
</dd>
|
2008-04-29 14:08:08 +00:00
|
|
|
<dt><code>forward</code></dt>
|
|
|
|
<dd>Inclusion of the <code>forward</code> element indicates that
|
2010-12-16 20:50:01 +00:00
|
|
|
the virtual network is to be connected to the physical
|
2011-08-10 05:41:19 +00:00
|
|
|
LAN.<span class="since">Since 0.3.0.</span>
|
|
|
|
The <code>mode</code> attribute determines the method of
|
|
|
|
forwarding. If there is no <code>forward</code> element, the
|
|
|
|
network will be isolated from any other network (unless a
|
|
|
|
guest connected to that network is acting as a router, of
|
|
|
|
course). The following are valid settings
|
|
|
|
for <code>mode</code> (if there is a <code>forward</code>
|
|
|
|
element but mode is not specified, <code>mode='nat'</code> is
|
|
|
|
assumed):
|
|
|
|
<dl>
|
|
|
|
<dt><code>nat</code></dt>
|
|
|
|
<dd>
|
|
|
|
All traffic between guests connected to this network and
|
|
|
|
the physical network will be forwarded to the physical
|
|
|
|
network via the host's IP routing stack, after the guest's
|
|
|
|
IP address is translated to appear as the host machine's
|
|
|
|
public IP address (a.k.a. Network Address Translation, or
|
|
|
|
"NAT"). This allows multiple guests, all having access to
|
|
|
|
the physical network, on a host that is only allowed a
|
|
|
|
single public IP address. If a network has any IPv6
|
|
|
|
addresses defined, the IPv6 traffic will be forwarded
|
|
|
|
using plain routing, since IPv6 has no concept of NAT.
|
|
|
|
Firewall rules will allow outbound connections to any
|
|
|
|
other network device whether ethernet, wireless, dialup,
|
|
|
|
or VPN. If the <code>dev</code> attribute is set, the
|
|
|
|
firewall rules will restrict forwarding to the named
|
|
|
|
device only. Inbound connections from other networks are
|
|
|
|
all prohibited; all connections between guests on the same
|
|
|
|
network, and to/from the host to the guests, are
|
|
|
|
unrestricted and not NATed.<span class="since">Since
|
|
|
|
0.4.2</span>
|
2013-02-19 10:44:14 +00:00
|
|
|
|
|
|
|
<p><span class="since">Since 1.0.3</span> it is possible to
|
2013-02-19 10:44:15 +00:00
|
|
|
specify a public IPv4 address and port range to be used for
|
|
|
|
the NAT by using the <code><nat></code> subelement.
|
|
|
|
The address range is set with the <code><address></code>
|
|
|
|
subelements and <code>start</code> and <code>stop</code>
|
|
|
|
attributes:
|
2013-02-21 09:32:36 +00:00
|
|
|
</p>
|
2013-02-19 10:44:14 +00:00
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<forward mode='nat'>
|
|
|
|
<nat>
|
|
|
|
<address start='1.2.3.4' end='1.2.3.10'/>
|
|
|
|
</nat>
|
|
|
|
</forward>
|
2013-02-21 09:32:36 +00:00
|
|
|
...</pre>
|
|
|
|
<p>
|
2013-09-05 09:32:19 +00:00
|
|
|
A single IPv4 address can be set by setting
|
2013-02-19 10:44:14 +00:00
|
|
|
<code>start</code> and <code>end</code> attributes to
|
|
|
|
the same value.
|
|
|
|
</p>
|
2013-02-19 10:44:15 +00:00
|
|
|
<p>
|
|
|
|
The port range to be used for the <code><nat></code> can
|
|
|
|
be set via the subelement <code><port></code>:
|
2013-02-21 09:32:36 +00:00
|
|
|
</p>
|
2013-02-19 10:44:15 +00:00
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<forward mode='nat'>
|
|
|
|
<nat>
|
|
|
|
<port start='500' end='1000'/>
|
|
|
|
</nat>
|
|
|
|
</forward>
|
2013-02-21 09:32:36 +00:00
|
|
|
...</pre>
|
2011-08-10 05:41:19 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt><code>route</code></dt>
|
|
|
|
<dd>
|
|
|
|
Guest network traffic will be forwarded to the physical
|
|
|
|
network via the host's IP routing stack, but without
|
|
|
|
having NAT applied. Again, if the <code>dev</code>
|
|
|
|
attribute is set, firewall rules will restrict forwarding
|
|
|
|
to the named device only. This presumes that the local LAN
|
|
|
|
router has suitable routing table entries to return
|
2011-10-20 19:26:30 +00:00
|
|
|
traffic to this host. All incoming and outgoing sessions
|
|
|
|
to guest on these networks are unrestricted. (To restrict
|
|
|
|
incoming traffic to a guest on a routed network, you can
|
|
|
|
configure <a href="formatnwfilter.html">nwfilter rules</a>
|
|
|
|
on the guest's interfaces.)
|
|
|
|
<span class="since">Since 0.4.2</span>
|
2011-08-10 05:41:19 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt><code>bridge</code></dt>
|
|
|
|
<dd>
|
|
|
|
This network describes either 1) an existing host bridge
|
|
|
|
that was configured outside of libvirt (if
|
|
|
|
a <code><bridge name='xyz'/></code> element has been
|
network: merge relevant virtualports rather than choosing one
One of the original ideas behind allowing a <virtualport> in an
interface definition as well as in the <network> definition *and*one
or more <portgroup>s within the network, was that guest-specific
parameteres (like instanceid and interfaceid) could be given in the
interface's virtualport, and more general things (portid, managerid,
etc) could be given in the network and/or portgroup, with all the bits
brought together at guest startup time and combined into a single
virtualport to be used by the guest. This was somehow overlooked in
the implementation, though - it simply picks the "most specific"
virtualport, and uses the entire thing, with no attempt to merge in
details from the others.
This patch uses virNetDevVPortProfileMerge3() to combine the three
possible virtualports into one, then uses
virNetDevVPortProfileCheck*() to verify that the resulting virtualport
type is appropriate for the type of network, and that all the required
attributes for that type are present.
An example of usage is this: assuming a <network> definitions on host
ABC of:
<network>
<name>testA</name>
...
<virtualport type='openvswitch'/>
...
<portgroup name='engineering'>
<virtualport>
<parameters profileid='eng'/>
</virtualport>
</portgroup>
<portgroup name='sales'>
<virtualport>
<parameters profileid='sales'/>
</virtualport>
</portgroup>
</network>
and the same <network> on host DEF of:
<network>
<name>testA</name>
...
<virtualport type='802.1Qbg'>
<parameters typeid="1193047" typeidversion="2"/>
</virtualport>
...
<portgroup name='engineering'>
<virtualport>
<parameters managerid="11"/>
</virtualport>
</portgroup>
<portgroup name='sales'>
<virtualport>
<parameters managerid="55"/>
</virtualport>
</portgroup>
</network>
and a guest <interface> definition of:
<interface type='network'>
<source network='testA' portgroup='sales'/>
<virtualport>
<parameters instanceid="09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f"
interfaceid="09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f"\>
</virtualport>
...
</interface>
If the guest was started on host ABC, the <virtualport> used would be:
<virtualport type='openvswitch'>
<parameters interfaceid='09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f'
profileid='sales'/>
</virtualport>
but if that guest was started on host DEF, the <virtualport> would be:
<virtualport type='802.1Qbg'>
<parameters instanceid="09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f"
typeid="1193047" typeidversion="2"
managerid="55"/>
</virtualport>
Additionally, if none of the involved <virtualport>s had a specified type
(this includes cases where no virtualport is given at all),
2012-08-02 18:10:00 +00:00
|
|
|
specified, <span class="since">Since 0.9.4</span>), 2) an
|
|
|
|
existing Open vSwitch bridge that was configured outside of
|
|
|
|
libvirt (if both a <code><bridge name='xyz'/></code>
|
|
|
|
element <b>and</b> a <code><virtualport
|
|
|
|
type='openvswitch'/></code> have been
|
|
|
|
specified <span class="since">Since 0.10.0</span>) 3) an
|
|
|
|
interface or group of interfaces to be used for a "direct"
|
|
|
|
connection via macvtap using macvtap's "bridge" mode (if
|
|
|
|
the forward element has one or
|
|
|
|
more <code><interface></code>
|
|
|
|
subelements, <span class="since">Since 0.9.4</span>)
|
2011-08-10 05:41:19 +00:00
|
|
|
(see <a href="formatdomain.html#elementsNICSDirect">Direct
|
|
|
|
attachment to physical interface</a> for descriptions of
|
|
|
|
the various macvtap modes). libvirt doesn't attempt to
|
|
|
|
manage the bridge interface at all, thus
|
|
|
|
the <code><bridge></code> element's <code>stp</code>
|
|
|
|
and <code>delay</code> attributes are not allowed; no
|
|
|
|
iptables rules, IP addresses, or DHCP/DNS services are
|
|
|
|
added; at the IP level, the guest interface appears to be
|
|
|
|
directly connected to the physical
|
|
|
|
interface.<span class="since">Since 0.9.4</span>
|
|
|
|
</dd>
|
|
|
|
<dt><code>private</code></dt>
|
|
|
|
<dd>
|
|
|
|
This network uses a macvtap "direct" connection in
|
|
|
|
"private" mode to connect each guest to the network. The
|
|
|
|
physical interface to be used will be picked from among
|
|
|
|
those listed in <code><interface></code> subelements
|
|
|
|
of the <code><forward></code> element; when using
|
|
|
|
802.1Qbh mode (as indicated by
|
|
|
|
the <code><virtualport></code> type attribute - note
|
|
|
|
that this requires an 802.1Qbh-capable hardware switch),
|
|
|
|
each physical interface can only be in use by a single
|
|
|
|
guest interface at a time; in modes other than 802.1Qbh,
|
|
|
|
multiple guest interfaces can share each physical
|
|
|
|
interface (libvirt will attempt to balance usage between
|
|
|
|
all available interfaces).<span class="since">Since
|
|
|
|
0.9.4</span>
|
|
|
|
</dd>
|
|
|
|
<dt><code>vepa</code></dt>
|
|
|
|
<dd>
|
|
|
|
This network uses a macvtap "direct" connection in "vepa"
|
|
|
|
mode to connect each guest to the network (this requires
|
|
|
|
that the physical interfaces used be connected to a
|
|
|
|
vepa-capable hardware switch. The physical interface to be
|
|
|
|
used will be picked from among those listed
|
|
|
|
in <code><interface></code> subelements of
|
|
|
|
the <code><forward></code> element; multiple guest
|
|
|
|
interfaces can share each physical interface (libvirt will
|
|
|
|
attempt to balance usage between all available
|
|
|
|
interfaces).<span class="since">Since 0.9.4</span>
|
|
|
|
</dd>
|
|
|
|
<dt><code>passthrough</code></dt>
|
|
|
|
<dd>
|
|
|
|
This network uses a macvtap "direct" connection in
|
|
|
|
"passthrough" mode to connect each guest to the network
|
|
|
|
(note that this is <i>not</i> the same thing as "PCI
|
|
|
|
passthrough"). The physical interface to be used will be
|
|
|
|
picked from among those listed
|
|
|
|
in <code><interface></code> subelements of
|
|
|
|
the <code><forward></code> element. Each physical
|
|
|
|
interface can only be in use by a single guest interface
|
|
|
|
at a time, so libvirt will keep track of which interfaces
|
|
|
|
are currently in use, and only assign unused interfaces
|
|
|
|
(if there are no available physical interfaces when a
|
|
|
|
domain interface is being attached, an error will be
|
|
|
|
logged, and the operation causing the attach will fail
|
|
|
|
(usually either a domain start, or a hotplug interface
|
|
|
|
attach to a domain).<span class="since">Since 0.9.4</span>
|
|
|
|
</dd>
|
2012-08-16 15:42:31 +00:00
|
|
|
<dt><code>hostdev</code></dt>
|
|
|
|
<dd>
|
|
|
|
This network facilitates PCI Passthrough of a network
|
|
|
|
device. A network device is chosen from the interface
|
|
|
|
pool and directly assigned to the guest using generic
|
|
|
|
device passthrough, after first optionally setting the
|
|
|
|
device's MAC address and vlan tag to the configured value,
|
|
|
|
and optionally associating the device with an 802.1Qbh
|
|
|
|
capable switch using a <code><virtualport></code>
|
|
|
|
element. Note that - due to limitations in standard
|
|
|
|
single-port PCI ethernet card driver design - only SR-IOV
|
|
|
|
(Single Root I/O Virtualization) virtual function (VF)
|
|
|
|
devices can be assigned in this manner; to assign a
|
|
|
|
standard single-port PCI or PCIe ethernet card to a guest,
|
|
|
|
use the traditional <code>< hostdev></code> device
|
|
|
|
definition. <span class="since"> Since 0.10.0</span>
|
|
|
|
|
2013-03-15 19:15:14 +00:00
|
|
|
<p>
|
|
|
|
To use VFIO device assignment rather than
|
|
|
|
traditional/legacy KVM device assignment (VFIO is a new
|
|
|
|
method of device assignment that is compatible with UEFI
|
|
|
|
Secure Boot), a <forward type='hostdev'> interface
|
|
|
|
can have an optional <code>driver</code> sub-element
|
|
|
|
with a <code>name</code> attribute set to "vfio". To use
|
|
|
|
legacy KVM device assignment you can
|
|
|
|
set <code>name</code> to "kvm" (or simply omit the
|
|
|
|
<driver> element, since "kvm" is currently the
|
|
|
|
default).
|
|
|
|
<span class="since">Since 1.0.5 (QEMU and KVM only, requires kernel 3.6 or newer)</span>
|
|
|
|
</p>
|
|
|
|
|
2012-08-16 15:42:31 +00:00
|
|
|
<p>Note that this "intelligent passthrough" of network
|
|
|
|
devices is very similar to the functionality of a
|
|
|
|
standard <code>< hostdev></code> device, the
|
|
|
|
difference being that this method allows specifying a MAC
|
|
|
|
address, vlan tag, and <code><virtualport ></code>
|
|
|
|
for the passed-through device. If these capabilities are
|
|
|
|
not required, if you have a standard single-port PCI,
|
|
|
|
PCIe, or USB network card that doesn't support SR-IOV (and
|
|
|
|
hence would anyway lose the configured MAC address during
|
|
|
|
reset after being assigned to the guest domain), or if you
|
|
|
|
are using a version of libvirt older than 0.10.0, you
|
|
|
|
should use a standard
|
|
|
|
<code><hostdev></code> device definition in the
|
|
|
|
domain's configuration to assign the device to the guest
|
|
|
|
instead of defining an <code><interface
|
|
|
|
type='network'></code> pointing to a network
|
|
|
|
with <code><forward mode='hostdev'/></code>.
|
|
|
|
</p>
|
|
|
|
</dd>
|
2011-08-10 05:41:19 +00:00
|
|
|
</dl>
|
|
|
|
As mentioned above, a <code><forward></code> element can
|
|
|
|
have multiple <code><interface></code> subelements, each
|
|
|
|
one giving the name of a physical interface that can be used
|
2011-10-14 18:35:32 +00:00
|
|
|
for this network <span class="since">Since 0.9.4</span>:
|
2011-08-10 05:41:19 +00:00
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<forward mode='passthrough'>
|
|
|
|
<interface dev='eth10'/>
|
|
|
|
<interface dev='eth11'/>
|
|
|
|
<interface dev='eth12'/>
|
|
|
|
<interface dev='eth13'/>
|
|
|
|
<interface dev='eth14'/>
|
|
|
|
</forward>
|
|
|
|
...
|
|
|
|
</pre>
|
2012-08-06 20:17:58 +00:00
|
|
|
<p>
|
|
|
|
<span class="since">since 0.10.0</span>,
|
|
|
|
<code><interface></code> also has an optional read-only
|
|
|
|
attribute - when examining the live configuration of a
|
|
|
|
network, the attribute <code>connections</code>, if present,
|
|
|
|
specifies the number of guest interfaces currently connected
|
|
|
|
via this physical interface.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Additionally, <span class="since">since 0.9.10</span>, libvirt
|
|
|
|
allows a shorthand for specifying all virtual interfaces
|
|
|
|
associated with a single physical function, by using
|
|
|
|
the <code><pf></code> subelement to call out the
|
|
|
|
corresponding physical interface associated with multiple
|
|
|
|
virtual interfaces:
|
|
|
|
</p>
|
2011-12-14 10:50:23 +00:00
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<forward mode='passthrough'>
|
|
|
|
<pf dev='eth0'/>
|
|
|
|
</forward>
|
|
|
|
...
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<p>When a guest interface is being constructed, libvirt will pick
|
2011-08-10 05:41:19 +00:00
|
|
|
an interface from this list to use for the connection. In
|
|
|
|
modes where physical interfaces can be shared by multiple
|
|
|
|
guest interfaces, libvirt will choose the interface that
|
|
|
|
currently has the least number of connections. For those modes
|
|
|
|
that do not allow sharing of the physical device (in
|
|
|
|
particular, 'passthrough' mode, and 'private' mode when using
|
|
|
|
802.1Qbh), libvirt will choose an unused physical interface
|
2011-12-14 10:50:23 +00:00
|
|
|
or, if it can't find an unused interface, fail the operation.</p>
|
2012-08-16 15:42:31 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
<span class="since">since 0.10.0</span> When using forward
|
|
|
|
mode 'hostdev', the interface pool is specified with a list
|
|
|
|
of <code><address></code> elements, each of which has
|
|
|
|
<code>< type></code> (must always be <code>'pci'</code>,
|
|
|
|
<code><domain></code>, <code><bus></code>,
|
|
|
|
<code><slot></code>, and <code><function></code>
|
|
|
|
attributes.
|
|
|
|
</p>
|
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<forward mode='hostdev' managed='yes'>
|
2013-03-15 19:15:14 +00:00
|
|
|
<driver name='vfio'/>
|
2012-08-16 15:42:31 +00:00
|
|
|
<address type='pci' domain='0' bus='4' slot='0' function='1'/>
|
|
|
|
<address type='pci' domain='0' bus='4' slot='0' function='2'/>
|
|
|
|
<address type='pci' domain='0' bus='4' slot='0' function='3'/>
|
|
|
|
</forward>
|
|
|
|
...
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
Alternatively the interface pool can also be defined using a
|
|
|
|
single physical function <code><pf></code> subelement to
|
|
|
|
call out the corresponding physical interface associated with
|
|
|
|
multiple virtual interfaces (similar to passthrough mode):
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<forward mode='hostdev' managed='yes'>
|
|
|
|
<pf dev='eth0'/>
|
|
|
|
</forward>
|
|
|
|
...
|
|
|
|
</pre>
|
|
|
|
|
2011-08-10 05:41:19 +00:00
|
|
|
</dd>
|
2008-04-29 14:08:08 +00:00
|
|
|
</dl>
|
2011-07-22 14:07:23 +00:00
|
|
|
<h5><a name="elementQoS">Quality of service</a></h5>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<forward mode='nat' dev='eth0'/>
|
|
|
|
<b><bandwidth>
|
|
|
|
<inbound average='1000' peak='5000' burst='5120'/>
|
|
|
|
<outbound average='128' peak='256' burst='256'/>
|
|
|
|
</bandwidth></b>
|
|
|
|
...</pre>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
This part of network XML provides setting quality of service. Incoming
|
|
|
|
and outgoing traffic can be shaped independently. The
|
|
|
|
<code>bandwidth</code> element can have at most one <code>inbound</code>
|
|
|
|
and at most one <code>outbound</code> child elements. Leaving any of these
|
|
|
|
children element out result in no QoS applied on that traffic direction.
|
|
|
|
So, when you want to shape only network's incoming traffic, use
|
|
|
|
<code>inbound</code> only, and vice versa. Each of these elements have one
|
|
|
|
mandatory attribute <code>average</code>. It specifies average bit rate on
|
|
|
|
interface being shaped. Then there are two optional attributes:
|
|
|
|
<code>peak</code>, which specifies maximum rate at which bridge can send
|
|
|
|
data, and <code>burst</code>, amount of bytes that can be burst at
|
|
|
|
<code>peak</code> speed. Accepted values for attributes are integer
|
|
|
|
numbers, The units for <code>average</code> and <code>peak</code> attributes
|
|
|
|
are kilobytes per second, and for the <code>burst</code> just kilobytes.
|
|
|
|
The rate is shared equally within domains connected to the network.
|
2011-07-26 12:42:37 +00:00
|
|
|
Moreover, <code>bandwidth</code> element can be included in
|
|
|
|
<code>portgroup</code> element.
|
2011-07-22 14:07:23 +00:00
|
|
|
<span class="since">Since 0.9.4</span>
|
|
|
|
</p>
|
2008-04-29 14:08:08 +00:00
|
|
|
|
2012-08-12 07:51:30 +00:00
|
|
|
<h5><a name="elementVlanTag">Setting VLAN tag (on supported network types only)</a></h5>
|
|
|
|
|
|
|
|
<pre>
|
2013-06-26 06:13:45 +00:00
|
|
|
<network>
|
|
|
|
<name>ovs-net</name>
|
|
|
|
<forward mode='bridge'/>
|
|
|
|
<bridge name='ovsbr0'/>
|
|
|
|
<virtualport type='openvswitch'>
|
|
|
|
<parameters interfaceid='09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f'/>
|
|
|
|
</virtualport>
|
|
|
|
<b><vlan trunk='yes'></b>
|
|
|
|
<b><tag id='42' nativeMode='untagged'/></b>
|
|
|
|
<b><tag id='47'/></b>
|
|
|
|
<b></vlan></b>
|
|
|
|
<portgroup name='dontpanic'>
|
|
|
|
<b><vlan></b>
|
|
|
|
<b><tag id='42'/></b>
|
|
|
|
<b></vlan></b>
|
|
|
|
</portgroup>
|
|
|
|
</network>
|
|
|
|
</pre>
|
2012-08-12 07:51:30 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
If (and only if) the network type supports vlan tagging
|
|
|
|
transparent to the guest, an optional <code><vlan></code>
|
|
|
|
element can specify one or more vlan tags to apply to the
|
|
|
|
traffic of all guests using this
|
|
|
|
network <span class="since">Since 0.10.0</span>. (openvswitch
|
|
|
|
and type='hostdev' SR-IOV networks do support transparent vlan
|
|
|
|
tagging of guest traffic; everything else, including standard
|
|
|
|
linux bridges and libvirt's own virtual networks, <b>do not</b>
|
|
|
|
support it. 802.1Qbh (vn-link) and 802.1Qbg (VEPA) switches
|
|
|
|
provide their own way (outside of libvirt) to tag guest traffic
|
|
|
|
onto specific vlans.) As expected, the <code>tag</code>
|
|
|
|
attribute specifies which vlan tag to use. If a network has more
|
|
|
|
than one <code><vlan></code> element defined, it is
|
|
|
|
assumed that the user wants to do VLAN trunking using all the
|
|
|
|
specified tags. In the case that vlan trunking with a single tag
|
|
|
|
is desired, the optional attribute <code>trunk='yes'</code> can
|
|
|
|
be added to the vlan element.
|
|
|
|
</p>
|
2013-05-23 17:12:10 +00:00
|
|
|
<p>
|
|
|
|
For network connections using openvswitch it is possible to
|
|
|
|
configure the 'native-tagged' and 'native-untagged' vlan modes
|
2013-06-25 13:25:29 +00:00
|
|
|
<span class="since">Since 1.1.0</span>. This uses the optional
|
2013-05-23 17:12:10 +00:00
|
|
|
<code>nativeMode</code> attribute on the <code><tag></code>
|
|
|
|
element: <code>nativeMode</code> may be set to 'tagged' or
|
2013-09-10 18:10:55 +00:00
|
|
|
'untagged'. The id attribute of the element sets the native vlan.
|
2013-05-23 17:12:10 +00:00
|
|
|
</p>
|
2012-08-12 07:51:30 +00:00
|
|
|
<p>
|
|
|
|
<code><vlan></code> elements can also be specified in
|
|
|
|
a <code><portgroup></code> element, as well as directly in
|
|
|
|
a domain's <code><interface></code> element. In the case
|
|
|
|
that a vlan tag is specified in multiple locations, the setting
|
|
|
|
in <code><interface></code> takes precedence, followed by
|
|
|
|
the setting in the <code><portgroup></code> selected by
|
|
|
|
the interface config. The <code><vlan></code>
|
|
|
|
in <code><network></code> will be selected only if none is
|
|
|
|
given in <code><portgroup></code>
|
|
|
|
or <code><interface></code>.
|
|
|
|
</p>
|
|
|
|
|
2011-08-10 05:41:19 +00:00
|
|
|
<h5><a name="elementsPortgroup">Portgroups</a></h5>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<forward mode='private'/>
|
|
|
|
<interface dev="eth20"/>
|
|
|
|
<interface dev="eth21"/>
|
|
|
|
<interface dev="eth22"/>
|
|
|
|
<interface dev="eth23"/>
|
|
|
|
<interface dev="eth24"/>
|
|
|
|
</forward>
|
|
|
|
<b><portgroup name='engineering' default='yes'>
|
|
|
|
<virtualport type='802.1Qbh'>
|
|
|
|
<parameters profileid='test'/>
|
|
|
|
</virtualport>
|
|
|
|
<bandwidth>
|
|
|
|
<inbound average='1000' peak='5000' burst='5120'/>
|
|
|
|
<outbound average='1000' peak='5000' burst='5120'/>
|
|
|
|
</bandwidth>
|
|
|
|
</portgroup></b>
|
|
|
|
<b><portgroup name='sales'>
|
|
|
|
<virtualport type='802.1Qbh'>
|
|
|
|
<parameters profileid='salestest'/>
|
|
|
|
</virtualport>
|
|
|
|
<bandwidth>
|
|
|
|
<inbound average='500' peak='2000' burst='2560'/>
|
|
|
|
<outbound average='128' peak='256' burst='256'/>
|
|
|
|
</bandwidth>
|
|
|
|
</portgroup></b>
|
|
|
|
...</pre>
|
|
|
|
|
|
|
|
<p>
|
2011-10-14 18:35:32 +00:00
|
|
|
<span class="since">Since 0.9.4</span>
|
2011-08-10 05:41:19 +00:00
|
|
|
A portgroup provides a method of easily putting guest
|
|
|
|
connections to the network into different classes, with each
|
2011-10-14 18:35:32 +00:00
|
|
|
class potentially having a different level/type of service.
|
|
|
|
<span class="since">Since 0.9.4</span> Each
|
2011-08-10 05:41:19 +00:00
|
|
|
network can have multiple portgroup elements (and one of those
|
|
|
|
can optionally be designated as the 'default' portgroup for the
|
|
|
|
network), and each portgroup has a name, as well as various
|
|
|
|
subelements associated with it. The currently supported
|
|
|
|
subelements are <code><bandwidth></code>
|
|
|
|
(documented <a href="formatdomain.html#elementQoS">here</a>)
|
|
|
|
and <code><virtualport></code>
|
|
|
|
(documented <a href="formatdomain.html#elementsNICSDirect">here</a>).
|
|
|
|
If a domain interface definition specifies a portgroup (by
|
|
|
|
adding a <code>portgroup</code> attribute to
|
|
|
|
the <code><source></code> subelement), that portgroup's
|
|
|
|
info will be merged into the interface's configuration. If no
|
|
|
|
portgroup is given in the interface definition, and one of the
|
|
|
|
network's portgroups has <code>default='yes'</code>, that
|
|
|
|
default portgroup will be used. If no portgroup is given in the
|
|
|
|
interface definition, and there is no default portgroup, then
|
|
|
|
none will be used. Any <code><bandwidth></code>
|
network: merge relevant virtualports rather than choosing one
One of the original ideas behind allowing a <virtualport> in an
interface definition as well as in the <network> definition *and*one
or more <portgroup>s within the network, was that guest-specific
parameteres (like instanceid and interfaceid) could be given in the
interface's virtualport, and more general things (portid, managerid,
etc) could be given in the network and/or portgroup, with all the bits
brought together at guest startup time and combined into a single
virtualport to be used by the guest. This was somehow overlooked in
the implementation, though - it simply picks the "most specific"
virtualport, and uses the entire thing, with no attempt to merge in
details from the others.
This patch uses virNetDevVPortProfileMerge3() to combine the three
possible virtualports into one, then uses
virNetDevVPortProfileCheck*() to verify that the resulting virtualport
type is appropriate for the type of network, and that all the required
attributes for that type are present.
An example of usage is this: assuming a <network> definitions on host
ABC of:
<network>
<name>testA</name>
...
<virtualport type='openvswitch'/>
...
<portgroup name='engineering'>
<virtualport>
<parameters profileid='eng'/>
</virtualport>
</portgroup>
<portgroup name='sales'>
<virtualport>
<parameters profileid='sales'/>
</virtualport>
</portgroup>
</network>
and the same <network> on host DEF of:
<network>
<name>testA</name>
...
<virtualport type='802.1Qbg'>
<parameters typeid="1193047" typeidversion="2"/>
</virtualport>
...
<portgroup name='engineering'>
<virtualport>
<parameters managerid="11"/>
</virtualport>
</portgroup>
<portgroup name='sales'>
<virtualport>
<parameters managerid="55"/>
</virtualport>
</portgroup>
</network>
and a guest <interface> definition of:
<interface type='network'>
<source network='testA' portgroup='sales'/>
<virtualport>
<parameters instanceid="09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f"
interfaceid="09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f"\>
</virtualport>
...
</interface>
If the guest was started on host ABC, the <virtualport> used would be:
<virtualport type='openvswitch'>
<parameters interfaceid='09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f'
profileid='sales'/>
</virtualport>
but if that guest was started on host DEF, the <virtualport> would be:
<virtualport type='802.1Qbg'>
<parameters instanceid="09b11c53-8b5c-4eeb-8f00-d84eaa0aaa4f"
typeid="1193047" typeidversion="2"
managerid="55"/>
</virtualport>
Additionally, if none of the involved <virtualport>s had a specified type
(this includes cases where no virtualport is given at all),
2012-08-02 18:10:00 +00:00
|
|
|
|
|
|
|
specified directly in the domain XML will take precedence over
|
|
|
|
any setting in the chosen portgroup. if
|
|
|
|
a <code><virtualport></code> is specified in the portgroup
|
|
|
|
(and/or directly in the network definition), the multiple
|
|
|
|
virtualports will be merged, and any parameter that is specified
|
|
|
|
in more than one virtualport, and is not identical, will be
|
|
|
|
considered an error, and will prevent the interface from
|
|
|
|
starting.
|
2011-08-10 05:41:19 +00:00
|
|
|
</p>
|
|
|
|
|
Support for static routes on a virtual bridge
network: static route support for <network>
This patch adds the <route> subelement of <network> to define a static
route. the address and prefix (or netmask) attribute identify the
destination network, and the gateway attribute specifies the next hop
address (which must be directly reachable from the containing
<network>) which is to receive the packets destined for
"address/(prefix|netmask)".
These attributes are translated into an "ip route add" command that is
executed when the network is started. The command used is of the
following form:
ip route add <address>/<prefix> via <gateway> \
dev <virbr-bridge> proto static metric <metric>
Tests are done to validate that the input data are correct. For
example, for a static route ip definition, the address must be a
network address and not a host address. Additional checks are added
to ensure that the specified gateway is directly reachable via this
network (i.e. that the gateway IP address is in the same subnet as one
of the IP's defined for the network).
prefix='0' is supported for both family='ipv4' address='0.0.0.0'
netmask='0.0.0.0' or prefix='0', and for family='ipv6' address='::',
prefix=0', although care should be taken to not override a desired
system default route.
Anytime an attempt is made to define a static route which *exactly*
duplicates an existing static route (for example, address=::,
prefix=0, metric=1), the following error message will be sent to
syslog:
RTNETLINK answers: File exists
This can be overridden by decreasing the metric value for the route
that should be preferred, or increasing the metric for the route that
shouldn't be preferred (and is thus in place only in anticipation that
the preferred route may be removed in the future). Caution should be
used when manipulating route metrics, especially for a default route.
Note: The use of the command-line interface should be replaced by
direct use of libnl so that error conditions can be handled better. But,
that is being left as an exercise for another day.
Signed-off-by: Gene Czarcinski <gene@czarc.net>
Signed-off-by: Laine Stump <laine@laine.org>
2013-05-07 17:42:55 +00:00
|
|
|
<h5><a name="elementsStaticroute">Static Routes</a></h5>
|
|
|
|
<p>
|
|
|
|
Static route definitions are used to provide routing information
|
|
|
|
to the virtualization host for networks which are not directly
|
|
|
|
reachable from the virtualization host, but *are* reachable from
|
|
|
|
a guest domain that is itself reachable from the
|
|
|
|
host <span class="since">since 1.0.6</span>.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
As shown in <a href="formatnetwork.html#examplesNoGateway">this
|
|
|
|
example</a>, it is possible to define a virtual network
|
|
|
|
interface with no IPv4 or IPv6 addresses. Such networks are
|
|
|
|
useful to provide host connectivity to networks which are only
|
|
|
|
reachable via a guest. A guest with connectivity both to the
|
|
|
|
guest-only network and to another network that is directly
|
|
|
|
reachable from the host can act as a gateway between the
|
|
|
|
networks. A static route added to the "host-visible" network
|
|
|
|
definition provides the routing information so that IP packets
|
|
|
|
can be sent from the virtualization host to guests on the hidden
|
|
|
|
network.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Here is a fragment of a definition which shows the static
|
|
|
|
route specification as well as the IPv4 and IPv6 definitions
|
|
|
|
for network addresses which are referred to in the
|
|
|
|
<code>gateway</code> gateway address specifications. Note
|
|
|
|
that the third static route specification includes the
|
|
|
|
<code>metric</code> attribute specification with a value of 2.
|
|
|
|
This particular route would *not* be preferred if there was
|
|
|
|
another existing rout on the system with the same address and
|
|
|
|
prefix but with a lower value for the metric. If there is a
|
2013-09-10 18:10:55 +00:00
|
|
|
route in the host system configuration that should be overridden
|
Support for static routes on a virtual bridge
network: static route support for <network>
This patch adds the <route> subelement of <network> to define a static
route. the address and prefix (or netmask) attribute identify the
destination network, and the gateway attribute specifies the next hop
address (which must be directly reachable from the containing
<network>) which is to receive the packets destined for
"address/(prefix|netmask)".
These attributes are translated into an "ip route add" command that is
executed when the network is started. The command used is of the
following form:
ip route add <address>/<prefix> via <gateway> \
dev <virbr-bridge> proto static metric <metric>
Tests are done to validate that the input data are correct. For
example, for a static route ip definition, the address must be a
network address and not a host address. Additional checks are added
to ensure that the specified gateway is directly reachable via this
network (i.e. that the gateway IP address is in the same subnet as one
of the IP's defined for the network).
prefix='0' is supported for both family='ipv4' address='0.0.0.0'
netmask='0.0.0.0' or prefix='0', and for family='ipv6' address='::',
prefix=0', although care should be taken to not override a desired
system default route.
Anytime an attempt is made to define a static route which *exactly*
duplicates an existing static route (for example, address=::,
prefix=0, metric=1), the following error message will be sent to
syslog:
RTNETLINK answers: File exists
This can be overridden by decreasing the metric value for the route
that should be preferred, or increasing the metric for the route that
shouldn't be preferred (and is thus in place only in anticipation that
the preferred route may be removed in the future). Caution should be
used when manipulating route metrics, especially for a default route.
Note: The use of the command-line interface should be replaced by
direct use of libnl so that error conditions can be handled better. But,
that is being left as an exercise for another day.
Signed-off-by: Gene Czarcinski <gene@czarc.net>
Signed-off-by: Laine Stump <laine@laine.org>
2013-05-07 17:42:55 +00:00
|
|
|
by a route in a virtual network whenever the virtual network is
|
|
|
|
running, the configuration for the system-defined route should
|
|
|
|
be modified to have a higher metric, and the route on the
|
|
|
|
virtual network given a lower metric (for example, the default
|
|
|
|
metric of "1").
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
...
|
|
|
|
<ip address="192.168.122.1" netmask="255.255.255.0">
|
|
|
|
<dhcp>
|
|
|
|
<range start="192.168.122.128" end="192.168.122.254" />
|
|
|
|
</dhcp>
|
|
|
|
</ip>
|
|
|
|
<route address="192.168.222.0" prefix="24" gateway="192.168.122.2" />
|
|
|
|
<ip family="ipv6" address="2001:db8:ca2:2::1" prefix="64" />
|
|
|
|
<route family="ipv6" address="2001:db8:ca2:3::" prefix="64" gateway="2001:db8:ca2:2::2"/>
|
|
|
|
<route family="ipv6" address="2001:db9:4:1::" prefix="64" gateway="2001:db8:ca2:2::3" metric='2'>
|
|
|
|
</route>
|
|
|
|
...
|
|
|
|
</pre>
|
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<h3><a name="elementsAddress">Addressing</a></h3>
|
2008-04-29 14:08:08 +00:00
|
|
|
|
|
|
|
<p>
|
Give each virtual network bridge its own fixed MAC address
This fixes https://bugzilla.redhat.com/show_bug.cgi?id=609463
The problem was that, since a bridge always acquires the MAC address
of the connected interface with the numerically lowest MAC, as guests
are started and stopped, it was possible for the MAC address to change
over time, and this change in the network was being detected by
Windows 7 (it sees the MAC of the default route change), so on each
reboot it would bring up a dialog box asking about this "new network".
The solution is to create a dummy tap interface with a MAC guaranteed
to be lower than any guest interface's MAC, and attach that tap to the
bridge as soon as it's created. Since all guest MAC addresses start
with 0xFE, we can just generate a MAC with the standard "0x52, 0x54,
0" prefix, and it's guaranteed to always win (physical interfaces are
never connected to these bridges, so we don't need to worry about
competing numerically with them).
Note that the dummy tap is never set to IFF_UP state - that's not
necessary in order for the bridge to take its MAC, and not setting it
to UP eliminates the clutter of having an (eg) "virbr0-nic" displayed
in the output of the ifconfig command.
I chose to not auto-generate the MAC address in the network XML
parser, as there are likely to be consumers of that API that don't
need or want to have a MAC address associated with the
bridge.
Instead, in bridge_driver.c when the network is being defined, if
there is no MAC, one is generated. To account for virtual network
configs that already exist when upgrading from an older version of
libvirt, I've added a %post script to the specfile that searches for
all network definitions in both the config directory
(/etc/libvirt/qemu/networks) and the state directory
(/var/lib/libvirt/network) that are missing a mac address, generates a
random address, and adds it to the config (and a matching address to
the state file, if there is one).
docs/formatnetwork.html.in: document <mac address.../>
docs/schemas/network.rng: add nac address to schema
libvirt.spec.in: %post script to update existing networks
src/conf/network_conf.[ch]: parse and format <mac address.../>
src/libvirt_private.syms: export a couple private symbols we need
src/network/bridge_driver.c:
auto-generate mac address when needed,
create dummy interface if mac address is present.
tests/networkxml2xmlin/isolated-network.xml
tests/networkxml2xmlin/routed-network.xml
tests/networkxml2xmlout/isolated-network.xml
tests/networkxml2xmlout/routed-network.xml: add mac address to some tests
2011-02-09 08:28:12 +00:00
|
|
|
The final set of elements define the addresses (IPv4 and/or
|
|
|
|
IPv6, as well as MAC) to be assigned to the bridge device
|
|
|
|
associated with the virtual network, and optionally enable DHCP
|
2011-08-10 05:41:19 +00:00
|
|
|
services. These elements are only valid for isolated networks
|
|
|
|
(no <code>forward</code> element specified), and for those with
|
|
|
|
a forward mode of 'route' or 'nat'.
|
2008-04-29 14:08:08 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
...
|
Give each virtual network bridge its own fixed MAC address
This fixes https://bugzilla.redhat.com/show_bug.cgi?id=609463
The problem was that, since a bridge always acquires the MAC address
of the connected interface with the numerically lowest MAC, as guests
are started and stopped, it was possible for the MAC address to change
over time, and this change in the network was being detected by
Windows 7 (it sees the MAC of the default route change), so on each
reboot it would bring up a dialog box asking about this "new network".
The solution is to create a dummy tap interface with a MAC guaranteed
to be lower than any guest interface's MAC, and attach that tap to the
bridge as soon as it's created. Since all guest MAC addresses start
with 0xFE, we can just generate a MAC with the standard "0x52, 0x54,
0" prefix, and it's guaranteed to always win (physical interfaces are
never connected to these bridges, so we don't need to worry about
competing numerically with them).
Note that the dummy tap is never set to IFF_UP state - that's not
necessary in order for the bridge to take its MAC, and not setting it
to UP eliminates the clutter of having an (eg) "virbr0-nic" displayed
in the output of the ifconfig command.
I chose to not auto-generate the MAC address in the network XML
parser, as there are likely to be consumers of that API that don't
need or want to have a MAC address associated with the
bridge.
Instead, in bridge_driver.c when the network is being defined, if
there is no MAC, one is generated. To account for virtual network
configs that already exist when upgrading from an older version of
libvirt, I've added a %post script to the specfile that searches for
all network definitions in both the config directory
(/etc/libvirt/qemu/networks) and the state directory
(/var/lib/libvirt/network) that are missing a mac address, generates a
random address, and adds it to the config (and a matching address to
the state file, if there is one).
docs/formatnetwork.html.in: document <mac address.../>
docs/schemas/network.rng: add nac address to schema
libvirt.spec.in: %post script to update existing networks
src/conf/network_conf.[ch]: parse and format <mac address.../>
src/libvirt_private.syms: export a couple private symbols we need
src/network/bridge_driver.c:
auto-generate mac address when needed,
create dummy interface if mac address is present.
tests/networkxml2xmlin/isolated-network.xml
tests/networkxml2xmlin/routed-network.xml
tests/networkxml2xmlout/isolated-network.xml
tests/networkxml2xmlout/routed-network.xml: add mac address to some tests
2011-02-09 08:28:12 +00:00
|
|
|
<mac address='00:16:3E:5D:C7:9E'/>
|
2011-10-14 18:35:32 +00:00
|
|
|
<domain name="example.com"/>
|
2011-06-24 10:04:36 +00:00
|
|
|
<dns>
|
|
|
|
<txt name="example" value="example value" />
|
2013-09-13 16:31:07 +00:00
|
|
|
<forwarder addr="8.8.8.8"/>
|
|
|
|
<forwarder addr="8.8.4.4"/>
|
2012-01-02 14:23:54 +00:00
|
|
|
<srv service='name' protocol='tcp' domain='test-domain-name' target='.' port='1024' priority='10' weight='10'/>
|
2011-10-14 18:35:32 +00:00
|
|
|
<host ip='192.168.122.2'>
|
|
|
|
<hostname>myhost</hostname>
|
|
|
|
<hostname>myhostalias</hostname>
|
2012-03-19 21:52:29 +00:00
|
|
|
</host>
|
2011-06-24 10:04:36 +00:00
|
|
|
</dns>
|
2009-11-06 15:04:19 +00:00
|
|
|
<ip address="192.168.122.1" netmask="255.255.255.0">
|
|
|
|
<dhcp>
|
|
|
|
<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>
|
2011-08-11 04:19:11 +00:00
|
|
|
<ip family="ipv6" address="2001:db8:ca2:2::1" prefix="64" />
|
Support for static routes on a virtual bridge
network: static route support for <network>
This patch adds the <route> subelement of <network> to define a static
route. the address and prefix (or netmask) attribute identify the
destination network, and the gateway attribute specifies the next hop
address (which must be directly reachable from the containing
<network>) which is to receive the packets destined for
"address/(prefix|netmask)".
These attributes are translated into an "ip route add" command that is
executed when the network is started. The command used is of the
following form:
ip route add <address>/<prefix> via <gateway> \
dev <virbr-bridge> proto static metric <metric>
Tests are done to validate that the input data are correct. For
example, for a static route ip definition, the address must be a
network address and not a host address. Additional checks are added
to ensure that the specified gateway is directly reachable via this
network (i.e. that the gateway IP address is in the same subnet as one
of the IP's defined for the network).
prefix='0' is supported for both family='ipv4' address='0.0.0.0'
netmask='0.0.0.0' or prefix='0', and for family='ipv6' address='::',
prefix=0', although care should be taken to not override a desired
system default route.
Anytime an attempt is made to define a static route which *exactly*
duplicates an existing static route (for example, address=::,
prefix=0, metric=1), the following error message will be sent to
syslog:
RTNETLINK answers: File exists
This can be overridden by decreasing the metric value for the route
that should be preferred, or increasing the metric for the route that
shouldn't be preferred (and is thus in place only in anticipation that
the preferred route may be removed in the future). Caution should be
used when manipulating route metrics, especially for a default route.
Note: The use of the command-line interface should be replaced by
direct use of libnl so that error conditions can be handled better. But,
that is being left as an exercise for another day.
Signed-off-by: Gene Czarcinski <gene@czarc.net>
Signed-off-by: Laine Stump <laine@laine.org>
2013-05-07 17:42:55 +00:00
|
|
|
<route family="ipv6" address="2001:db9:ca1:1::" prefix="64" gateway="2001:db8:ca2:2::2" />
|
2008-04-29 14:08:08 +00:00
|
|
|
</network></pre>
|
|
|
|
|
|
|
|
<dl>
|
Give each virtual network bridge its own fixed MAC address
This fixes https://bugzilla.redhat.com/show_bug.cgi?id=609463
The problem was that, since a bridge always acquires the MAC address
of the connected interface with the numerically lowest MAC, as guests
are started and stopped, it was possible for the MAC address to change
over time, and this change in the network was being detected by
Windows 7 (it sees the MAC of the default route change), so on each
reboot it would bring up a dialog box asking about this "new network".
The solution is to create a dummy tap interface with a MAC guaranteed
to be lower than any guest interface's MAC, and attach that tap to the
bridge as soon as it's created. Since all guest MAC addresses start
with 0xFE, we can just generate a MAC with the standard "0x52, 0x54,
0" prefix, and it's guaranteed to always win (physical interfaces are
never connected to these bridges, so we don't need to worry about
competing numerically with them).
Note that the dummy tap is never set to IFF_UP state - that's not
necessary in order for the bridge to take its MAC, and not setting it
to UP eliminates the clutter of having an (eg) "virbr0-nic" displayed
in the output of the ifconfig command.
I chose to not auto-generate the MAC address in the network XML
parser, as there are likely to be consumers of that API that don't
need or want to have a MAC address associated with the
bridge.
Instead, in bridge_driver.c when the network is being defined, if
there is no MAC, one is generated. To account for virtual network
configs that already exist when upgrading from an older version of
libvirt, I've added a %post script to the specfile that searches for
all network definitions in both the config directory
(/etc/libvirt/qemu/networks) and the state directory
(/var/lib/libvirt/network) that are missing a mac address, generates a
random address, and adds it to the config (and a matching address to
the state file, if there is one).
docs/formatnetwork.html.in: document <mac address.../>
docs/schemas/network.rng: add nac address to schema
libvirt.spec.in: %post script to update existing networks
src/conf/network_conf.[ch]: parse and format <mac address.../>
src/libvirt_private.syms: export a couple private symbols we need
src/network/bridge_driver.c:
auto-generate mac address when needed,
create dummy interface if mac address is present.
tests/networkxml2xmlin/isolated-network.xml
tests/networkxml2xmlin/routed-network.xml
tests/networkxml2xmlout/isolated-network.xml
tests/networkxml2xmlout/routed-network.xml: add mac address to some tests
2011-02-09 08:28:12 +00:00
|
|
|
<dt><code>mac</code></dt>
|
|
|
|
<dd>The <code>address</code> attribute defines a MAC
|
|
|
|
(hardware) address formatted as 6 groups of 2-digit
|
|
|
|
hexadecimal numbers, the groups separated by colons
|
|
|
|
(eg, <code>"52:54:00:1C:DA:2F"</code>). This MAC address is
|
|
|
|
assigned to the bridge device when it is created. Generally
|
|
|
|
it is best to not specify a MAC address when creating a
|
|
|
|
network - in this case, if a defined MAC address is needed for
|
|
|
|
proper operation, libvirt will automatically generate a random
|
|
|
|
MAC address and save it in the config. Allowing libvirt to
|
|
|
|
generate the MAC address will assure that it is compatible
|
|
|
|
with the idiosyncrasies of the platform where libvirt is
|
|
|
|
running. <span class="since">Since 0.8.8</span>
|
|
|
|
</dd>
|
2013-08-13 22:56:38 +00:00
|
|
|
<dt><code>dns</code></dt>
|
|
|
|
<dd> The dns element of a network contains configuration
|
|
|
|
information for the virtual network's DNS
|
|
|
|
server <span class="since">Since 0.9.3</span>.
|
|
|
|
|
|
|
|
<p>
|
|
|
|
The dns element
|
|
|
|
can have an optional <code>forwardPlainNames</code>
|
|
|
|
attribute <span class="since">Since 1.1.2</span>.
|
|
|
|
If <code>forwardPlainNames</code> is "no", then DNS resolution
|
|
|
|
requests for names that are not qualified with a domain
|
|
|
|
(i.e. names with no "." character) will not be forwarded to
|
|
|
|
the host's upstream DNS server - they will only be resolved if
|
|
|
|
they are known locally within the virtual network's own DNS
|
|
|
|
server. If <code>forwardPlainNames</code> is "yes",
|
|
|
|
unqualified names <b>will</b> be forwarded to the upstream DNS
|
|
|
|
server if they can't be resolved by the virtual network's own
|
|
|
|
DNS server.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
Currently supported sub-elements of <code><dns></code> are:
|
2011-06-24 10:04:36 +00:00
|
|
|
<dl>
|
2013-09-13 16:31:07 +00:00
|
|
|
<dt><code>forwarder</code></dt>
|
|
|
|
<dd>A <code>dns</code> element can have 0 or
|
|
|
|
more <code>forwarder</code> elements. Each forwarder
|
|
|
|
element defines an IP address to be used as forwarder in
|
|
|
|
DNS server configuration. The addr attribute is required
|
|
|
|
and defines the IP address of every
|
|
|
|
forwarder. <span class="since">Since 1.1.3</span>
|
|
|
|
</dd>
|
2011-06-24 10:04:36 +00:00
|
|
|
<dt><code>txt</code></dt>
|
|
|
|
<dd>A <code>dns</code> element can have 0 or more <code>txt</code> elements.
|
|
|
|
Each txt element defines a DNS TXT record and has two attributes, both
|
|
|
|
required: a name that can be queried via dns, and a value that will be
|
|
|
|
returned when that name is queried. names cannot contain embedded spaces
|
|
|
|
or commas. value is a single string that can contain multiple values
|
|
|
|
separated by commas. <span class="since">Since 0.9.3</span>
|
|
|
|
</dd>
|
2011-06-24 10:04:40 +00:00
|
|
|
<dt><code>host</code></dt>
|
|
|
|
<dd>The <code>host</code> element within <code>dns</code> is the
|
|
|
|
definition of DNS hosts to be passed to the DNS service. The IP
|
|
|
|
address is identified by the <code>ip</code> attribute and the names
|
|
|
|
for that IP address are identified in the <code>hostname</code>
|
|
|
|
sub-elements of the <code>host</code> element.
|
|
|
|
<span class="since">Since 0.9.3</span>
|
|
|
|
</dd>
|
2011-06-24 10:04:36 +00:00
|
|
|
</dl>
|
2012-01-02 14:23:54 +00:00
|
|
|
<dl>
|
|
|
|
<dt><code>srv</code></dt>
|
|
|
|
<dd>The <code>dns</code> element can have also 0 or more <code>srv</code>
|
|
|
|
record elements. Each <code>srv</code> record element defines a DNS SRV record
|
|
|
|
and has 2 mandatory and 5 optional attributes. The mandatory attributes
|
|
|
|
are service name and protocol (tcp, udp) and the optional attributes are
|
|
|
|
target, port, priority, weight and domain as defined in DNS server SRV
|
|
|
|
RFC (RFC 2782).
|
|
|
|
<span class="since">Since 0.9.9</span>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
2011-06-24 10:04:36 +00:00
|
|
|
</dd>
|
2011-06-24 21:48:55 +00:00
|
|
|
<dt><code>ip</code></dt>
|
|
|
|
<dd>The <code>address</code> attribute defines an IPv4 address in
|
|
|
|
dotted-decimal format, or an IPv6 address in standard
|
|
|
|
colon-separated hexadecimal format, that will be configured on
|
|
|
|
the bridge
|
2012-12-06 17:20:38 +00:00
|
|
|
device associated with the virtual network. To the guests this IPv4
|
|
|
|
address will be their IPv4 default route. For IPv6, the default route is
|
|
|
|
established via Router Advertisement.
|
|
|
|
For IPv4 addresses, the <code>netmask</code>
|
2011-06-24 21:48:55 +00:00
|
|
|
attribute defines the significant bits of the network address,
|
|
|
|
again specified in dotted-decimal format. For IPv6 addresses,
|
|
|
|
and as an alternate method for IPv4 addresses, you can specify
|
|
|
|
the significant bits of the network address with the <code>prefix</code>
|
|
|
|
attribute, which is an integer (for example, <code>netmask='255.255.255.0'</code>
|
|
|
|
could also be given as <code>prefix='24'</code>. The <code>family</code>
|
|
|
|
attribute is used to specify the type of address - 'ipv4' or 'ipv6'; if no
|
|
|
|
<code>family</code> is given, 'ipv4' is assumed. A network can have more than
|
2012-12-06 17:20:38 +00:00
|
|
|
one of each family of address defined, but only a single IPv4 address can have a
|
|
|
|
<code>dhcp</code> or <code>tftp</code> element. <span class="since">Since 0.3.0 </span>
|
2011-06-24 21:48:55 +00:00
|
|
|
IPv6, multiple addresses on a single network, <code>family</code>, and
|
2012-12-06 17:20:38 +00:00
|
|
|
<code>prefix</code> are support <span class="since">Since 0.8.7</span>.
|
|
|
|
Similar to IPv4, one IPv6 address per network can also have
|
|
|
|
a <code>dhcp</code> definition. <span class="since">Since 1.0.1</span>
|
|
|
|
|
2011-06-24 21:48:55 +00:00
|
|
|
<dl>
|
|
|
|
<dt><code>tftp</code></dt>
|
|
|
|
<dd>Immediately within
|
|
|
|
the <code>ip</code> element there is an optional <code>tftp</code>
|
|
|
|
element. The presence of this element and of its attribute
|
|
|
|
<code>root</code> enables TFTP services. The attribute specifies
|
|
|
|
the path to the root directory served via TFTP. <code>tftp</code> is not
|
|
|
|
supported for IPv6 addresses, and can only be specified on a single IPv4 address
|
|
|
|
per network.
|
|
|
|
<span class="since">Since 0.7.1</span>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt><code>dhcp</code></dt>
|
|
|
|
<dd>Also within the <code>ip</code> element there is an
|
|
|
|
optional <code>dhcp</code> element. The presence of this element
|
|
|
|
enables DHCP services on the virtual network. It will further
|
|
|
|
contain one or more <code>range</code> elements. The
|
2012-12-06 17:20:38 +00:00
|
|
|
<code>dhcp</code> element supported for both
|
|
|
|
IPv4 <span class="since">Since 0.3.0</span>
|
|
|
|
and IPv6 <span class="since">Since 1.0.1</span>, but
|
|
|
|
only for one IP address of each type per network.
|
2011-06-24 21:48:55 +00:00
|
|
|
<dl>
|
|
|
|
<dt><code>range</code></dt>
|
|
|
|
<dd>The <code>start</code> and <code>end</code> attributes on the
|
|
|
|
<code>range</code> element specify the boundaries of a pool of
|
2012-12-06 17:20:38 +00:00
|
|
|
addresses to be provided to DHCP clients. These two addresses
|
2011-06-24 21:48:55 +00:00
|
|
|
must lie within the scope of the network defined on the parent
|
2012-12-06 17:20:38 +00:00
|
|
|
<code>ip</code> element. There may be zero or more
|
|
|
|
<code>range</code> elements specified.
|
|
|
|
<span class="since">Since 0.3.0</span>
|
|
|
|
<code>range</code> can be specified for one IPv4 address,
|
|
|
|
one IPv6 address, or both. <span class="since">Since 1.0.1</span>
|
2011-06-24 21:48:55 +00:00
|
|
|
</dd>
|
|
|
|
<dt><code>host</code></dt>
|
|
|
|
<dd>Within the <code>dhcp</code> element there may be zero or more
|
2012-12-06 17:20:38 +00:00
|
|
|
<code>host</code> elements. These specify hosts which will be given
|
2011-06-24 21:48:55 +00:00
|
|
|
names and predefined IP addresses by the built-in DHCP server. Any
|
2012-12-06 17:20:38 +00:00
|
|
|
IPv4 <code>host</code> element must specify the MAC address of the host to be assigned
|
2011-06-24 21:48:55 +00:00
|
|
|
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>
|
2012-12-06 17:20:38 +00:00
|
|
|
An IPv6 <code>host</code> element differs slightly from that for IPv4:
|
|
|
|
there is no <code>mac</code> attribute since a MAC address has no
|
|
|
|
defined meaning in IPv6. Instead, the <code>name</code> attribute is
|
|
|
|
used to identify the host to be assigned the IPv6 address. For DHCPv6,
|
|
|
|
the name is the plain name of the client host sent by the
|
|
|
|
client to the server. Note that this method of assigning a
|
|
|
|
specific IP address can also be used instead of the <code>mac</code>
|
|
|
|
attribute for IPv4. <span class="since">Since 1.0.1</span>
|
2011-06-24 21:48:55 +00:00
|
|
|
</dd>
|
|
|
|
<dt><code>bootp</code></dt>
|
|
|
|
<dd>The optional <code>bootp</code>
|
2012-12-06 17:20:38 +00:00
|
|
|
element specifies BOOTP options to be provided by the DHCP
|
|
|
|
server for IPv4 only.
|
2011-06-24 21:48:55 +00:00
|
|
|
Two attributes are supported: <code>file</code> is mandatory and
|
|
|
|
gives the file to be used for the boot image; <code>server</code> is
|
|
|
|
optional and gives the address of the TFTP server from which the boot
|
|
|
|
image will be fetched. <code>server</code> defaults to the same host
|
|
|
|
that runs the DHCP server, as is the case when the <code>tftp</code>
|
|
|
|
element is used. The BOOTP options currently have to be the same
|
|
|
|
for all address ranges and statically assigned addresses.<span
|
|
|
|
class="since">Since 0.7.1 (<code>server</code> since 0.7.3).</span>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
2009-10-28 14:57:49 +00:00
|
|
|
</dd>
|
2008-04-29 14:08:08 +00:00
|
|
|
</dl>
|
2008-04-23 17:08:31 +00:00
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<h2><a name="examples">Example configuration</a></h2>
|
2008-04-23 17:08:31 +00:00
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<h3><a name="examplesNAT">NAT based network</a></h3>
|
2008-04-23 17:08:31 +00:00
|
|
|
|
2008-04-29 14:08:08 +00:00
|
|
|
<p>
|
|
|
|
This example is the so called "default" virtual network. It is
|
|
|
|
provided and enabled out-of-the-box for all libvirt installations.
|
|
|
|
This is a configuration that allows guest OS to get outbound
|
|
|
|
connectivity regardless of whether the host uses ethernet, wireless,
|
|
|
|
dialup, or VPN networking without requiring any specific admin
|
|
|
|
configuration. In the absence of host networking, it at least allows
|
|
|
|
guests to talk directly to each other.
|
|
|
|
</p>
|
|
|
|
|
2008-04-23 17:08:31 +00:00
|
|
|
<pre>
|
|
|
|
<network>
|
2009-11-06 15:04:19 +00:00
|
|
|
<name>default</name>
|
|
|
|
<bridge name="virbr0" />
|
|
|
|
<forward mode="nat"/>
|
|
|
|
<ip address="192.168.122.1" netmask="255.255.255.0">
|
|
|
|
<dhcp>
|
|
|
|
<range start="192.168.122.2" end="192.168.122.254" />
|
|
|
|
</dhcp>
|
|
|
|
</ip>
|
2011-08-11 04:19:11 +00:00
|
|
|
<ip family="ipv6" address="2001:db8:ca2:2::1" prefix="64" />
|
2008-04-23 17:08:31 +00:00
|
|
|
</network></pre>
|
|
|
|
|
2012-12-06 17:20:38 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Below is a variation of the above example which adds an IPv6
|
|
|
|
dhcp range definition.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
<network>
|
|
|
|
<name>default6</name>
|
|
|
|
<bridge name="virbr0" />
|
|
|
|
<forward mode="nat"/>
|
|
|
|
<ip address="192.168.122.1" netmask="255.255.255.0">
|
|
|
|
<dhcp>
|
|
|
|
<range start="192.168.122.2" end="192.168.122.254" />
|
|
|
|
</dhcp>
|
|
|
|
</ip>
|
|
|
|
<ip family="ipv6" address="2001:db8:ca2:2::1" prefix="64" >
|
|
|
|
<dhcp>
|
|
|
|
<range start="2001:db8:ca2:2:1::10" end="2001:db8:ca2:2:1::ff" />
|
|
|
|
</dhcp>
|
|
|
|
</ip>
|
|
|
|
</network></pre>
|
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<h3><a name="examplesRoute">Routed network config</a></h3>
|
2008-04-23 17:08:31 +00:00
|
|
|
|
2008-04-29 14:08:08 +00:00
|
|
|
<p>
|
|
|
|
This is a variant on the default network which routes traffic
|
|
|
|
from the virtual network to the LAN without applying any NAT.
|
|
|
|
It requires that the IP address range be pre-configured in the
|
|
|
|
routing tables of the router on the host network. This example
|
|
|
|
further specifies that guest traffic may only go out via the
|
|
|
|
<code>eth1</code> host network device.
|
|
|
|
</p>
|
|
|
|
|
2008-04-23 17:08:31 +00:00
|
|
|
<pre>
|
|
|
|
<network>
|
2009-11-06 15:04:19 +00:00
|
|
|
<name>local</name>
|
|
|
|
<bridge name="virbr1" />
|
|
|
|
<forward mode="route" dev="eth1"/>
|
|
|
|
<ip address="192.168.122.1" netmask="255.255.255.0">
|
|
|
|
<dhcp>
|
|
|
|
<range start="192.168.122.2" end="192.168.122.254" />
|
|
|
|
</dhcp>
|
|
|
|
</ip>
|
2011-08-11 04:19:11 +00:00
|
|
|
<ip family="ipv6" address="2001:db8:ca2:2::1" prefix="64" />
|
2008-04-23 17:08:31 +00:00
|
|
|
</network></pre>
|
|
|
|
|
2012-12-06 17:20:38 +00:00
|
|
|
<p>
|
2013-02-28 04:18:04 +00:00
|
|
|
Below is another IPv6 variation. Instead of a dhcp range being
|
2012-12-06 17:20:38 +00:00
|
|
|
specified, this example has a couple of IPv6 host definitions.
|
2013-02-15 19:02:26 +00:00
|
|
|
Note that most of the dhcp host definitions use an "id" (client
|
|
|
|
id or DUID) since this has proven to be a more reliable way
|
|
|
|
of specifying the interface and its association with an IPv6
|
|
|
|
address. The first is a DUID-LLT, the second a DUID-LL, and
|
|
|
|
the third a DUID-UUID. <span class="since">Since 1.0.3</span>
|
2012-12-06 17:20:38 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
<network>
|
|
|
|
<name>local6</name>
|
|
|
|
<bridge name="virbr1" />
|
|
|
|
<forward mode="route" dev="eth1"/>
|
|
|
|
<ip address="192.168.122.1" netmask="255.255.255.0">
|
|
|
|
<dhcp>
|
|
|
|
<range start="192.168.122.2" end="192.168.122.254" />
|
|
|
|
</dhcp>
|
|
|
|
</ip>
|
|
|
|
<ip family="ipv6" address="2001:db8:ca2:2::1" prefix="64" >
|
|
|
|
<dhcp>
|
|
|
|
<host name="paul" ip="2001:db8:ca2:2:3::1" />
|
2013-02-15 19:02:26 +00:00
|
|
|
<host id="0:1:0:1:18:aa:62:fe:0:16:3e:44:55:66" ip="2001:db8:ca2:2:3::2" />
|
|
|
|
<host id="0:3:0:1:0:16:3e:11:22:33" name="ralph" ip="2001:db8:ca2:2:3::3" />
|
|
|
|
<host id="0:4:7e:7d:f0:7d:a8:bc:c5:d2:13:32:11:ed:16:ea:84:63" name="badbob" ip="2001:db8:ca2:2:3::4" />
|
2012-12-06 17:20:38 +00:00
|
|
|
</dhcp>
|
|
|
|
</ip>
|
|
|
|
</network></pre>
|
|
|
|
|
Support for static routes on a virtual bridge
network: static route support for <network>
This patch adds the <route> subelement of <network> to define a static
route. the address and prefix (or netmask) attribute identify the
destination network, and the gateway attribute specifies the next hop
address (which must be directly reachable from the containing
<network>) which is to receive the packets destined for
"address/(prefix|netmask)".
These attributes are translated into an "ip route add" command that is
executed when the network is started. The command used is of the
following form:
ip route add <address>/<prefix> via <gateway> \
dev <virbr-bridge> proto static metric <metric>
Tests are done to validate that the input data are correct. For
example, for a static route ip definition, the address must be a
network address and not a host address. Additional checks are added
to ensure that the specified gateway is directly reachable via this
network (i.e. that the gateway IP address is in the same subnet as one
of the IP's defined for the network).
prefix='0' is supported for both family='ipv4' address='0.0.0.0'
netmask='0.0.0.0' or prefix='0', and for family='ipv6' address='::',
prefix=0', although care should be taken to not override a desired
system default route.
Anytime an attempt is made to define a static route which *exactly*
duplicates an existing static route (for example, address=::,
prefix=0, metric=1), the following error message will be sent to
syslog:
RTNETLINK answers: File exists
This can be overridden by decreasing the metric value for the route
that should be preferred, or increasing the metric for the route that
shouldn't be preferred (and is thus in place only in anticipation that
the preferred route may be removed in the future). Caution should be
used when manipulating route metrics, especially for a default route.
Note: The use of the command-line interface should be replaced by
direct use of libnl so that error conditions can be handled better. But,
that is being left as an exercise for another day.
Signed-off-by: Gene Czarcinski <gene@czarc.net>
Signed-off-by: Laine Stump <laine@laine.org>
2013-05-07 17:42:55 +00:00
|
|
|
<p>
|
|
|
|
Below is yet another IPv6 variation. This variation has only
|
|
|
|
IPv6 defined with DHCPv6 on the primary IPv6 network. A static
|
|
|
|
link if defined for a second IPv6 network which will not be
|
|
|
|
directly visible on the bridge interface but there will be a
|
|
|
|
static route defined for this network via the specified
|
|
|
|
gateway. Note that the gateway address must be directly
|
|
|
|
reachable via (on the same subnet as) one of the <ip>
|
|
|
|
addresses defined for this <network>.
|
|
|
|
<span class="since">Since 1.0.6</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
<network>
|
|
|
|
<name>net7</name>
|
|
|
|
<bridge name="virbr7" />
|
|
|
|
<forward mode="route"/>
|
|
|
|
<ip family="ipv6" address="2001:db8:ca2:7::1" prefix="64" >
|
|
|
|
<dhcp>
|
|
|
|
<range start="2001:db8:ca2:7::100" end="2001:db8:ca2::1ff" />
|
|
|
|
<host id="0:4:7e:7d:f0:7d:a8:bc:c5:d2:13:32:11:ed:16:ea:84:63" name="lucas" ip="2001:db8:ca2:2:3::4" />
|
|
|
|
</dhcp>
|
|
|
|
</ip>
|
|
|
|
<route family="ipv6" address="2001:db8:ca2:8::" prefix="64" gateway="2001:db8:ca2:7::4" >
|
|
|
|
</route>
|
|
|
|
</network></pre>
|
|
|
|
|
2008-05-06 23:23:55 +00:00
|
|
|
<h3><a name="examplesPrivate">Isolated network config</a></h3>
|
2008-04-23 17:08:31 +00:00
|
|
|
|
2008-04-29 14:08:08 +00:00
|
|
|
<p>
|
|
|
|
This variant provides a completely isolated private network
|
|
|
|
for guests. The guests can talk to each other, and the host
|
|
|
|
OS, but cannot reach any other machines on the LAN, due to
|
|
|
|
the omission of the <code>forward</code> element in the XML
|
|
|
|
description.
|
|
|
|
</p>
|
|
|
|
|
2008-04-23 17:08:31 +00:00
|
|
|
<pre>
|
|
|
|
<network>
|
2009-11-06 15:04:19 +00:00
|
|
|
<name>private</name>
|
|
|
|
<bridge name="virbr2" />
|
|
|
|
<ip address="192.168.152.1" netmask="255.255.255.0">
|
|
|
|
<dhcp>
|
|
|
|
<range start="192.168.152.2" end="192.168.152.254" />
|
|
|
|
</dhcp>
|
|
|
|
</ip>
|
2011-08-11 04:19:11 +00:00
|
|
|
<ip family="ipv6" address="2001:db8:ca2:3::1" prefix="64" />
|
2008-04-23 17:08:31 +00:00
|
|
|
</network></pre>
|
|
|
|
|
2012-12-06 17:20:38 +00:00
|
|
|
<h3><a name="examplesPrivate6">Isolated IPv6 network config</a></h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
This variation of an isolated network defines only IPv6.
|
2013-02-15 19:02:26 +00:00
|
|
|
Note that most of the dhcp host definitions use an "id" (client
|
|
|
|
id or DUID) since this has proven to be a more reliable way
|
|
|
|
of specifying the interface and its association with an IPv6
|
|
|
|
address. The first is a DUID-LLT, the second a DUID-LL, and
|
|
|
|
the third a DUID-UUID. <span class="since">Since 1.0.3</span>
|
2012-12-06 17:20:38 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
<network>
|
|
|
|
<name>sixnet</name>
|
|
|
|
<bridge name="virbr6" />
|
|
|
|
<ip family="ipv6" address="2001:db8:ca2:6::1" prefix="64" >
|
|
|
|
<dhcp>
|
|
|
|
<host name="peter" ip="2001:db8:ca2:6:6::1" />
|
2013-02-15 19:02:26 +00:00
|
|
|
<host id="0:1:0:1:18:aa:62:fe:0:16:3e:44:55:66" ip="2001:db8:ca2:6:6::2" />
|
|
|
|
<host id="0:3:0:1:0:16:3e:11:22:33" name="dariusz" ip="2001:db8:ca2:6:6::3" />
|
|
|
|
<host id="0:4:7e:7d:f0:7d:a8:bc:c5:d2:13:32:11:ed:16:ea:84:63" name="anita" ip="2001:db8:ca2:6:6::4" />
|
2012-12-06 17:20:38 +00:00
|
|
|
</dhcp>
|
|
|
|
</ip>
|
|
|
|
</network></pre>
|
|
|
|
|
2011-08-10 05:41:19 +00:00
|
|
|
<h3><a name="examplesBridge">Using an existing host bridge</a></h3>
|
|
|
|
|
|
|
|
<p>
|
2011-10-14 18:35:32 +00:00
|
|
|
<span class="since">Since 0.9.4</span>
|
2011-08-10 05:41:19 +00:00
|
|
|
This shows how to use a pre-existing host bridge "br0". The
|
|
|
|
guests will effectively be directly connected to the physical
|
|
|
|
network (i.e. their IP addresses will all be on the subnet of
|
|
|
|
the physical network, and there will be no restrictions on
|
|
|
|
inbound or outbound connections).
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
<network>
|
|
|
|
<name>host-bridge</name>
|
|
|
|
<forward mode="bridge"/>
|
|
|
|
<bridge name="br0"/>
|
|
|
|
</network></pre>
|
|
|
|
|
|
|
|
<h3><a name="examplesDirect">Using a macvtap "direct" connection</a></h3>
|
|
|
|
|
|
|
|
<p>
|
2011-10-14 18:35:32 +00:00
|
|
|
<span class="since">Since 0.9.4, QEMU and KVM only, requires
|
|
|
|
Linux kernel 2.6.34 or newer</span>
|
2011-08-10 05:41:19 +00:00
|
|
|
This shows how to use macvtap to connect to the physical network
|
|
|
|
directly through one of a group of physical devices (without
|
|
|
|
using a host bridge device). As with the host bridge network,
|
|
|
|
the guests will effectively be directly connected to the
|
|
|
|
physical network so their IP addresses will all be on the subnet
|
|
|
|
of the physical network, and there will be no restrictions on
|
|
|
|
inbound or outbound connections. Note that, due to a limitation
|
|
|
|
in the implementation of macvtap, these connections do not allow
|
|
|
|
communication directly between the host and the guests - if you
|
|
|
|
require this you will either need the attached physical switch
|
|
|
|
to be operating in a mirroring mode (so that all traffic coming
|
|
|
|
to the switch is reflected back to the host's interface), or
|
|
|
|
provide alternate means for this communication (e.g. a second
|
|
|
|
interface on each guest that is connected to an isolated
|
|
|
|
network). The other forward modes that use macvtap (private,
|
|
|
|
vepa, and passthrough) would be used in a similar fashion.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
<network>
|
|
|
|
<name>direct-macvtap</name>
|
|
|
|
<forward mode="bridge">
|
|
|
|
<interface dev="eth20"/>
|
|
|
|
<interface dev="eth21"/>
|
|
|
|
<interface dev="eth22"/>
|
|
|
|
<interface dev="eth23"/>
|
|
|
|
<interface dev="eth24"/>
|
|
|
|
</forward>
|
|
|
|
</network></pre>
|
|
|
|
|
2012-12-03 16:13:36 +00:00
|
|
|
<h3><a name="examplesNoGateway">Network config with no gateway addresses</a></h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
A valid network definition can contain no IPv4 or IPv6 addresses. Such a definition
|
|
|
|
can be used for a "very private" or "very isolated" network since it will not be
|
|
|
|
possible to communicate with the virtualization host via this network. However,
|
|
|
|
this virtual network interface can be used for communication between virtual guest
|
|
|
|
systems. This works for IPv4 and <span class="since">(Since 1.0.1)</span> IPv6.
|
|
|
|
However, the new ipv6='yes' must be added for guest-to-guest IPv6
|
|
|
|
communication.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
<network ipv6='yes'>
|
|
|
|
<name>nogw</name>
|
|
|
|
<uuid>7a3b7497-1ec7-8aef-6d5c-38dff9109e93</uuid>
|
|
|
|
<bridge name="virbr2" stp="on" delay="0" />
|
|
|
|
<mac address='00:16:3E:5D:C7:9E'/>
|
|
|
|
</network></pre>
|
|
|
|
|
2008-04-23 17:08:31 +00:00
|
|
|
</body>
|
|
|
|
</html>
|