|
| 1 | +## stackit network-area region create |
| 2 | + |
| 3 | +Creates a new regional configuration for a STACKIT Network Area (SNA) |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Creates a new regional configuration for a STACKIT Network Area (SNA). |
| 8 | + |
| 9 | +``` |
| 10 | +stackit network-area region create [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Create a new regional configuration "eu02" for a STACKIT Network Area with ID "xxx" in organization with ID "yyy", ipv4 network range "192.168.0.0/24" and ipv4 transfer network "192.168.1.0/24" |
| 17 | + $ stackit network-area region create --network-area-id xxx --region eu02 --organization-id yyy --ipv4-network-ranges 192.168.0.0/24 --ipv4-transfer-network 192.168.1.0/24 |
| 18 | +
|
| 19 | + Create a new regional configuration "eu02" for a STACKIT Network Area with ID "xxx" in organization with ID "yyy", using the set region config |
| 20 | + $ stackit config set --region eu02 |
| 21 | + $ stackit network-area region create --network-area-id xxx --organization-id yyy --ipv4-network-ranges 192.168.0.0/24 --ipv4-transfer-network 192.168.1.0/24 |
| 22 | +
|
| 23 | + Create a new regional configuration for a STACKIT Network Area with ID "xxx" in organization with ID "yyy", ipv4 network range "192.168.0.0/24", ipv4 transfer network "192.168.1.0/24", default prefix length "24", max prefix length "25" and min prefix length "20" |
| 24 | + $ stackit network-area region create --network-area-id xxx --organization-id yyy --ipv4-network-ranges 192.168.0.0/24 --ipv4-transfer-network 192.168.1.0/24 --region "eu02" --ipv4-default-prefix-length 24 --ipv4-max-prefix-length 25 --ipv4-min-prefix-length 20 |
| 25 | +
|
| 26 | + Create a new regional configuration for a STACKIT Network Area with ID "xxx" in organization with ID "yyy", ipv4 network range "192.168.0.0/24", ipv4 transfer network "192.168.1.0/24", default prefix length "24", max prefix length "25" and min prefix length "20" |
| 27 | + $ stackit network-area region create --network-area-id xxx --organization-id yyy --ipv4-network-ranges 192.168.0.0/24 --ipv4-transfer-network 192.168.1.0/24 --region "eu02" --ipv4-default-prefix-length 24 --ipv4-max-prefix-length 25 --ipv4-min-prefix-length 20 |
| 28 | +``` |
| 29 | + |
| 30 | +### Options |
| 31 | + |
| 32 | +``` |
| 33 | + -h, --help Help for "stackit network-area region create" |
| 34 | + --ipv4-default-nameservers strings List of default DNS name server IPs |
| 35 | + --ipv4-default-prefix-length int The default prefix length for networks in the network area |
| 36 | + --ipv4-max-prefix-length int The maximum prefix length for networks in the network area |
| 37 | + --ipv4-min-prefix-length int The minimum prefix length for networks in the network area |
| 38 | + --ipv4-network-ranges strings Network range to create in CIDR notation (default []) |
| 39 | + --ipv4-transfer-network string Transfer network in CIDR notation |
| 40 | + --network-area-id string STACKIT Network Area (SNA) ID |
| 41 | + --organization-id string Organization ID |
| 42 | +``` |
| 43 | + |
| 44 | +### Options inherited from parent commands |
| 45 | + |
| 46 | +``` |
| 47 | + -y, --assume-yes If set, skips all confirmation prompts |
| 48 | + --async If set, runs the command asynchronously |
| 49 | + -o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"] |
| 50 | + -p, --project-id string Project ID |
| 51 | + --region string Target region for region-specific requests |
| 52 | + --verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info") |
| 53 | +``` |
| 54 | + |
| 55 | +### SEE ALSO |
| 56 | + |
| 57 | +* [stackit network-area region](./stackit_network-area_region.md) - Provides functionality for regional configuration of STACKIT Network Area (SNA) |
| 58 | + |
0 commit comments