mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
lxc conf2xml: convert ip addresses for hostdev NICs
This commit is contained in:
parent
2811cc611e
commit
7100be40a5
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user