common: fix IP range

This commit is contained in:
Alan Chen 2017-09-08 13:43:29 +08:00
parent c13eaed984
commit 37d47b951d
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ const (
func GenerateIPs(num int) (ips []string) {
for i := 0; i < num; i++ {
ips = append(ips, fmt.Sprintf("10.1.1.%d", i+2))
ips = append(ips, fmt.Sprintf("10.0.1.%d", i+2))
}
return ips