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
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 */