Welcome to lab1918, cloud lab made for you!
The labs document the conversations between AI and Eric Dong.
import "fmt"
rfc1918 := make([]string, 0)
rfc1918 = append(rfc1918, "10/8", "172.16/12", "192.168/16")
func lab1918(ip string) []string {
lab: = makeLab(ip)
steps := lab.steps()
return steps
}
for _, ip := range rfc1918 {
steps := lab1918(ip)
fmt.printLn(steps)
}