REST API  15
REST API for Luna Network HSMs
All Files Pages
PUT /api/lunasa/ntls

PUT /api/lunasa/ntls

Sets both the receiveTimeoutTimer and the ipCheckEnabled settings for the NTLS

Parameters

receiveTimeoutTimer

The configured NTLS timeout period for a connection setup

Use: Required

JSON Schema:

   Object
   type: integer

ipCheckEnabled

Indicates whether NTLS client source IP validation is enabled

Use: Required

JSON Schema:

   Object
   type: boolean
         false = disable NTLS client source IP validation
         true = enable NTLS client source IP validation

The following table shows defined values for receiveTimeoutTimer.

Parameter Range Default Value
receiveTimeoutTimer 1 - 300 20

Responses

204

Success

400

Unexpected error

Example Request

   PUT
   https://1.2.3.4:8443/api/lunasa/ntls
   {
     "receiveTimeoutTimer" : 30,
     "ipCheckEnabled" : false
   }

Example Result

{
}

See Also

GET /api/lunasa/ntls