|
| 1 | +## stackit beta network create |
| 2 | + |
| 3 | +Creates a network |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Creates a network. |
| 8 | + |
| 9 | +``` |
| 10 | +stackit beta network create [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Create a network with name "network-1" |
| 17 | + $ stackit beta network create --name network-1 |
| 18 | +
|
| 19 | + Create an IPv4 network with name "network-1" with DNS name servers and a prefix length |
| 20 | + $ stackit beta network create --name network-1 --ipv4-dns-name-servers "1.1.1.1,8.8.8.8,9.9.9.9" --ipv4-prefix-length 25 |
| 21 | +
|
| 22 | + Create an IPv6 network with name "network-1" with DNS name servers and a prefix length |
| 23 | + $ stackit beta network create --name network-1 --ipv6-dns-name-servers "1.1.1.1,8.8.8.8,9.9.9.9" --ipv6-prefix-length 25 |
| 24 | +``` |
| 25 | + |
| 26 | +### Options |
| 27 | + |
| 28 | +``` |
| 29 | + -h, --help Help for "stackit beta network create" |
| 30 | + --ipv4-dns-name-servers strings List of DNS name servers for IPv4 |
| 31 | + --ipv4-prefix-length int The prefix length of the IPv4 network |
| 32 | + --ipv6-dns-name-servers strings List of DNS name servers for IPv6 |
| 33 | + --ipv6-prefix-length int The prefix length of the IPv6 network |
| 34 | + -n, --name string Network name |
| 35 | +``` |
| 36 | + |
| 37 | +### Options inherited from parent commands |
| 38 | + |
| 39 | +``` |
| 40 | + -y, --assume-yes If set, skips all confirmation prompts |
| 41 | + --async If set, runs the command asynchronously |
| 42 | + -o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"] |
| 43 | + -p, --project-id string Project ID |
| 44 | + --verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info") |
| 45 | +``` |
| 46 | + |
| 47 | +### SEE ALSO |
| 48 | + |
| 49 | +* [stackit beta network](./stackit_beta_network.md) - Provides functionality for Network |
| 50 | + |
0 commit comments