提交 a4e86390 编写于 作者: C Cédric Bosdonnat

Openvz --ipadd can be provided multiple times

Vzctl man page says that --ipadd can be provided multiple times to add
several IP addresses. Looping over the configured ip addresses to add
one --ipadd for each. This would even handle the multiple IPs handled
by openvz_conf.c
上级 bbf1eafa
......@@ -905,9 +905,13 @@ openvzDomainSetNetwork(virConnectPtr conn, const char *vpsid,
virCommandAddArgBuffer(cmd, &buf);
} else if (net->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
net->nips > 0) {
size_t i;
/* --ipadd ip */
char *ipStr = virSocketAddrFormat(&net->ips[0]->address);
virCommandAddArgList(cmd, "--ipadd", ipStr, NULL);
for (i = 0; i < net->nips; i++) {
char *ipStr = virSocketAddrFormat(&net->ips[i]->address);
virCommandAddArgList(cmd, "--ipadd", ipStr, NULL);
}
}
/* TODO: processing NAT and physical device */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册