You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().StringP("name", "n", "", "name of the network to create. [optional]")
47
47
cmd.Flags().StringP("partition", "p", "", "partition where this network should exist.")
48
48
cmd.Flags().StringP("project", "", "", "project of the network to create. [optional]")
49
+
cmd.Flags().Int64("default-ipv4-child-prefix-length", 0, "default child prefix length for ipv4 prefixes for private super networks.")
50
+
cmd.Flags().Int64("default-ipv6-child-prefix-length", 0, "default child prefix length for ipv6 prefixes for private super networks.")
49
51
cmd.Flags().StringSlice("prefixes", []string{}, "prefixes in this network.")
50
52
cmd.Flags().StringSlice("labels", []string{}, "add initial labels, must be in the form of key=value, use it like: --labels \"key1=value1,key2=value2\".")
51
53
cmd.Flags().StringSlice("destination-prefixes", []string{}, "destination prefixes in this network.")
allocateCmd.Flags().StringSlice("labels", []string{}, "labels for this network. [optional]")
143
159
allocateCmd.Flags().BoolP("dmz", "", false, "use this private network as dmz. [optional]")
144
160
allocateCmd.Flags().BoolP("shared", "", false, "shared allows usage of this private network from other networks")
161
+
allocateCmd.Flags().StringP("addressfamily", "", "", "addressfamily of the network to acquire, if not specified the network inherits the address families from the parent [optional]")
162
+
allocateCmd.Flags().Int64P("ipv4-prefix-length", "", 0, "ipv4 prefix bit length of the network to create, defaults to default child prefix length of the parent network. [optional]")
163
+
allocateCmd.Flags().Int64P("ipv6-prefix-length", "", 0, "ipv6 prefix bit length of the network to create, defaults to default child prefix length of the parent network. [optional]")
0 commit comments