Management Plane API > Networking > VPN > IPSEC > IKE Profiles

Create custom internet key exchange (IKE) Profile

Create custom internet key exchange (IKE) Profile. IKE Profile is a reusable profile that captures IKE and phase one negotiation parameters. System will be pre provisioned with system owned non editable default IKE profile and suggested set of profiles that can be used for peering with popular remote peers like AWS VPN. User can create custom profiles as needed. Any change in profile affects all sessions consuming this profile.

Request:

Method:
POST
URI Path(s):
/api/v1/vpn/ipsec/ike-profiles
Request Headers:
n/a
Query Parameters:
n/a
Request Body:
IPSecVPNIKEProfile+

Example Request:

POST https://<nsx-mgr>/api/v1/vpn/ipsec/ike-profiles { "resource_type" : "IPSecVPNIKEProfile", "display_name" : "nsx-default-ike-profile", "encryption_algorithms" : [ "AES_128" ], "ike_version" : "IKE_FLEX", "digest_algorithms" : [ "SHA2_256" ], "sa_life_time" : 86400, "dh_groups" : [ "GROUP14" ] }

Successful Response:

Response Code:
201 Created
Response Headers:
Content-type: application/json
Response Body:
IPSecVPNIKEProfile+

Example Response:

{ "resource_type" : "IPSecVPNIKEProfile", "id" : "12a3a23e-c37b-11e7-abc4-cec278b6b50a", "display_name" : "nsx-default-ike-profile", "encryption_algorithms" : [ "AES_128" ], "ike_version" : "IKE_FLEX", "digest_algorithms" : [ "SHA2_256" ], "sa_life_time" : 86400, "dh_groups" : [ "GROUP14" ], "_create_time" : 1517289492627, "_last_modified_user" : "system", "_last_modified_time" : 1517289492627, "_system_owned" : true, "_create_user" : "system", "_protection" : "NOT_PROTECTED", "_revision" : 0 }

Required Permissions:

crud

Feature:

vpn

Additional Errors: