mirror of https://gitee.com/openkylin/libvirt.git
lxc: support setting host-side IP addresses/routes
(This patch had been pushed earlier in commitcd5c9f21de
, but was reverted in commit1549f16832
because it had been accidentally pushed during the freeze for release 2.0.0)
This commit is contained in:
parent
d83cac49e3
commit
187920273c
|
@ -304,6 +304,14 @@ virLXCProcessSetupInterfaceTap(virDomainDefPtr vm,
|
|||
if (virNetDevSetOnline(parentVeth, true) < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (virDomainNetGetActualType(net) == VIR_DOMAIN_NET_TYPE_ETHERNET) {
|
||||
/* Set IP info for the host side, but only if the type is
|
||||
* 'ethernet'.
|
||||
*/
|
||||
if (virNetDevIPInfoAddToDev(parentVeth, &net->hostIP) < 0)
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (net->filter &&
|
||||
virDomainConfNWFilterInstantiate(vm->uuid, net) < 0)
|
||||
goto cleanup;
|
||||
|
|
Loading…
Reference in New Issue