Access Control Lists

API for Access Control Lists configuration support.

Endpoints for viewing and manipulating Access Control Lists.

Json structure

[
    {
        "address": "0.0.0.0", // valid IPv4 or IPv6
        "mask": 0,
        "services": [
            "snmp",
            "ssh",
            "http"
        ],
        "policy": "allow",
        "active": true,
        "label": "abc"
    }
]

Possible policy data types:

Value Description
"allow" allow traffic
"drop" drop traffic

Possible service data types:

Value Description
"snmp" snmp service
"ssh" ssh service
"http" http service
"https" https service

Back to X2-SERIES API Home