skip to main content
Administering Hybrid Data Pipeline : Implementing IP address whitelists : Enabling and disabling the IP address whitelist feature
  

Try Now

Enabling and disabling the IP address whitelist feature

You can use either the Web UI or the System Configurations API to enable or disable the IP address whitelist feature.

Using the Web UI

Take the following steps to enable or disable IP address whitelists.
1. Navigate to the System Configurations view by clicking the system configurations icon .
2. Toggle the IP WhiteList Filtering switch to the desired setting.
3. Click Save to save the change.

Using the System Configurations API

The following GET operation retrieves the current setting. The number 8 is the ID of the IP address whitelist feature.
GET https://<myserver>:<port>/api/admin/configurations/8
{
"id": 8,
"description": "Enable IP Whitelist filtering, when value is set to true. Default value is "true".
"value": "true"
}
The following PUT request disables the IP address whitelist feature.
PUT https://<myserver>:<port>/api/admin/configurations/8
{
"value":"false"
}
The following PUT request enables the IP address whitelist feature.
PUT https://<myserver>:<port>/api/admin/configurations/8
{
"value":"true"
}