Verb | URI | Description |
POST | /vpn/ipsec-site-connections | Creates a new IPSec site connection. |
Normal Response Code: 201
Error Response Codes: Unauthorized (401), Bad Request (400)
This operation requires a request body.
This operation returns a response body.
Example 4.202. Create IPSec Site Connection: Request
POST /v2.0/vpn/ipsec-site-connections.json User-Agent: python-neutronclient Accept: application/json
{ "ipsec_site_connection": { "psk": "secret", "initiator": "bi-directional", "ipsecpolicy_id": "22b8abdc-e822-45b3-90dd-f2c8512acfa5", "admin_state_up": true, "peer_cidrs": [ "10.2.0.0/24" ], "mtu": "1500", "ikepolicy_id": "d3f373dc-0708-4224-b6f8-676adf27dab8", "dpd": { "action": "disabled", "interval": 60, "timeout": 240 }, "vpnservice_id": "7b347d20-6fa3-4e22-b744-c49ee235ae4f", "peer_address": "172.24.4.233", "peer_id": "172.24.4.233", "name": "vpnconnection1" } }
Example 4.203. Create IPSec Site Connection: Response
HTTP/1.1 201 Created Content-Type: application/json; charset=UTF-8
{ "ipsec_site_connection": { "status": "PENDING_CREATE", "psk": "secret", "initiator": "bi-directional", "name": "vpnconnection1", "admin_state_up": true, "tenant_id": "b6887d0b45b54a249b2ce3dee01caa47", "description": "", "auth_mode": "psk", "peer_cidrs": [ "10.2.0.0/24" ], "mtu": 1500, "ikepolicy_id": "d3f373dc-0708-4224-b6f8-676adf27dab8", "dpd": { "action": "disabled", "interval": 60, "timeout": 240 }, "route_mode": "static", "vpnservice_id": "7b347d20-6fa3-4e22-b744-c49ee235ae4f", "peer_address": "172.24.4.233", "peer_id": "172.24.4.233", "id": "af44dfd7-cf91-4451-be57-cd4fdd96b5dc", "ipsecpolicy_id": "22b8abdc-e822-45b3-90dd-f2c8512acfa5" } }