From baa9db85afe77e72610660c8239c8761b71987b0 Mon Sep 17 00:00:00 2001 From: Michael Scalzetti Date: Sat, 5 Mar 2022 03:27:34 -0500 Subject: [PATCH] pfsense config magic --- README.md | 17 ++ data.json | 5 + push.py | 50 ++++++ rule_gen.py | 58 ++++++ rules.json | 508 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 638 insertions(+) create mode 100644 README.md create mode 100644 data.json create mode 100644 push.py create mode 100755 rule_gen.py create mode 100644 rules.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..aa25035 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Steps + +## pfSense API +To install pfSense API, simply run the following command from the pfSense shell:
+``` +pkg add https://github.com/jaredhendrickson13/pfsense-api/releases/latest/download/pfSense-2.5-pkg-API.txz && /etc/rc.restart_webgui +``` + +## Data.json +Make sure the config data in Data.json is what you want + +## push.py +Now push those rules bruh +``` +./push.py +``` + diff --git a/data.json b/data.json new file mode 100644 index 0000000..187a02b --- /dev/null +++ b/data.json @@ -0,0 +1,5 @@ +{ + "USER":"admin", + "PASS":"pfsense", + "TEAM_NUM":1 +} diff --git a/push.py b/push.py new file mode 100644 index 0000000..bb931d5 --- /dev/null +++ b/push.py @@ -0,0 +1,50 @@ +#! /usr/bin/python3 + +import requests +import json + +def post_req(url, data={}): + response = requests.post(url, json=data) + + try: + response.raise_for_status() + except requests.exceptions.HTTPError as err: + print(err) + else: + print(f"post success | HTTP {response.status_code}") + + +def main(x): + data = {} + rules = {} + with open("data.json","r") as file: + data = json.load(file) + + with open("rules.json","r") as file: + rules = json.load(file) + + x = data["TEAM_NUM"] + GATEWAY = f"10.{x}.1.254" + auth_data = {"client-id":data["USER"],"client-token":data["PASS"]} + + #First enable the firewall + post_req(f"http://{GATEWAY}/api/v1/firewall/apply", data=auth_data) + + #Implement all the firewall rules + for rule in rules["RULES"]: + if rule["TAG"] == x: + print("skipping rule bc of tag match") + continue + data = {} + for item in rule["DATA"]: + data[item] = rule["DATA"][item] + for item in auth_data: + data[item] = auth_data[item] + + URL = rule["URL"].format(GATEWAY) + post_req(URL, data=data) + + + +if __name__ == "__main__": + main() diff --git a/rule_gen.py b/rule_gen.py new file mode 100755 index 0000000..30d3698 --- /dev/null +++ b/rule_gen.py @@ -0,0 +1,58 @@ +#! /usr/bin/python3 +import json + +RULES = { + "template":{"URL": "http://{0}/api/v1/firewall/rule", + "TAG":1, + "DATA":{"type":"block", + "interface":"wan", + "ipprotocol":"inet", + "protocol":"tcp", + "src":"", + "srcport":"any", + "dst":"any", + "dstport":"any", + "apply":False + } + }, + "ip_ranges": [{ + "template": "172.16.{0}.0/24", + "low": 1, + "high": 15 + }, { + "template": "10.{0}.1.0/24", + "low": 1, + "high": 254 + },{ + "template": "192.168.{0}.0/16", + "low": 16, + "high": 254 + } + ] +} + + +def main(): + rules = [] + for ip_range in RULES["ip_ranges"]: + for x in range(ip_range["low"], ip_range["high"]+1): + ip = ip_range["template"].format(x) + + rule = RULES["template"] + rule["DATA"]["src"] = ip + + rules.append(json.dumps(rule)) + + + with open("rules.json","w") as file: + file.write("[") + for i in range(len(rules)): + file.write(str(rules[i])) + if i +1 != len(rules): + file.write(",\n") + file.write("]") + + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/rules.json b/rules.json new file mode 100644 index 0000000..d912928 --- /dev/null +++ b/rules.json @@ -0,0 +1,508 @@ +[{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.2.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.3.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.4.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.5.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.6.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.7.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.8.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.9.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.10.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.11.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.12.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.13.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.14.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "172.16.15.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.1.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.2.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.3.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.4.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.5.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.6.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.7.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.8.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.9.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.10.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.11.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.12.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.13.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.14.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.15.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.16.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.17.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.18.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.19.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.20.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.21.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.22.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.23.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.24.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.25.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.26.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.27.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.28.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.29.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.30.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.31.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.32.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.33.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.34.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.35.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.36.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.37.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.38.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.39.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.40.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.41.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.42.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.43.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.44.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.45.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.46.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.47.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.48.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.49.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.50.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.51.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.52.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.53.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.54.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.55.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.56.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.57.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.58.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.59.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.60.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.61.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.62.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.63.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.64.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.65.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.66.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.67.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.68.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.69.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.70.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.71.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.72.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.73.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.74.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.75.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.76.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.77.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.78.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.79.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.80.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.81.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.82.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.83.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.84.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.85.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.86.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.87.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.88.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.89.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.90.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.91.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.92.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.93.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.94.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.95.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.96.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.97.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.98.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.99.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.100.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.101.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.102.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.103.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.104.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.105.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.106.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.107.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.108.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.109.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.110.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.111.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.112.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.113.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.114.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.115.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.116.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.117.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.118.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.119.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.120.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.121.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.122.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.123.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.124.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.125.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.126.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.127.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.128.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.129.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.130.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.131.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.132.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.133.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.134.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.135.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.136.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.137.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.138.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.139.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.140.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.141.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.142.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.143.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.144.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.145.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.146.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.147.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.148.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.149.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.150.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.151.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.152.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.153.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.154.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.155.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.156.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.157.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.158.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.159.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.160.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.161.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.162.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.163.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.164.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.165.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.166.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.167.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.168.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.169.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.170.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.171.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.172.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.173.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.174.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.175.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.176.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.177.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.178.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.179.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.180.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.181.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.182.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.183.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.184.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.185.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.186.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.187.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.188.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.189.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.190.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.191.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.192.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.193.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.194.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.195.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.196.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.197.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.198.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.199.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.200.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.201.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.202.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.203.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.204.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.205.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.206.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.207.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.208.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.209.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.210.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.211.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.212.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.213.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.214.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.215.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.216.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.217.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.218.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.219.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.220.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.221.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.222.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.223.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.224.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.225.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.226.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.227.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.228.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.229.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.230.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.231.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.232.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.233.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.234.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.235.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.236.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.237.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.238.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.239.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.240.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.241.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.242.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.243.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.244.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.245.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.246.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.247.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.248.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.249.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.250.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.251.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.252.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.253.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "10.254.1.0/24", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.16.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.17.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.18.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.19.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.20.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.21.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.22.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.23.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.24.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.25.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.26.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.27.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.28.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.29.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.30.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.31.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.32.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.33.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.34.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.35.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.36.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.37.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.38.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.39.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.40.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.41.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.42.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.43.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.44.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.45.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.46.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.47.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.48.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.49.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.50.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.51.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.52.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.53.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.54.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.55.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.56.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.57.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.58.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.59.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.60.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.61.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.62.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.63.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.64.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.65.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.66.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.67.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.68.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.69.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.70.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.71.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.72.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.73.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.74.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.75.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.76.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.77.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.78.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.79.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.80.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.81.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.82.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.83.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.84.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.85.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.86.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.87.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.88.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.89.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.90.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.91.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.92.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.93.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.94.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.95.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.96.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.97.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.98.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.99.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.100.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.101.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.102.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.103.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.104.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.105.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.106.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.107.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.108.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.109.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.110.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.111.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.112.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.113.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.114.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.115.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.116.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.117.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.118.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.119.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.120.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.121.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.122.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.123.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.124.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.125.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.126.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.127.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.128.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.129.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.130.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.131.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.132.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.133.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.134.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.135.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.136.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.137.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.138.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.139.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.140.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.141.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.142.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.143.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.144.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.145.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.146.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.147.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.148.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.149.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.150.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.151.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.152.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.153.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.154.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.155.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.156.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.157.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.158.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.159.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.160.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.161.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.162.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.163.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.164.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.165.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.166.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.167.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.168.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.169.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.170.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.171.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.172.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.173.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.174.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.175.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.176.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.177.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.178.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.179.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.180.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.181.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.182.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.183.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.184.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.185.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.186.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.187.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.188.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.189.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.190.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.191.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.192.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.193.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.194.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.195.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.196.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.197.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.198.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.199.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.200.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.201.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.202.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.203.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.204.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.205.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.206.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.207.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.208.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.209.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.210.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.211.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.212.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.213.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.214.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.215.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.216.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.217.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.218.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.219.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.220.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.221.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.222.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.223.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.224.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.225.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.226.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.227.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.228.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.229.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.230.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.231.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.232.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.233.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.234.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.235.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.236.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.237.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.238.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.239.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.240.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.241.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.242.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.243.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.244.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.245.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.246.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.247.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.248.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.249.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.250.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.251.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.252.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.253.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}, +{"URL": "http://{0}/api/v1/firewall/rule", "TAG": 1, "DATA": {"type": "block", "interface": "wan", "ipprotocol": "inet", "protocol": "tcp", "src": "192.168.254.0/16", "srcport": "any", "dst": "any", "dstport": "any", "apply": false}}] \ No newline at end of file