OpenDoor

OpenDoor - Create

Creates a new remote connection for a Distributed LogPoint setup (Distributed LogPoints and Distributed Collectors).

POST

https://api-server-host-name/configapi/{pool_UUID}/{logpoint_identifier}/OpenDoor

Parameters

Field
Label in UI
Type
Description

netmask

Netmask

String

Netmask address of the Fabric-enabled LogPoint. Mandatory only when the value of opened parameter is set as "on". Optional Field

network

Private IP

String

Private ip address of the Fabric-enabled LogPoint. Mandatory only when value of opened parameter is set as "on". The last octet of the IP address should always be 1 (x.x.x.1). Optional Field

opened

Open Door

String

Set the value of this parameter as "on" to enable a remote connection. Requesting this endpoint with empty data will disable the remote connection. Optional Field

password

Password

String

Password to establish a remote connection between individual LogPoints. Mandatory only when the value of opened parameter is set as "on". Optional Field

Request Example

{
    "data": {
        "netmask": "255.255.255.0",
        "network": "10.4.0.1",
        "opened": "on",
        "password": "examplePassword"
    }
}

Success Response

OpenDoor - Get

Lists the saved OpenDoor configuration with given open door id.

GET

Parameters

Field
Label in UI
Type
Description

id

-

String

ID of open door

Success Response

OpenDoor - List

Lists the saved OpenDoor configuration.

GET

Success Response

OpenDoor - Save

Updates a new remote connection for a Distributed LogPoint setup (Distributed LogPoints and Distributed Collectors).

POST

Parameters

Field
Label in UI
Type
Description

mtu

MTU

int

Maximum Transmissions Unit (MTU) in bytes. All the packets transferred between the Main LogPoint and its Remote LogPoint(s) are chunked into the size of the specified MTU. The default value of the MTU is 1500. Optional Field

netmask

Netmask

String

Netmask address of the Fabric-enabled LogPoint. Mandatory only when the value of opened parameter is set as "on". Optional Field

network

Private IP

String

Private ip address of the Fabric-enabled LogPoint. Mandatory only when value of opened parameter is set as "on". The last octet of the IP address should always be 1 (x.x.x.1). Optional Field

opened

Open Door

String

Set the value of this parameter as "on" to enable a remote connection. Requesting this endpoint with empty data will disable the remote connection. Optional Field

password

Password

String

Password to establish a remote connection between individual LogPoints. Mandatory only when the value of opened parameter is set as "on". Optional Field

Request Example

Success Response

Last updated

Was this helpful?