lxc conf2xml: convert ip addresses for hostdev NICs

This commit is contained in:
Cédric Bosdonnat 2014-07-23 18:00:12 +02:00
parent 2811cc611e
commit 7100be40a5
3 changed files with 7 additions and 0 deletions

View File

@ -462,6 +462,9 @@ lxcAddNetworkDefinition(lxcNetworkParseData *data)
goto error;
}
hostdev->source.caps.u.net.ips = data->ips;
hostdev->source.caps.u.net.nips = data->nips;
if (VIR_EXPAND_N(data->def->hostdevs, data->def->nhostdevs, 1) < 0)
goto error;
data->def->hostdevs[data->def->nhostdevs - 1] = hostdev;

View File

@ -1,6 +1,8 @@
lxc.network.type = phys
lxc.network.link = eth0
lxc.network.name = eth1
lxc.network.ipv4 = 192.168.122.2/24
lxc.network.ipv6 = 2003:db8:1:0:214:1234:fe0b:3596/64
lxc.rootfs = /var/lib/lxc/migrate_test/rootfs
lxc.utsname = migrate_test

View File

@ -25,6 +25,8 @@
<source>
<interface>eth0</interface>
</source>
<ip address='192.168.122.2' family='ipv4' prefix='24'/>
<ip address='2003:db8:1:0:214:1234:fe0b:3596' family='ipv6' prefix='64'/>
</hostdev>
</devices>
</domain>