removeIPBlackList
First introduced in version: 3.00.3
Syntax
removeIPBlackList(ips)
Details
Remove IP addresses from the blacklist. The blacklist 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
addIPBlackList(["1.1.1.1", "2.2.2.2", "3.3.3.3"])
removeIPBlackList("2.2.2.2")
getIPBlackList()
// output: ["1.1.1.1", "3.3.3.3"]
Related functions: addIPBlackList, getIPBlackList
