Chuyển tới nội dung chính

Create Network

POST /v2.0/networks

Create a network. The next step is to create a subnet for the created network.

info

Request

Body parameters

NameInTypeDescription
networkbodyobjectA network object.
mtu (Optional)bodyintegerMaximum transmission unit. Minimum 68 (IPv4) or 1280 (IPv6).
name (Optional)bodystringHuman-readable name of the network.
description (Optional)bodystringHuman-readable description.
tenant_id (Optional)bodystringAlias for project ID. Admin/advsvc can specify others.
project_id (Optional)bodystringID of the owning project. Admin/advsvc can specify other projects.

Example requests

Using curl (create a private network)

curl -ks -H 'Content-Type: application/json' \
-H 'X-Auth-Token: gAAAAA<...>' -d '
{
"network": {
"name": "privnet1"
}
}' https://api.vietnix.cloud:9696/v2.0/networks

Using HTTP request

POST https://api.vietnix.cloud:9696/v2.0/networks

Response

Response parameters

NameTypeDescription
networkobjectA network object.
admin_state_upbooleanAdministrative state: up (true) or down (false).
availability_zone_hintsarrayAvailability zone candidates. Current VHI returns default or null.
availability_zonesarrayAvailability zones. Current VHI returns default or null.
created_atstringCreation time (ISO 8601).
dns_domainstringDNS domain.
idstringNetwork ID.
ipv4_address_scopestringIPv4 address scope ID.
ipv6_address_scopestringIPv6 address scope ID.
l2_adjacencybooleanWhether L2 connectivity is available throughout the network.
mtuintegerMaximum transmission unit.
namestringHuman-readable name.
port_security_enabledbooleanPort security status (default for new ports).
project_idstringOwning project ID.
provider:network_typestringProvider network type (e.g., flat, vlan, vxlan, gre).
provider:physical_networkstringPhysical network.
provider:segmentation_idintegerProvider segmentation identifier.
qos_policy_idstringAssociated QoS policy ID.
revision_numberintegerRevision number.
router:externalbooleanWhether network is external.
segmentsarrayList of provider segment objects.
sharedbooleanWhether network is shared across tenants.
statusstringNetwork status: ACTIVE, DOWN, BUILD, ERROR.
subnetsarrayAssociated subnet IDs.
tenant_idstringOwning project ID.
updated_atstringLast update time (ISO 8601) or null.
vlan_transparentbooleanVLAN transparency mode.
default_vnic_typestringDefault vnic_type for ports in this network.
descriptionstringHuman-readable description.
is_defaultbooleanWhether network is default pool.
tagsarrayList of resource tags.

Sample responses

{
"network": {
"id": "170546a1-a70a-40af-93e2-9261c7c05b77",
"name": "privnet1",
"tenant_id": "f33507157a634f1cac71e06a70fb558e",
"admin_state_up": true,
"mtu": 1413,
"default_vnic_type": null,
"status": "ACTIVE",
"subnets": [],
"shared": false,
"project_id": "f33507157a634f1cac71e06a70fb558e",
"port_security_enabled": true,
"qos_policy_id": "dfc42ced-02c8-4b1f-bbe6-14cc014f259d",
"router:external": false,
"provider:network_type": "vxlan",
"is_default": false,
"availability_zone_hints": [],
"availability_zones": [],
"ipv4_address_scope": null,
"ipv6_address_scope": null,
"description": "",
"rbac_policies": [],
"tags": [],
"created_at": "2025-09-23T06:42:18Z",
"updated_at": "2025-09-23T06:42:18Z",
"revision_number": 1
}
}

Status codes

Success

Status CodeDescription
201 - CreatedResource was created and is ready to use.

Error

Status CodeDescription
400 - Bad RequestSome content in the request was invalid.
401 - UnauthorizedUser must authenticate before making a request.