weizhouapache commented on issue #5234: URL: https://github.com/apache/cloudstack/issues/5234#issuecomment-890007497
@tampler you can find an example for advanced zone in cloudstack code. https://github.com/apache/cloudstack/blob/main/tools/devcloud-kvm/devcloud-kvm-advanced.cfg defauilt guest network ip and vlan ``` "guestcidraddress": "10.1.1.0/24", ... "vlan": "3900-4000", ``` public ip range ``` "ipranges": [ { "startip": "192.168.100.100", "endip": "192.168.100.199", "netmask": "255.255.255.0", "vlan": "untagged", "gateway": "192.168.100.1" } ], ``` private ip (startip to endip) and hosts ``` "pods": [ { "endip": "172.17.10.199", "name": "testpod", "startip": "172.17.10.100", "netmask": "255.255.255.0", "clusters": [ { "clustername": "testcluster", "hypervisor": "KVM", "hosts": [ { "username": "root", "url": "http://172.17.10.10/", "password": "password" } ], "clustertype": "CloudManaged" } ], "gateway": "172.17.10.1" } ], ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
