removeIPWhiteList

First introduced in version: 3.00.3

Syntax

removeIPWhiteList(ips)

Details

Remove IP addresses from the whitelist. The whitelist feature is disabled when all IP addresses have been removed.

This function can only be executed by an administrator and takes effect on the cluster.

Parameters

ips is a STRING or IPADDR scalar/vector indicating one or more IP addresses.

Examples

addIPWhiteList(["1.1.1.1", "2.2.2.2", "3.3.3.3"])
removeIPWhiteList("2.2.2.2")
getIPWhiteList()
// output: ["1.1.1.1", "3.3.3.3"]

Related functions: addIPWhiteList, getIPWhiteList