Quoting Qiubo Su (David Su) ([email protected]): > NAME = "ESXi Network" > TYPE = RANGED > PUBLIC = NO > BRIDGE = "VM Network" > NETWORK_ADDRESS = 192.168.1.100 > NETWORK_SIZE = 30 > NETMASK = 255.255.255.0 > GATEWAY = 192.168.1.1 > DNS = 192.168.1.1 > > Get error return "[virtualnetworkallocate] error allocating a new virtual > network. network_address 192.168.1.100 is not a base address for the > network mask 255.255.255.224". > > *Environment* - the OpenNebula front end server (with IP 192.168.1.103), > VMware ESXI server (ESXI01 with IP 192.1689.1.104) and vSphere Client > (installed under Windows 7 with IP 192.168.1.122) server are all within the > same LAN 192.168.1.0. The LAN network address range is configured (through > the router) from 192.168.1.100 to 192.168.1.29, a total of 30 local IP > addresses.
NETWORK_ADDRESS = 192.168.1.100 should be NETWORK_ADDRESS = 192.168.1.0 No need to provide NETWORK_SIZE = 30 as well. It's superfluous. I guess what you want to do here is limit the amount of ip's to be used in this lan to "30". You could use: IP_START = 192.168.1.100 IP_END = 10.10.10.130 Gr. Stefan -- | BIT BV http://www.bit.nl/ Kamer van Koophandel 09090351 | GPG: 0xD14839C6 +31 318 648 688 / [email protected] _______________________________________________ Users mailing list [email protected] http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
