summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2017-11-26 00:37:58 +0100
committerFrancis Dupont <fdupont@isc.org>2019-11-12 09:58:00 +0100
commitfcf6225fb9f6b493c993d785611f36af2448d488 (patch)
treea3d289eac0b729cfb5ecb23535224d8ddeb5e7cf
parent1d339c91c03bb6f60e411bd205b170289548f628 (diff)
downloadisc-dhcp-fcf6225fb9f6b493c993d785611f36af2448d488.tar.gz
Added -A and subnet IDs
-rw-r--r--keama/confparse.c13
-rw-r--r--keama/doc.txt6
-rw-r--r--keama/keama.87
-rw-r--r--keama/keama.c3
-rw-r--r--keama/keama.h1
-rw-r--r--keama/tests/ba/kea.json110
-rw-r--r--keama/tests/czb/kea.json2373
-rw-r--r--keama/tests/ddnsupdstyle6.out1
-rw-r--r--keama/tests/dhcp3/kea.json1145
-rw-r--r--keama/tests/fordhcp/kea.json10
-rw-r--r--keama/tests/gcet/kea.json1
-rw-r--r--keama/tests/grouphost4.out2
-rw-r--r--keama/tests/groupsubnet4.out1
-rw-r--r--keama/tests/groupsubnet6.out1
-rw-r--r--keama/tests/hostidentifier4.outL4
-rw-r--r--keama/tests/hostname4.out1
-rw-r--r--keama/tests/hostuid4.out2
-rw-r--r--keama/tests/ipaddrhost4.out1
-rw-r--r--keama/tests/optdatagrouppool4.out1
-rw-r--r--keama/tests/optiondatapool4.out1
-rw-r--r--keama/tests/optiondatapool6.out1
-rw-r--r--keama/tests/permitauth4.out1
-rw-r--r--keama/tests/permitauth6.out1
-rw-r--r--keama/tests/pool4.out1
-rw-r--r--keama/tests/pool42.out1
-rw-r--r--keama/tests/pool6.out1
-rw-r--r--keama/tests/preferred6.out1
-rw-r--r--keama/tests/prefix6.out1
-rw-r--r--keama/tests/prefix62.out1
-rw-r--r--keama/tests/range4.out1
-rw-r--r--keama/tests/range6.out1
-rw-r--r--keama/tests/samples/example.json6
-rw-r--r--keama/tests/samples/simple.json2
-rw-r--r--keama/tests/samples/test-a6.json1
-rw-r--r--keama/tests/samples/vmnet8.json1
-rw-r--r--keama/tests/shareone4.out1
-rw-r--r--keama/tests/shareone6.out1
-rw-r--r--keama/tests/sharepools4.out2
-rw-r--r--keama/tests/sharetwo4.out2
-rw-r--r--keama/tests/sharetwo6.out2
-rw-r--r--keama/tests/subnet4.out1
-rw-r--r--keama/tests/subnet4auth.out1
-rw-r--r--keama/tests/subnet4noauth.out1
-rw-r--r--keama/tests/subnet6.out1
-rw-r--r--keama/tests/subnet6auth.out1
-rw-r--r--keama/tests/subnet6multi.out1
-rw-r--r--keama/tests/subnet6noauth.out1
-rw-r--r--keama/tests/subnet6one.out1
-rw-r--r--keama/tests/temporary6.out1
-rw-r--r--keama/tests/ws/kea.json477
50 files changed, 4190 insertions, 9 deletions
diff --git a/keama/confparse.c b/keama/confparse.c
index 54da779d..e5699316 100644
--- a/keama/confparse.c
+++ b/keama/confparse.c
@@ -134,7 +134,7 @@ conf_file_parse(struct parse *cfile)
issues = conf_file_subparse(cfile, ROOT_GROUP);
/* Add a warning when interfaces-config is not present */
- if (subnet_counter > 0) {
+ if (!partial && (subnet_counter > 0)) {
struct element *ifconf;
ifconf = mapGet(cfile->stack[1], "interfaces-config");
@@ -2328,10 +2328,10 @@ common_subnet_parsing(struct parse *cfile,
break;
}
}
- if (authoritative == NULL)
+ if (!partial && (authoritative == NULL))
parse_error(cfile,
"missing top level authoritative statement");
- if (!boolValue(authoritative)) {
+ if (!partial && (!boolValue(authoritative))) {
struct comment *comment;
comment = createComment("/// Not authorized subnet");
@@ -2351,7 +2351,6 @@ common_subnet_parsing(struct parse *cfile,
/* Add the subnet to the list of subnets in this shared net. */
listPush(subnets, subnet);
- subnet_counter++;
return;
}
@@ -2380,6 +2379,9 @@ parse_subnet_declaration(struct parse *cfile)
subnet->kind = SUBNET_DECL;
TAILQ_CONCAT(&subnet->comments, &cfile->comments);
+ subnet_counter++;
+ mapSet(subnet, createInt(subnet_counter), "id");
+
chain = (struct subnet *)malloc(sizeof(*chain));
if (chain == NULL)
parse_error(cfile, "can't allocate subnet");
@@ -2472,6 +2474,9 @@ parse_subnet6_declaration(struct parse *cfile)
subnet->kind = SUBNET_DECL;
TAILQ_CONCAT(&subnet->comments, &cfile->comments);
+ subnet_counter++;
+ mapSet(subnet, createInt(subnet_counter), "id");
+
chain = (struct subnet *)malloc(sizeof(*chain));
if (chain == NULL)
parse_error(cfile, "can't allocate subnet");
diff --git a/keama/doc.txt b/keama/doc.txt
index e470ce8a..23c0e77e 100644
--- a/keama/doc.txt
+++ b/keama/doc.txt
@@ -519,9 +519,7 @@ Variables:
a lexical scope in the config or a scope in a function body
(ISC DHCP has even an unused "let" statement).
There is a variant of bindings for lease files using types and able
- to recognize booleans and numbers. Unfortunately this is very spcific...
+ to recognize booleans and numbers. Unfortunately this is very specific...
TODO:
- - set subnet IDs
- - add -A for partial config (authoritative, interface, ...)
- - classes in pools (to finish: add tests, after merge)
+ - add more tests for classes in pools and class generation
diff --git a/keama/keama.8 b/keama/keama.8
index 75cdd863..194cf981 100644
--- a/keama/keama.8
+++ b/keama/keama.8
@@ -36,6 +36,9 @@ keama - Kea Migration Assistant
|
.B -6]
[
+.B -A
+]
+[
.B -r
.I {perform|fatal|pass}
]
@@ -66,6 +69,10 @@ option.
The input configuration is for DHCPv6. Incompatible with the \fB-4\fR
option.
.TP
+-A
+The input is partial, for instance no \fBauthoritative\fR global statement
+is expected.
+.TP
-r \fIaction\fR
Specify what to do with hostnames: resolve them into their first address,
raise a fatal error or pass them silently.
diff --git a/keama/keama.c b/keama/keama.c
index a0c0fcca..a8171396 100644
--- a/keama/keama.c
+++ b/keama/keama.c
@@ -53,6 +53,7 @@ char *output_file = NULL;
FILE *input = NULL;
FILE *output = NULL;
isc_boolean_t json = ISC_FALSE;
+isc_boolean_t partial = ISC_FALSE;
static const char use_noarg[] = "No argument for command: %s";
static const char bad_resolve[] = "Bad -r argument: %s";
@@ -72,6 +73,8 @@ main(int argc, char **argv) {
local_family = AF_INET;
else if (strcmp(argv[i], "-6") == 0)
local_family = AF_INET6;
+ else if (strcmp(argv[i], "-A") == 0)
+ partial = ISC_TRUE;
else if (strcmp(argv[i], "-T") == 0)
json = ISC_TRUE;
else if (strcmp(argv[i], "-r") == 0) {
diff --git a/keama/keama.h b/keama/keama.h
index ae842223..32233a29 100644
--- a/keama/keama.h
+++ b/keama/keama.h
@@ -300,6 +300,7 @@ struct option {
void stackPush(struct parse *cfile, struct element *elem);
/* From command line */
+extern isc_boolean_t partial;
extern char *hook_library_path;
/* From common/parse.c */
diff --git a/keama/tests/ba/kea.json b/keama/tests/ba/kea.json
index d57f1dbc..2c375415 100644
--- a/keama/tests/ba/kea.json
+++ b/keama/tests/ba/kea.json
@@ -155,15 +155,19 @@
# Loopback subnet
# Used by server to receive DHCP Release messages from localhost
{
+ "id": 1,
"subnet": "127.0.0.1/32"
},
{
+ "id": 2,
"subnet": "10.0.49.0/24"
},
{
+ "id": 3,
"subnet": "10.237.3.0/27"
},
{
+ "id": 4,
"subnet": "169.254.255.0/30"
},
#######################declare subnets################################
@@ -182,6 +186,7 @@
# }
###### Halifax for Peter Carter ##############
{
+ "id": 5,
"subnet": "10.207.128.0/17",
"option-data": [
{
@@ -297,6 +302,7 @@
},
######Saint John NB, Union St.##############
{
+ "id": 6,
"subnet": "10.208.0.0/17",
"option-data": [
{
@@ -393,6 +399,7 @@
},
######Saint John NB, Millidgeville##############
{
+ "id": 7,
"subnet": "10.208.128.0/17",
"option-data": [
{
@@ -488,6 +495,7 @@
},
######Saint John NB, Rothesay##############
{
+ "id": 8,
"subnet": "10.209.0.0/17",
"option-data": [
{
@@ -583,6 +591,7 @@
},
#######Saint John NB, Bayside##############
{
+ "id": 9,
"subnet": "10.209.128.0/17",
"option-data": [
{
@@ -678,6 +687,7 @@
},
######Saint John NB, Lancaster##############
{
+ "id": 10,
"subnet": "10.210.0.0/17",
"option-data": [
{
@@ -773,6 +783,7 @@
},
######Saint John NB, McAllister##############
{
+ "id": 11,
"subnet": "10.210.128.0/17",
"option-data": [
{
@@ -868,6 +879,7 @@
},
#######Moncton NB, Alma St.##############
{
+ "id": 12,
"subnet": "10.212.0.0/17",
"option-data": [
{
@@ -963,6 +975,7 @@
},
#######Moncton NB, Riverview##############
{
+ "id": 13,
"subnet": "10.212.128.0/17",
"option-data": [
{
@@ -1058,6 +1071,7 @@
},
#######Moncton NB, MacBeth##############
{
+ "id": 14,
"subnet": "10.213.0.0/17",
"option-data": [
{
@@ -1153,6 +1167,7 @@
},
#######Moncton NB, Mountain Rd.##############
{
+ "id": 15,
"subnet": "10.213.128.0/17",
"option-data": [
{
@@ -1248,6 +1263,7 @@
},
#######Moncton NB, Elmwood##############
{
+ "id": 16,
"subnet": "10.214.0.0/17",
"option-data": [
{
@@ -1343,6 +1359,7 @@
},
#######Moncton NB, Champlain##############
{
+ "id": 17,
"subnet": "10.214.128.0/17",
"option-data": [
{
@@ -1438,6 +1455,7 @@
},
###### Moncton, NB ##############
{
+ "id": 18,
"subnet": "10.215.0.0/17",
"option-data": [
{
@@ -1534,6 +1552,7 @@
},
###### Moncton, NB ##############
{
+ "id": 19,
"subnet": "10.215.128.0/18",
"option-data": [
{
@@ -1630,6 +1649,7 @@
},
#######Fredericton NB, Wisley Rd.##############
{
+ "id": 20,
"subnet": "10.216.0.0/17",
"option-data": [
{
@@ -1725,6 +1745,7 @@
},
#######Fredericton NB, Maryland Hill##############
{
+ "id": 21,
"subnet": "10.216.128.0/17",
"option-data": [
{
@@ -1820,6 +1841,7 @@
},
#######Fredericton NB, Carleton##############
{
+ "id": 22,
"subnet": "10.217.0.0/17",
"option-data": [
{
@@ -1915,6 +1937,7 @@
},
#######Fredericton NB, Devon##############
{
+ "id": 23,
"subnet": "10.217.128.0/17",
"option-data": [
{
@@ -2010,6 +2033,7 @@
},
#######Halifax NS, Rockingham##############
{
+ "id": 24,
"subnet": "10.192.0.0/17",
"option-data": [
{
@@ -2105,6 +2129,7 @@
},
#######Halifax NS, Woodlawn##############
{
+ "id": 25,
"subnet": "10.193.0.0/17",
"option-data": [
{
@@ -2200,6 +2225,7 @@
},
#######Halifax NS, Woodlawn (Edge 2)##############
{
+ "id": 26,
"subnet": "10.193.192.0/18",
"option-data": [
{
@@ -2295,6 +2321,7 @@
},
#######Halifax NS, Harbour##############
{
+ "id": 27,
"subnet": "10.194.0.0/17",
"option-data": [
{
@@ -2390,6 +2417,7 @@
},
####### SYDNEY EDGE 2 ##############
{
+ "id": 28,
"subnet": "10.194.128.0/18",
"option-data": [
{
@@ -2485,6 +2513,7 @@
},
####### Halifax NS, Bedford ##############
{
+ "id": 29,
"subnet": "10.195.0.0/17",
"option-data": [
{
@@ -2580,6 +2609,7 @@
},
####### Halifax NS, Bedford (Edge #2) ##############
{
+ "id": 30,
"subnet": "10.194.192.0/18",
"option-data": [
{
@@ -2675,6 +2705,7 @@
},
####### KENTVILLE EDGE 2 ##############
{
+ "id": 31,
"subnet": "10.195.128.0/18",
"option-data": [
{
@@ -2770,6 +2801,7 @@
},
#######Halifax NS, Bishop##############
{
+ "id": 32,
"subnet": "10.196.0.0/17",
"option-data": [
{
@@ -2865,6 +2897,7 @@
},
####### Halifax NS, Willowdale (EDGE #2) ##############
{
+ "id": 33,
"subnet": "10.196.128.0/18",
"option-data": [
{
@@ -2960,6 +2993,7 @@
},
#######Halifax NS, Lorne##############
{
+ "id": 34,
"subnet": "10.197.0.0/17",
"option-data": [
{
@@ -3055,6 +3089,7 @@
},
#######Halifax NS, Lorne##############
{
+ "id": 35,
"subnet": "10.195.192.0/18",
"option-data": [
{
@@ -3150,6 +3185,7 @@
},
#######Halifax NS, Sackville##############
{
+ "id": 36,
"subnet": "10.198.0.0/17",
"option-data": [
{
@@ -3245,6 +3281,7 @@
},
#######Halifax NS, Spryfield##############
{
+ "id": 37,
"subnet": "10.199.0.0/17",
"option-data": [
{
@@ -3340,6 +3377,7 @@
},
######NFLD, Allandale##############
{
+ "id": 38,
"subnet": "10.224.0.0/17",
"option-data": [
{
@@ -3435,6 +3473,7 @@
},
######NFLD, Allandale EDGE 3##############
{
+ "id": 39,
"subnet": "10.227.0.0/19",
"option-data": [
{
@@ -3529,6 +3568,7 @@
]
},
{
+ "id": 40,
"subnet": "10.227.32.0/19",
"option-data": [
{
@@ -3624,6 +3664,7 @@
},
######NFLD, O'Connell Dr - CRBKNF04D00##############
{
+ "id": 41,
"subnet": "10.227.64.0/19",
"option-data": [
{
@@ -3719,6 +3760,7 @@
},
###### Mount Pearl Edge #4 (MTPRNF01D12) ##############
{
+ "id": 42,
"subnet": "10.227.96.0/19",
"option-data": [
{
@@ -3814,6 +3856,7 @@
},
###### NS, SACKVILLE EDGE 3##############
{
+ "id": 43,
"subnet": "10.197.128.0/19",
"option-data": [
{
@@ -3908,6 +3951,7 @@
]
},
{
+ "id": 44,
"subnet": "10.197.160.0/19",
"option-data": [
{
@@ -4003,6 +4047,7 @@
},
###### STJH, LANCASTER ##############
{
+ "id": 45,
"subnet": "10.218.64.0/18",
"option-data": [
{
@@ -4098,6 +4143,7 @@
},
######NFLD, Mount Pearl##############
{
+ "id": 46,
"subnet": "10.225.0.0/17",
"option-data": [
{
@@ -4193,6 +4239,7 @@
},
####### Sackville (SKVLNS01D07) ##############
{
+ "id": 47,
"subnet": "10.203.192.0/18",
"option-data": [
{
@@ -4288,6 +4335,7 @@
},
###### Sydney, NS ##############
{
+ "id": 48,
"subnet": "10.204.128.0/17",
"option-data": [
{
@@ -4384,6 +4432,7 @@
},
###### Coxheath, NS ##############
{
+ "id": 49,
"subnet": "10.204.0.0/17",
"option-data": [
{
@@ -4483,6 +4532,7 @@
},
####### Bathurst NB##############
{
+ "id": 50,
"subnet": "10.220.0.0/17",
"option-data": [
{
@@ -4578,6 +4628,7 @@
},
####### Bathurst NB##############
{
+ "id": 51,
"subnet": "10.220.128.0/18",
"option-data": [
{
@@ -4673,6 +4724,7 @@
},
####### Moncton Alma 4 NB - MCTNNBSAD17##############
{
+ "id": 52,
"subnet": "10.220.192.0/19",
"option-data": [
{
@@ -4768,6 +4820,7 @@
},
####### Newcastle NB##############
{
+ "id": 53,
"subnet": "10.221.0.0/17",
// "statement": {
// "if": {
@@ -4854,6 +4907,7 @@
},
###### Charlottetown, PEI ##############
{
+ "id": 54,
"subnet": "10.232.0.0/18",
"option-data": [
{
@@ -4950,6 +5004,7 @@
},
###### Charlottetown, PEI II ##############
{
+ "id": 55,
"subnet": "10.232.64.0/18",
"option-data": [
{
@@ -5046,6 +5101,7 @@
},
###### Summerside PEI ##############
{
+ "id": 56,
"subnet": "10.233.0.0/18",
"option-data": [
{
@@ -5142,6 +5198,7 @@
},
###### Truro, NS ##############
{
+ "id": 57,
"subnet": "10.205.64.0/18",
"option-data": [
{
@@ -5239,6 +5296,7 @@
},
###### Truro, NS ##############
{
+ "id": 58,
"subnet": "10.205.128.0/18",
"option-data": [
{
@@ -5335,6 +5393,7 @@
},
###### Long Pond, NL ##############
{
+ "id": 59,
"subnet": "10.226.0.0/18",
"option-data": [
{
@@ -5431,6 +5490,7 @@
},
###### St. John's 2, NS ##############
{
+ "id": 60,
"subnet": "10.224.128.0/17",
"option-data": [
{
@@ -5527,6 +5587,7 @@
},
###### New Glasgow, NS ##############
{
+ "id": 61,
"subnet": "10.205.0.0/18",
"option-data": [
{
@@ -5623,6 +5684,7 @@
},
###### Willowdale ##############
{
+ "id": 62,
"subnet": "10.193.128.0/18",
"option-data": [
{
@@ -5719,6 +5781,7 @@
},
###### Glace Bay ##############
{
+ "id": 63,
"subnet": "10.203.128.0/18",
"option-data": [
{
@@ -5815,6 +5878,7 @@
},
###### FCTNNBSCD32 - Carleton St. #2 ##############
{
+ "id": 64,
"subnet": "10.218.0.0/18",
"option-data": [
{
@@ -5911,6 +5975,7 @@
},
###### FCTNNBSCD32 - Carleton St. #2 ##############
{
+ "id": 65,
"subnet": "10.218.128.0/17",
"option-data": [
{
@@ -6007,6 +6072,7 @@
},
###### STJHNBSUOL2 - Union St. #2 ##############
{
+ "id": 66,
"subnet": "10.211.0.0/18",
"option-data": [
{
@@ -6103,6 +6169,7 @@
},
####### Oromocto (ORMONBSCD02) ##############
{
+ "id": 67,
"subnet": "10.211.128.0/18",
"option-data": [
{
@@ -6198,6 +6265,7 @@
},
###### CRBKNF02D00 - Corner Brook ##############
{
+ "id": 68,
"subnet": "10.228.128.0/18",
"option-data": [
{
@@ -6294,6 +6362,7 @@
},
###### Clarenville Edge (CLVLNFXAD01) ##############
{
+ "id": 69,
"subnet": "10.228.192.0/18",
"option-data": [
{
@@ -6390,6 +6459,7 @@
},
###### EDMNNBSCD01 - Edmunston ##############
{
+ "id": 70,
"subnet": "10.221.128.0/18",
"option-data": [
{
@@ -6486,6 +6556,7 @@
},
###### MTAGPE03D05 - Montague ##############
{
+ "id": 71,
"subnet": "10.234.0.0/18",
"option-data": [
{
@@ -6582,6 +6653,7 @@
},
###### YRMONS01D04 - Yarmouth ##############
{
+ "id": 72,
"subnet": "10.203.0.0/18",
"option-data": [
{
@@ -6678,6 +6750,7 @@
},
###### WDSTNBSCD01 - Woodstock ##############
{
+ "id": 73,
"subnet": "10.221.192.0/18",
"option-data": [
{
@@ -6774,6 +6847,7 @@
},
###### BRWRNS02D02 - Bridgewater ##############
{
+ "id": 74,
"subnet": "10.203.64.0/18",
"option-data": [
{
@@ -6870,6 +6944,7 @@
},
###### SHDCNBSCD01 - Shediac ##############
{
+ "id": 75,
"subnet": "10.222.128.0/18",
"option-data": [
{
@@ -6966,6 +7041,7 @@
},
###### Campbellton Edge (CMTNNBSCD02) #############
{
+ "id": 76,
"subnet": "10.222.192.0/18",
"option-data": [
{
@@ -7062,6 +7138,7 @@
},
###### GNDRNFXAD01 - Gander ##############
{
+ "id": 77,
"subnet": "10.228.0.0/18",
"option-data": [
{
@@ -7158,6 +7235,7 @@
},
###### GDFLNF02D01 - Grand Falls ##############
{
+ "id": 78,
"subnet": "10.228.64.0/18",
"option-data": [
{
@@ -7254,6 +7332,7 @@
},
###### SUSXNBSCD01 - Sussex ##############
{
+ "id": 79,
"subnet": "10.222.64.0/18",
"option-data": [
{
@@ -7350,6 +7429,7 @@
},
###### HMPNNBSCD21 - Hampton ##############
{
+ "id": 80,
"subnet": "10.222.0.0/18",
"option-data": [
{
@@ -7446,6 +7526,7 @@
},
###### MTPRNF01D08 - Mount Pearl Edge #2 ##############
{
+ "id": 81,
"subnet": "10.226.64.0/18",
"option-data": [
{
@@ -7542,6 +7623,7 @@
},
###### MTPRNF01D08 - Mount Pearl Edge #3 ##############
{
+ "id": 82,
"subnet": "10.226.192.0/18",
"option-data": [
{
@@ -7638,6 +7720,7 @@
},
####### Sudbury Minto St. (SDBRON9878W) ##############
{
+ "id": 83,
"subnet": "10.176.0.0/19",
"option-data": [
{
@@ -7733,6 +7816,7 @@
},
####### Sudbury Lasalle Blvd. (SDBRON4406W) ##############
{
+ "id": 84,
"subnet": "10.176.32.0/19",
"option-data": [
{
@@ -7828,6 +7912,7 @@
},
###### Hanmer Ontario ##############
{
+ "id": 85,
"subnet": "10.176.64.0/19",
"option-data": [
{
@@ -7924,6 +8009,7 @@
},
###### Chelmsford Ontario ##############
{
+ "id": 86,
"subnet": "10.176.96.0/19",
"option-data": [
{
@@ -8020,6 +8106,7 @@
},
###### Rockwood Ontario ##############
{
+ "id": 87,
"subnet": "10.176.128.0/19",
"option-data": [
{
@@ -8116,6 +8203,7 @@
},
###### North Bay 1 Ontario ##############
{
+ "id": 88,
"subnet": "10.176.160.0/19",
"option-data": [
{
@@ -8212,6 +8300,7 @@
},
###### North Bay 2 Ontario ##############
{
+ "id": 89,
"subnet": "10.176.192.0/19",
"option-data": [
{
@@ -8308,6 +8397,7 @@
},
###### Port Hawkesbury (PHBYNS01D02) ##############
{
+ "id": 90,
"subnet": "10.205.192.0/18",
"option-data": [
{
@@ -8404,6 +8494,7 @@
},
###### Antigonish (AGSHNS01D03) ##############
{
+ "id": 91,
"subnet": "10.192.192.0/18",
"option-data": [
{
@@ -8500,6 +8591,7 @@
},
###### Antigonish (AGSHNS01D03) ##############
{
+ "id": 92,
"subnet": "10.192.128.0/18",
"option-data": [
{
@@ -8596,6 +8688,7 @@
},
###### Deer Lake (DRLKNF01D01) ##############
{
+ "id": 93,
"subnet": "10.225.128.0/18",
"option-data": [
{
@@ -8692,6 +8785,7 @@
},
###### Rothesay (RHSYNBSCD05) ##############
{
+ "id": 94,
"subnet": "10.211.192.0/18",
"option-data": [
{
@@ -8788,6 +8882,7 @@
},
###### Devon (FCTNNBSDD08) ##############
{
+ "id": 95,
"subnet": "10.211.64.0/18",
"option-data": [
{
@@ -8884,6 +8979,7 @@
},
###### Marystown (MYTWNF01D01) ##############
{
+ "id": 96,
"subnet": "10.225.192.0/18",
"option-data": [
{
@@ -8980,6 +9076,7 @@
},
#######Moncton NB, Mountain Rd. Edge 2##############
{
+ "id": 97,
"subnet": "10.215.192.0/18",
"option-data": [
{
@@ -9076,6 +9173,7 @@
},
###### Bay Roberts (BARTNF01D01) ##############
{
+ "id": 98,
"subnet": "10.226.128.0/18",
"option-data": [
{
@@ -9172,6 +9270,7 @@
},
###### Sault Ste Marie 1 (SSMRON9432W) ##############
{
+ "id": 99,
"subnet": "10.177.0.0/19",
"option-data": [
{
@@ -9268,6 +9367,7 @@
},
###### Sault Ste Marie 2 (SSMRON9433W) ##############
{
+ "id": 100,
"subnet": "10.177.64.0/19",
"option-data": [
{
@@ -9364,6 +9464,7 @@
},
###### Timmins Edge #1 (TMNSONXT57W) ##############
{
+ "id": 101,
"subnet": "10.177.32.0/19",
"option-data": [
{
@@ -9460,6 +9561,7 @@
},
###### Timmins Edge #2 (TMNSONXT58W) ##############
{
+ "id": 102,
"subnet": "10.177.96.0/19",
"option-data": [
{
@@ -9556,6 +9658,7 @@
},
###### New Liskeard Edge #1 (NLKDONXT44W) ##############
{
+ "id": 103,
"subnet": "10.177.128.0/19",
"option-data": [
{
@@ -9652,6 +9755,7 @@
},
###### New Liskeard Edge #1 (NLKDONXT44W) ##############
{
+ "id": 104,
"subnet": "10.177.192.0/19",
"option-data": [
{
@@ -9748,6 +9852,7 @@
},
###### Montague Edge (MTAGPE03D05) ##############
{
+ "id": 105,
"subnet": "10.232.192.0/19",
"option-data": [
{
@@ -9844,6 +9949,7 @@
},
###### Summerside Edge#2 (SMSDPE01D10) ##############
{
+ "id": 106,
"subnet": "10.232.128.0/19",
"option-data": [
{
@@ -9940,6 +10046,7 @@
},
###### Sydney NS Edge#3 (SYDNNS01D12) ##############
{
+ "id": 107,
"subnet": "10.197.192.0/19",
"option-data": [
{
@@ -10036,6 +10143,7 @@
},
###### Elmsdale NS (EMDLNS01D02) ##############
{
+ "id": 108,
"subnet": "10.197.224.0/19",
"option-data": [
{
@@ -10132,6 +10240,7 @@
},
###### Rockingham NS (HLFXNS05D11) ##############
{
+ "id": 109,
"subnet": "10.198.128.0/19",
"option-data": [
{
@@ -10228,6 +10337,7 @@
},
###### Truro NS Edge 2 (TRURNS01D07) ##############
{
+ "id": 110,
"subnet": "10.198.160.0/19",
"option-data": [
{
diff --git a/keama/tests/czb/kea.json b/keama/tests/czb/kea.json
index 3954ba86..8661d399 100644
--- a/keama/tests/czb/kea.json
+++ b/keama/tests/czb/kea.json
@@ -44528,6 +44528,7 @@
"subnet4": [
/// Begin file czb/dhcpd.subnets.DHCPinterfaces
{
+ "id": 1,
"subnet": "140.16.40.0/24",
"option-data": [
{
@@ -44569,6 +44570,7 @@
]
},
{
+ "id": 2,
"subnet": "140.13.237.0/24",
"option-data": [
{
@@ -44610,6 +44612,7 @@
]
},
{
+ "id": 3,
"subnet": "142.20.35.0/24",
"option-data": [
{
@@ -44651,6 +44654,7 @@
]
},
{
+ "id": 4,
"subnet": "140.13.216.0/24",
"option-data": [
{
@@ -44692,6 +44696,7 @@
]
},
{
+ "id": 5,
"subnet": "142.20.10.0/24",
"option-data": [
{
@@ -44737,6 +44742,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AST01
{
+ "id": 6,
"subnet": "145.70.156.0/24",
"option-data": [
{
@@ -44962,6 +44968,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BHB01
{
+ "id": 7,
"subnet": "134.50.112.0/24",
"option-data": [
{
@@ -45187,6 +45194,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM24
{
+ "id": 8,
"subnet": "140.156.76.0/22",
"option-data": [
{
@@ -45347,6 +45355,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 9,
"subnet": "140.205.180.0/24",
"option-data": [
{
@@ -45507,6 +45516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 10,
"subnet": "142.10.12.0/24",
"option-data": [
{
@@ -45667,6 +45677,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BVD01
{
+ "id": 11,
"subnet": "133.40.104.0/24",
"option-data": [
{
@@ -45892,6 +45903,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BXL03
{
+ "id": 12,
"subnet": "10.176.70.0/24",
"option-data": [
{
@@ -45985,6 +45997,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 13,
"subnet": "140.60.68.0/22",
"option-data": [
{
@@ -46145,6 +46158,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 14,
"subnet": "140.150.24.0/22",
"option-data": [
{
@@ -46299,6 +46313,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 15,
"subnet": "140.150.32.0/22",
"option-data": [
{
@@ -46459,6 +46474,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 16,
"subnet": "140.150.8.0/22",
"option-data": [
{
@@ -46619,6 +46635,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 17,
"subnet": "140.154.108.0/22",
"option-data": [
{
@@ -46779,6 +46796,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 18,
"subnet": "140.154.116.0/22",
"option-data": [
{
@@ -46939,6 +46957,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 19,
"subnet": "140.154.124.0/22",
"option-data": [
{
@@ -47099,6 +47118,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 20,
"subnet": "140.154.128.0/22",
"option-data": [
{
@@ -47259,6 +47279,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 21,
"subnet": "140.154.16.0/22",
"option-data": [
{
@@ -47419,6 +47440,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 22,
"subnet": "140.154.20.0/22",
"option-data": [
{
@@ -47579,6 +47601,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 23,
"subnet": "140.154.24.0/22",
"option-data": [
{
@@ -47739,6 +47762,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 24,
"subnet": "140.154.4.0/22",
"option-data": [
{
@@ -47899,6 +47923,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 25,
"subnet": "140.154.40.0/22",
"option-data": [
{
@@ -48059,6 +48084,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 26,
"subnet": "140.154.48.0/22",
"option-data": [
{
@@ -48219,6 +48245,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 27,
"subnet": "140.154.52.0/22",
"option-data": [
{
@@ -48379,6 +48406,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 28,
"subnet": "140.154.60.0/22",
"option-data": [
{
@@ -48539,6 +48567,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 29,
"subnet": "140.154.72.0/22",
"option-data": [
{
@@ -48699,6 +48728,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 30,
"subnet": "140.154.8.0/22",
"option-data": [
{
@@ -48859,6 +48889,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 31,
"subnet": "140.154.80.0/22",
"option-data": [
{
@@ -49019,6 +49050,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 32,
"subnet": "140.154.96.0/22",
"option-data": [
{
@@ -49179,6 +49211,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 33,
"subnet": "140.201.152.0/22",
"option-data": [
{
@@ -49339,6 +49372,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 34,
"subnet": "140.202.152.0/22",
"option-data": [
{
@@ -49499,6 +49533,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 35,
"subnet": "140.203.152.0/22",
"option-data": [
{
@@ -49659,6 +49694,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 36,
"subnet": "140.204.152.0/22",
"option-data": [
{
@@ -49819,6 +49855,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 37,
"subnet": "140.205.152.0/22",
"option-data": [
{
@@ -49979,6 +50016,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 38,
"subnet": "140.206.152.0/22",
"option-data": [
{
@@ -50139,6 +50177,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 39,
"subnet": "140.207.152.0/22",
"option-data": [
{
@@ -50299,6 +50338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 40,
"subnet": "140.208.152.0/22",
"option-data": [
{
@@ -50459,6 +50499,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 41,
"subnet": "140.209.152.0/22",
"option-data": [
{
@@ -50619,6 +50660,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 42,
"subnet": "140.210.152.0/22",
"option-data": [
{
@@ -50779,6 +50821,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 43,
"subnet": "140.211.152.0/22",
"option-data": [
{
@@ -50939,6 +50982,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 44,
"subnet": "140.212.152.0/22",
"option-data": [
{
@@ -51099,6 +51143,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 45,
"subnet": "137.0.30.0/24",
"option-data": [
{
@@ -51152,6 +51197,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 46,
"subnet": "140.101.132.0/22",
"option-data": [
{
@@ -51224,6 +51270,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 47,
"subnet": "140.15.133.0/24",
"option-data": [
{
@@ -51296,6 +51343,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 48,
"subnet": "140.15.135.0/24",
"option-data": [
{
@@ -51368,6 +51416,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 49,
"subnet": "140.152.80.0/22",
"option-data": [
{
@@ -51440,6 +51489,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 50,
"subnet": "140.154.156.0/22",
"option-data": [
{
@@ -51512,6 +51562,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 51,
"subnet": "140.169.112.0/22",
"option-data": [
{
@@ -51584,6 +51635,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LNG03
{
+ "id": 52,
"subnet": "140.199.190.0/24",
"option-data": [
{
@@ -51656,6 +51708,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 53,
"subnet": "140.101.17.0/24",
"option-data": [
{
@@ -51755,6 +51808,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 54,
"subnet": "140.4.112.0/22",
"option-data": [
{
@@ -51854,6 +51908,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 55,
"subnet": "140.4.128.0/22",
"option-data": [
{
@@ -51953,6 +52008,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 56,
"subnet": "140.4.164.0/22",
"option-data": [
{
@@ -52052,6 +52108,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 57,
"subnet": "140.4.64.0/22",
"option-data": [
{
@@ -52151,6 +52208,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 58,
"subnet": "140.4.88.0/22",
"option-data": [
{
@@ -52250,6 +52308,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 59,
"subnet": "140.169.66.0/24",
"option-data": [
{
@@ -52347,6 +52406,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 60,
"subnet": "140.169.70.0/24",
"option-data": [
{
@@ -52440,6 +52500,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 61,
"subnet": "140.169.72.0/24",
"option-data": [
{
@@ -52533,6 +52594,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 62,
"subnet": "140.169.74.0/24",
"option-data": [
{
@@ -52630,6 +52692,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM03
{
+ "id": 63,
"subnet": "140.169.68.0/24",
"option-data": [
{
@@ -52723,6 +52786,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM14
{
+ "id": 64,
"subnet": "140.5.1.0/24",
"option-data": [
{
@@ -52842,6 +52906,7 @@
#Automatisch erzeugte Konfiguration am 1241875832
# FFM19
{
+ "id": 65,
"subnet": "140.90.120.0/22",
"option-data": [
{
@@ -52941,6 +53006,7 @@
#Automatisch erzeugte Konfiguration am 1241875832
# FFM19
{
+ "id": 66,
"subnet": "140.90.124.0/22",
"option-data": [
{
@@ -53040,6 +53106,7 @@
#Automatisch erzeugte Konfiguration am 1241875832
# FFM19
{
+ "id": 67,
"subnet": "140.90.128.0/22",
"option-data": [
{
@@ -53139,6 +53206,7 @@
#Automatisch erzeugte Konfiguration am 1241875832
# FFM19
{
+ "id": 68,
"subnet": "140.90.136.0/22",
"option-data": [
{
@@ -53238,6 +53306,7 @@
#Automatisch erzeugte Konfiguration am 1241878557
# FFM19
{
+ "id": 69,
"subnet": "140.90.132.0/22",
"option-data": [
{
@@ -53337,6 +53406,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 70,
"subnet": "140.6.1.0/24",
"option-data": [
{
@@ -53436,6 +53506,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 71,
"subnet": "140.6.17.0/24",
"option-data": [
{
@@ -53535,6 +53606,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 72,
"subnet": "140.6.25.0/24",
"option-data": [
{
@@ -53634,6 +53706,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 73,
"subnet": "140.6.33.0/24",
"option-data": [
{
@@ -53733,6 +53806,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 74,
"subnet": "140.6.41.0/24",
"option-data": [
{
@@ -53832,6 +53906,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 75,
"subnet": "140.6.49.0/24",
"option-data": [
{
@@ -53931,6 +54006,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 76,
"subnet": "140.6.57.0/24",
"option-data": [
{
@@ -54030,6 +54106,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 77,
"subnet": "140.6.9.0/24",
"option-data": [
{
@@ -54129,6 +54206,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM24
{
+ "id": 78,
"subnet": "140.156.51.0/24",
"option-data": [
{
@@ -54226,6 +54304,7 @@
#Automatisch erzeugte Konfiguration am 1244540871
# FFM49
{
+ "id": 79,
"subnet": "10.151.248.0/24",
"option-data": [
{
@@ -54445,6 +54524,7 @@
#Automatisch erzeugte Konfiguration am 1244540871
# FFM62
{
+ "id": 80,
"subnet": "140.60.212.0/24",
"option-data": [
{
@@ -54668,6 +54748,7 @@
#Automatisch erzeugte Konfiguration am 1244561319
# FFM62
{
+ "id": 81,
"subnet": "140.60.204.0/24",
"option-data": [
{
@@ -54887,6 +54968,7 @@
#Automatisch erzeugte Konfiguration am 1244561319
# FFM62
{
+ "id": 82,
"subnet": "140.60.220.0/24",
"option-data": [
{
@@ -55110,6 +55192,7 @@
#Automatisch erzeugte Konfiguration am 1245141704
# FFM62
{
+ "id": 83,
"subnet": "140.60.242.0/24",
"option-data": [
{
@@ -55329,6 +55412,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 84,
"subnet": "181.0.8.0/24",
"option-data": [
{
@@ -55548,6 +55632,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 85,
"subnet": "140.14.169.0/24",
"option-data": [
{
@@ -55767,6 +55852,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 86,
"subnet": "140.14.170.0/24",
"option-data": [
{
@@ -55986,6 +56072,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 87,
"subnet": "140.14.178.0/24",
"option-data": [
{
@@ -56205,6 +56292,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 88,
"subnet": "140.14.200.0/24",
"option-data": [
{
@@ -56424,6 +56512,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 89,
"subnet": "140.14.201.0/24",
"option-data": [
{
@@ -56643,6 +56732,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 90,
"subnet": "140.14.202.0/24",
"option-data": [
{
@@ -56862,6 +56952,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 91,
"subnet": "140.14.203.0/24",
"option-data": [
{
@@ -57081,6 +57172,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 92,
"subnet": "140.14.246.0/24",
"option-data": [
{
@@ -57300,6 +57392,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 93,
"subnet": "140.15.177.0/24",
"option-data": [
{
@@ -57525,6 +57618,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DAR02
{
+ "id": 94,
"subnet": "141.40.44.0/24",
"option-data": [
{
@@ -57744,6 +57838,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 95,
"subnet": "140.15.179.0/24",
"option-data": [
{
@@ -57843,6 +57938,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 96,
"subnet": "140.15.180.0/24",
"option-data": [
{
@@ -57942,6 +58038,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 97,
"subnet": "140.15.181.0/24",
"option-data": [
{
@@ -58041,6 +58138,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 98,
"subnet": "140.15.182.0/24",
"option-data": [
{
@@ -58140,6 +58238,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 99,
"subnet": "140.15.183.0/24",
"option-data": [
{
@@ -58239,6 +58338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 100,
"subnet": "140.15.184.0/24",
"option-data": [
{
@@ -58338,6 +58438,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 101,
"subnet": "140.15.185.0/24",
"option-data": [
{
@@ -58437,6 +58538,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 102,
"subnet": "140.15.186.0/24",
"option-data": [
{
@@ -58536,6 +58638,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 103,
"subnet": "140.15.187.0/24",
"option-data": [
{
@@ -58635,6 +58738,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 104,
"subnet": "140.15.188.0/24",
"option-data": [
{
@@ -58734,6 +58838,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 105,
"subnet": "140.15.189.0/24",
"option-data": [
{
@@ -58833,6 +58938,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 106,
"subnet": "140.15.190.0/24",
"option-data": [
{
@@ -58932,6 +59038,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 107,
"subnet": "140.15.191.0/24",
"option-data": [
{
@@ -59031,6 +59138,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 108,
"subnet": "140.15.192.0/24",
"option-data": [
{
@@ -59130,6 +59238,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 109,
"subnet": "140.15.193.0/24",
"option-data": [
{
@@ -59229,6 +59338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 110,
"subnet": "140.15.194.0/24",
"option-data": [
{
@@ -59328,6 +59438,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 111,
"subnet": "140.15.195.0/24",
"option-data": [
{
@@ -59427,6 +59538,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 112,
"subnet": "140.15.196.0/24",
"option-data": [
{
@@ -59526,6 +59638,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 113,
"subnet": "140.15.197.0/24",
"option-data": [
{
@@ -59625,6 +59738,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 114,
"subnet": "140.15.198.0/24",
"option-data": [
{
@@ -59724,6 +59838,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 115,
"subnet": "140.15.199.0/24",
"option-data": [
{
@@ -59823,6 +59938,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 116,
"subnet": "140.15.200.0/24",
"option-data": [
{
@@ -59922,6 +60038,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 117,
"subnet": "140.15.201.0/24",
"option-data": [
{
@@ -60021,6 +60138,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 118,
"subnet": "140.15.202.0/24",
"option-data": [
{
@@ -60120,6 +60238,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 119,
"subnet": "140.15.203.0/24",
"option-data": [
{
@@ -60219,6 +60338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 120,
"subnet": "140.15.204.0/24",
"option-data": [
{
@@ -60318,6 +60438,7 @@
#Automatisch erzeugte Konfiguration am 1244108151
# FFM80
{
+ "id": 121,
"subnet": "140.13.4.0/24",
"option-data": [
{
@@ -60541,6 +60662,7 @@
#Automatisch erzeugte Konfiguration am 1244540871
# FFM80
{
+ "id": 122,
"subnet": "140.14.254.0/24",
"option-data": [
{
@@ -60760,6 +60882,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GRA01
{
+ "id": 123,
"subnet": "144.71.128.0/24",
"option-data": [
{
@@ -60985,6 +61108,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG30
{
+ "id": 124,
"subnet": "132.31.52.0/24",
"option-data": [
{
@@ -61204,6 +61328,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 125,
"subnet": "140.138.32.0/22",
"option-data": [
{
@@ -61269,6 +61394,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 126,
"subnet": "140.138.48.0/22",
"option-data": [
{
@@ -61338,6 +61464,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 127,
"subnet": "140.14.132.0/22",
"option-data": [
{
@@ -61403,6 +61530,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 128,
"subnet": "140.15.132.0/24",
"option-data": [
{
@@ -61468,6 +61596,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 129,
"subnet": "140.15.80.0/22",
"option-data": [
{
@@ -61533,6 +61662,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 130,
"subnet": "140.135.24.0/22",
"option-data": [
{
@@ -61598,6 +61728,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 131,
"subnet": "140.135.32.0/22",
"option-data": [
{
@@ -61663,6 +61794,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 132,
"subnet": "140.135.40.0/22",
"option-data": [
{
@@ -61722,6 +61854,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 133,
"subnet": "140.14.136.0/22",
"option-data": [
{
@@ -61787,6 +61920,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 134,
"subnet": "140.14.140.0/22",
"option-data": [
{
@@ -61964,6 +62098,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 135,
"subnet": "140.135.48.0/22",
"option-data": [
{
@@ -62029,6 +62164,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 136,
"subnet": "140.135.56.0/22",
"option-data": [
{
@@ -62094,6 +62230,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ILM01
{
+ "id": 137,
"subnet": "145.72.30.0/24",
"option-data": [
{
@@ -62319,6 +62456,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NOM01
{
+ "id": 138,
"subnet": "133.50.88.0/24",
"option-data": [
{
@@ -62544,6 +62682,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRD02
{
+ "id": 139,
"subnet": "135.80.70.0/24",
"option-data": [
{
@@ -62769,6 +62908,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAP02
{
+ "id": 140,
"subnet": "133.50.86.0/24",
"option-data": [
{
@@ -62994,6 +63134,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RWL01
{
+ "id": 141,
"subnet": "143.50.98.0/24",
"option-data": [
{
@@ -63219,6 +63360,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP01
{
+ "id": 142,
"subnet": "10.198.6.0/24",
"option-data": [
{
@@ -63322,6 +63464,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP01
{
+ "id": 143,
"subnet": "10.198.8.0/24",
"option-data": [
{
@@ -63421,6 +63564,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# SGP01
{
+ "id": 144,
"subnet": "10.198.7.0/24",
"option-data": [
{
@@ -63520,6 +63664,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP02
{
+ "id": 145,
"subnet": "10.199.6.0/24",
"option-data": [
{
@@ -63619,6 +63764,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP04
{
+ "id": 146,
"subnet": "10.200.7.0/24",
"option-data": [
{
@@ -63718,6 +63864,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SHA04
{
+ "id": 147,
"subnet": "10.201.70.0/24",
"option-data": [
{
@@ -63811,6 +63958,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SPO01
{
+ "id": 148,
"subnet": "10.197.134.0/24",
"option-data": [
{
@@ -63870,6 +64018,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU15
{
+ "id": 149,
"subnet": "143.30.108.0/24",
"option-data": [
{
@@ -64095,6 +64244,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STW01
{
+ "id": 150,
"subnet": "141.70.120.0/24",
"option-data": [
{
@@ -64320,6 +64470,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWL01
{
+ "id": 151,
"subnet": "138.50.212.0/24",
"option-data": [
{
@@ -64545,6 +64696,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 152,
"subnet": "140.101.124.0/24",
"option-data": [
{
@@ -64598,6 +64750,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 153,
"subnet": "140.11.33.0/24",
"option-data": [
{
@@ -64669,6 +64822,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 154,
"subnet": "140.11.36.0/24",
"option-data": [
{
@@ -64726,6 +64880,7 @@
#Automatisch erzeugte Konfiguration am 1238580599
# TIJ04
{
+ "id": 155,
"subnet": "10.201.198.0/24",
"option-data": [
{
@@ -64819,6 +64974,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM79
{
+ "id": 156,
"subnet": "10.144.150.0/24",
"option-data": [
{
@@ -64918,6 +65074,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG62
{
+ "id": 157,
"subnet": "132.20.2.0/24",
"option-data": [
{
@@ -64971,6 +65128,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR19
{
+ "id": 158,
"subnet": "135.70.192.0/24",
"option-data": [
{
@@ -65024,6 +65182,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR01
{
+ "id": 159,
"subnet": "135.70.222.0/24",
"option-data": [
{
@@ -65083,6 +65242,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF42
{
+ "id": 160,
"subnet": "136.0.96.0/24",
"option-data": [
{
@@ -65136,6 +65296,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 161,
"subnet": "140.13.22.0/24",
"option-data": [
{
@@ -65189,6 +65350,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM05
{
+ "id": 162,
"subnet": "140.70.6.0/24",
"option-data": [
{
@@ -65242,6 +65404,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RUS02
{
+ "id": 163,
"subnet": "141.60.138.0/24",
"option-data": [
{
@@ -65295,6 +65458,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 164,
"subnet": "142.20.122.0/24",
"option-data": [
{
@@ -65348,6 +65512,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 165,
"subnet": "145.100.84.0/24",
"option-data": [
{
@@ -65401,6 +65566,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 166,
"subnet": "140.16.64.0/24",
"option-data": [
{
@@ -65555,6 +65721,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 167,
"subnet": "140.18.0.0/22",
"option-data": [
{
@@ -65715,6 +65882,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 168,
"subnet": "140.18.64.0/22",
"option-data": [
{
@@ -65869,6 +66037,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 169,
"subnet": "140.130.176.0/22",
"option-data": [
{
@@ -66029,6 +66198,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 170,
"subnet": "140.201.56.0/22",
"option-data": [
{
@@ -66189,6 +66359,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 171,
"subnet": "140.202.56.0/22",
"option-data": [
{
@@ -66349,6 +66520,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 172,
"subnet": "140.203.56.0/22",
"option-data": [
{
@@ -66509,6 +66681,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 173,
"subnet": "140.204.56.0/22",
"option-data": [
{
@@ -66669,6 +66842,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 174,
"subnet": "140.205.56.0/22",
"option-data": [
{
@@ -66829,6 +67003,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 175,
"subnet": "140.206.56.0/22",
"option-data": [
{
@@ -66989,6 +67164,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 176,
"subnet": "140.207.56.0/22",
"option-data": [
{
@@ -67149,6 +67325,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 177,
"subnet": "140.208.56.0/22",
"option-data": [
{
@@ -67309,6 +67486,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 178,
"subnet": "140.209.56.0/22",
"option-data": [
{
@@ -67469,6 +67647,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 179,
"subnet": "140.210.56.0/22",
"option-data": [
{
@@ -67629,6 +67808,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 180,
"subnet": "140.211.56.0/22",
"option-data": [
{
@@ -67789,6 +67969,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM73
{
+ "id": 181,
"subnet": "141.30.120.0/24",
"option-data": [
{
@@ -67949,6 +68130,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WLO01
{
+ "id": 182,
"subnet": "142.51.20.0/24",
"option-data": [
{
@@ -68174,6 +68356,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WSF02
{
+ "id": 183,
"subnet": "145.90.130.0/24",
"option-data": [
{
@@ -68273,6 +68456,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUI01
{
+ "id": 184,
"subnet": "138.40.48.0/22",
"option-data": [
{
@@ -68433,6 +68617,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 185,
"subnet": "140.130.56.0/22",
"option-data": [
{
@@ -68593,6 +68778,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 186,
"subnet": "140.201.24.0/22",
"option-data": [
{
@@ -68753,6 +68939,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 187,
"subnet": "140.202.24.0/22",
"option-data": [
{
@@ -68913,6 +69100,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 188,
"subnet": "140.203.24.0/22",
"option-data": [
{
@@ -69073,6 +69261,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 189,
"subnet": "140.204.24.0/22",
"option-data": [
{
@@ -69233,6 +69422,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 190,
"subnet": "140.205.24.0/22",
"option-data": [
{
@@ -69393,6 +69583,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 191,
"subnet": "140.206.24.0/22",
"option-data": [
{
@@ -69553,6 +69744,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 192,
"subnet": "140.207.24.0/22",
"option-data": [
{
@@ -69713,6 +69905,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 193,
"subnet": "140.208.24.0/22",
"option-data": [
{
@@ -69873,6 +70066,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 194,
"subnet": "140.209.24.0/22",
"option-data": [
{
@@ -70033,6 +70227,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 195,
"subnet": "140.211.24.0/22",
"option-data": [
{
@@ -70193,6 +70388,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 196,
"subnet": "140.212.24.0/22",
"option-data": [
{
@@ -70353,6 +70549,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 197,
"subnet": "140.213.24.0/22",
"option-data": [
{
@@ -70513,6 +70710,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 198,
"subnet": "140.90.80.0/22",
"option-data": [
{
@@ -70673,6 +70871,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE01
{
+ "id": 199,
"subnet": "144.0.40.0/22",
"option-data": [
{
@@ -70833,6 +71032,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 200,
"subnet": "145.30.192.0/22",
"option-data": [
{
@@ -70993,6 +71193,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 201,
"subnet": "10.144.24.0/22",
"option-data": [
{
@@ -71153,6 +71354,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 202,
"subnet": "10.150.91.0/24",
"option-data": [
{
@@ -71313,6 +71515,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 203,
"subnet": "132.30.188.0/22",
"option-data": [
{
@@ -71473,6 +71676,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF02
{
+ "id": 204,
"subnet": "137.0.104.0/22",
"option-data": [
{
@@ -71633,6 +71837,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 205,
"subnet": "140.130.16.0/22",
"option-data": [
{
@@ -71793,6 +71998,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 206,
"subnet": "140.201.4.0/22",
"option-data": [
{
@@ -71953,6 +72159,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 207,
"subnet": "140.202.4.0/22",
"option-data": [
{
@@ -72113,6 +72320,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 208,
"subnet": "140.203.4.0/22",
"option-data": [
{
@@ -72273,6 +72481,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 209,
"subnet": "140.205.4.0/22",
"option-data": [
{
@@ -72433,6 +72642,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 210,
"subnet": "140.206.4.0/22",
"option-data": [
{
@@ -72593,6 +72803,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 211,
"subnet": "140.207.4.0/22",
"option-data": [
{
@@ -72753,6 +72964,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 212,
"subnet": "140.208.4.0/22",
"option-data": [
{
@@ -72913,6 +73125,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 213,
"subnet": "140.209.4.0/22",
"option-data": [
{
@@ -73073,6 +73286,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 214,
"subnet": "140.210.4.0/22",
"option-data": [
{
@@ -73233,6 +73447,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 215,
"subnet": "140.211.4.0/22",
"option-data": [
{
@@ -73393,6 +73608,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 216,
"subnet": "140.212.4.0/22",
"option-data": [
{
@@ -73553,6 +73769,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 217,
"subnet": "10.144.108.0/22",
"option-data": [
{
@@ -73713,6 +73930,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 218,
"subnet": "136.30.144.0/22",
"option-data": [
{
@@ -73873,6 +74091,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 219,
"subnet": "140.130.136.0/22",
"option-data": [
{
@@ -74033,6 +74252,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 220,
"subnet": "140.152.120.0/22",
"option-data": [
{
@@ -74193,6 +74413,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 221,
"subnet": "140.211.252.0/24",
"option-data": [
{
@@ -74353,6 +74574,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 222,
"subnet": "140.60.136.0/22",
"option-data": [
{
@@ -74513,6 +74735,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 223,
"subnet": "140.60.184.0/24",
"option-data": [
{
@@ -74673,6 +74896,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 224,
"subnet": "140.130.240.0/22",
"option-data": [
{
@@ -74833,6 +75057,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 225,
"subnet": "140.202.72.0/22",
"option-data": [
{
@@ -74993,6 +75218,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 226,
"subnet": "140.203.72.0/22",
"option-data": [
{
@@ -75153,6 +75379,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 227,
"subnet": "140.204.72.0/22",
"option-data": [
{
@@ -75313,6 +75540,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 228,
"subnet": "140.205.72.0/22",
"option-data": [
{
@@ -75473,6 +75701,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 229,
"subnet": "140.206.72.0/22",
"option-data": [
{
@@ -75633,6 +75862,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 230,
"subnet": "140.207.72.0/22",
"option-data": [
{
@@ -75793,6 +76023,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 231,
"subnet": "140.208.72.0/22",
"option-data": [
{
@@ -75953,6 +76184,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 232,
"subnet": "140.209.72.0/22",
"option-data": [
{
@@ -76113,6 +76345,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 233,
"subnet": "140.210.72.0/22",
"option-data": [
{
@@ -76273,6 +76506,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 234,
"subnet": "140.211.72.0/22",
"option-data": [
{
@@ -76433,6 +76667,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 235,
"subnet": "140.212.72.0/22",
"option-data": [
{
@@ -76593,6 +76828,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 236,
"subnet": "132.0.60.0/22",
"option-data": [
{
@@ -76753,6 +76989,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 237,
"subnet": "132.0.64.0/22",
"option-data": [
{
@@ -76913,6 +77150,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE01
{
+ "id": 238,
"subnet": "133.0.52.0/22",
"option-data": [
{
@@ -77073,6 +77311,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 239,
"subnet": "137.0.52.0/22",
"option-data": [
{
@@ -77233,6 +77472,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS01
{
+ "id": 240,
"subnet": "138.0.72.0/22",
"option-data": [
{
@@ -77393,6 +77633,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE02
{
+ "id": 241,
"subnet": "139.0.32.0/22",
"option-data": [
{
@@ -77553,6 +77794,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 242,
"subnet": "140.130.80.0/22",
"option-data": [
{
@@ -77713,6 +77955,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 243,
"subnet": "140.201.32.0/22",
"option-data": [
{
@@ -77873,6 +78116,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 244,
"subnet": "140.202.32.0/22",
"option-data": [
{
@@ -78033,6 +78277,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 245,
"subnet": "140.203.32.0/22",
"option-data": [
{
@@ -78193,6 +78438,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 246,
"subnet": "140.204.32.0/22",
"option-data": [
{
@@ -78353,6 +78599,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 247,
"subnet": "140.206.32.0/22",
"option-data": [
{
@@ -78513,6 +78760,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 248,
"subnet": "140.207.32.0/22",
"option-data": [
{
@@ -78673,6 +78921,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 249,
"subnet": "140.208.32.0/22",
"option-data": [
{
@@ -78833,6 +79082,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 250,
"subnet": "140.209.32.0/22",
"option-data": [
{
@@ -78993,6 +79243,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 251,
"subnet": "140.210.32.0/22",
"option-data": [
{
@@ -79153,6 +79404,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 252,
"subnet": "140.211.32.0/22",
"option-data": [
{
@@ -79313,6 +79565,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 253,
"subnet": "140.212.32.0/22",
"option-data": [
{
@@ -79473,6 +79726,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 254,
"subnet": "141.60.76.0/22",
"option-data": [
{
@@ -79633,6 +79887,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 255,
"subnet": "142.30.72.0/22",
"option-data": [
{
@@ -79793,6 +80048,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 256,
"subnet": "143.0.44.0/22",
"option-data": [
{
@@ -79953,6 +80209,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE01
{
+ "id": 257,
"subnet": "144.0.64.0/22",
"option-data": [
{
@@ -80113,6 +80370,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB01
{
+ "id": 258,
"subnet": "144.70.148.0/22",
"option-data": [
{
@@ -80273,6 +80531,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 259,
"subnet": "145.32.64.0/22",
"option-data": [
{
@@ -80433,6 +80692,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 260,
"subnet": "145.60.84.0/22",
"option-data": [
{
@@ -80593,6 +80853,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 261,
"subnet": "140.60.108.0/22",
"option-data": [
{
@@ -80753,6 +81014,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 262,
"subnet": "140.130.40.0/22",
"option-data": [
{
@@ -80913,6 +81175,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 263,
"subnet": "140.201.20.0/22",
"option-data": [
{
@@ -81073,6 +81336,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 264,
"subnet": "140.202.20.0/22",
"option-data": [
{
@@ -81233,6 +81497,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 265,
"subnet": "140.203.20.0/22",
"option-data": [
{
@@ -81393,6 +81658,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 266,
"subnet": "140.204.20.0/22",
"option-data": [
{
@@ -81553,6 +81819,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 267,
"subnet": "140.205.20.0/22",
"option-data": [
{
@@ -81713,6 +81980,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 268,
"subnet": "140.206.20.0/22",
"option-data": [
{
@@ -81873,6 +82141,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 269,
"subnet": "140.208.20.0/22",
"option-data": [
{
@@ -82033,6 +82302,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 270,
"subnet": "140.209.20.0/22",
"option-data": [
{
@@ -82193,6 +82463,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 271,
"subnet": "140.210.20.0/22",
"option-data": [
{
@@ -82353,6 +82624,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 272,
"subnet": "140.211.20.0/22",
"option-data": [
{
@@ -82513,6 +82785,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 273,
"subnet": "140.212.20.0/22",
"option-data": [
{
@@ -82673,6 +82946,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 274,
"subnet": "10.151.18.0/24",
"option-data": [
{
@@ -82750,6 +83024,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PRA05
{
+ "id": 275,
"subnet": "10.186.69.0/24",
"option-data": [
{
@@ -82827,6 +83102,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 276,
"subnet": "132.0.48.0/22",
"option-data": [
{
@@ -83004,6 +83280,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN01
{
+ "id": 277,
"subnet": "134.0.44.0/22",
"option-data": [
{
@@ -83181,6 +83458,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 278,
"subnet": "137.0.80.0/22",
"option-data": [
{
@@ -83358,6 +83636,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 279,
"subnet": "140.101.91.0/24",
"option-data": [
{
@@ -83535,6 +83814,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 280,
"subnet": "140.13.12.0/22",
"option-data": [
{
@@ -83730,6 +84010,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 281,
"subnet": "140.130.184.0/22",
"option-data": [
{
@@ -83907,6 +84188,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 282,
"subnet": "140.131.8.0/22",
"option-data": [
{
@@ -84078,6 +84360,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 283,
"subnet": "140.14.100.0/22",
"option-data": [
{
@@ -84255,6 +84538,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 284,
"subnet": "140.14.104.0/22",
"option-data": [
{
@@ -84432,6 +84716,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 285,
"subnet": "140.14.108.0/22",
"option-data": [
{
@@ -84609,6 +84894,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 286,
"subnet": "140.14.112.0/22",
"option-data": [
{
@@ -84786,6 +85072,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 287,
"subnet": "140.14.116.0/22",
"option-data": [
{
@@ -84963,6 +85250,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 288,
"subnet": "140.14.12.0/22",
"option-data": [
{
@@ -85140,6 +85428,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 289,
"subnet": "140.14.120.0/22",
"option-data": [
{
@@ -85317,6 +85606,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 290,
"subnet": "140.14.124.0/22",
"option-data": [
{
@@ -85494,6 +85784,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 291,
"subnet": "140.14.16.0/22",
"option-data": [
{
@@ -85671,6 +85962,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 292,
"subnet": "140.14.164.0/22",
"option-data": [
{
@@ -85848,6 +86140,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 293,
"subnet": "140.14.20.0/22",
"option-data": [
{
@@ -86025,6 +86318,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 294,
"subnet": "140.14.212.0/22",
"option-data": [
{
@@ -86202,6 +86496,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 295,
"subnet": "140.14.24.0/22",
"option-data": [
{
@@ -86379,6 +86674,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 296,
"subnet": "140.14.244.0/24",
"option-data": [
{
@@ -86462,6 +86758,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 297,
"subnet": "140.14.247.0/24",
"option-data": [
{
@@ -86545,6 +86842,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 298,
"subnet": "140.14.28.0/22",
"option-data": [
{
@@ -86722,6 +87020,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 299,
"subnet": "140.14.32.0/22",
"option-data": [
{
@@ -86899,6 +87198,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 300,
"subnet": "140.14.36.0/22",
"option-data": [
{
@@ -87094,6 +87394,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 301,
"subnet": "140.14.4.0/22",
"option-data": [
{
@@ -87271,6 +87572,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 302,
"subnet": "140.14.40.0/22",
"option-data": [
{
@@ -87466,6 +87768,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 303,
"subnet": "140.14.44.0/22",
"option-data": [
{
@@ -87680,6 +87983,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 304,
"subnet": "140.14.48.0/22",
"option-data": [
{
@@ -87857,6 +88161,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 305,
"subnet": "140.14.52.0/22",
"option-data": [
{
@@ -88071,6 +88376,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 306,
"subnet": "140.14.56.0/22",
"option-data": [
{
@@ -88285,6 +88591,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 307,
"subnet": "140.14.60.0/22",
"option-data": [
{
@@ -88474,6 +88781,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 308,
"subnet": "140.14.64.0/22",
"option-data": [
{
@@ -88651,6 +88959,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 309,
"subnet": "140.14.68.0/22",
"option-data": [
{
@@ -88828,6 +89137,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 310,
"subnet": "140.14.72.0/22",
"option-data": [
{
@@ -89005,6 +89315,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 311,
"subnet": "140.14.76.0/22",
"option-data": [
{
@@ -89200,6 +89511,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 312,
"subnet": "140.14.8.0/22",
"option-data": [
{
@@ -89377,6 +89689,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 313,
"subnet": "140.14.80.0/22",
"option-data": [
{
@@ -89554,6 +89867,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 314,
"subnet": "140.14.84.0/22",
"option-data": [
{
@@ -89731,6 +90045,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 315,
"subnet": "140.14.88.0/22",
"option-data": [
{
@@ -89908,6 +90223,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 316,
"subnet": "140.14.92.0/22",
"option-data": [
{
@@ -90085,6 +90401,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 317,
"subnet": "140.14.96.0/22",
"option-data": [
{
@@ -90266,6 +90583,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 318,
"subnet": "140.15.84.0/24",
"option-data": [
{
@@ -90343,6 +90661,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 319,
"subnet": "140.15.86.0/24",
"option-data": [
{
@@ -90557,6 +90876,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 320,
"subnet": "140.15.87.0/24",
"option-data": [
{
@@ -90771,6 +91091,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 321,
"subnet": "140.150.48.0/22",
"option-data": [
{
@@ -90942,6 +91263,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 322,
"subnet": "140.152.32.0/22",
"option-data": [
{
@@ -91119,6 +91441,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 323,
"subnet": "140.154.32.0/22",
"option-data": [
{
@@ -91296,6 +91619,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM24
{
+ "id": 324,
"subnet": "140.156.112.0/22",
"option-data": [
{
@@ -91473,6 +91797,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 325,
"subnet": "140.16.168.0/24",
"option-data": [
{
@@ -91520,6 +91845,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 326,
"subnet": "140.16.169.0/24",
"option-data": [
{
@@ -91597,6 +91923,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 327,
"subnet": "140.16.84.0/22",
"option-data": [
{
@@ -91679,6 +92006,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LNG03
{
+ "id": 328,
"subnet": "140.199.230.0/24",
"option-data": [
{
@@ -91857,6 +92185,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 329,
"subnet": "140.202.60.0/22",
"option-data": [
{
@@ -92034,6 +92363,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 330,
"subnet": "140.203.60.0/22",
"option-data": [
{
@@ -92211,6 +92541,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 331,
"subnet": "140.204.60.0/22",
"option-data": [
{
@@ -92388,6 +92719,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 332,
"subnet": "140.205.60.0/22",
"option-data": [
{
@@ -92565,6 +92897,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 333,
"subnet": "140.206.60.0/22",
"option-data": [
{
@@ -92742,6 +93075,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 334,
"subnet": "140.207.60.0/22",
"option-data": [
{
@@ -92919,6 +93253,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 335,
"subnet": "140.208.60.0/22",
"option-data": [
{
@@ -93096,6 +93431,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 336,
"subnet": "140.209.60.0/22",
"option-data": [
{
@@ -93273,6 +93609,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 337,
"subnet": "140.210.60.0/22",
"option-data": [
{
@@ -93450,6 +93787,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 338,
"subnet": "140.211.60.0/22",
"option-data": [
{
@@ -93627,6 +93965,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 339,
"subnet": "140.212.60.0/22",
"option-data": [
{
@@ -93804,6 +94143,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 340,
"subnet": "140.213.60.0/22",
"option-data": [
{
@@ -93981,6 +94321,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 341,
"subnet": "140.60.64.0/22",
"option-data": [
{
@@ -94158,6 +94499,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 342,
"subnet": "140.90.72.0/22",
"option-data": [
{
@@ -94335,6 +94677,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAS01
{
+ "id": 343,
"subnet": "141.50.40.0/22",
"option-data": [
{
@@ -94512,6 +94855,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 344,
"subnet": "142.10.56.0/22",
"option-data": [
{
@@ -94689,6 +95033,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 345,
"subnet": "142.20.72.0/22",
"option-data": [
{
@@ -94866,6 +95211,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 346,
"subnet": "143.0.40.0/22",
"option-data": [
{
@@ -95043,6 +95389,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB01
{
+ "id": 347,
"subnet": "144.70.120.0/22",
"option-data": [
{
@@ -95220,6 +95567,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 348,
"subnet": "145.0.60.0/22",
"option-data": [
{
@@ -95397,6 +95745,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 349,
"subnet": "145.100.64.0/22",
"option-data": [
{
@@ -95574,6 +95923,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MBG02
{
+ "id": 350,
"subnet": "145.110.12.0/22",
"option-data": [
{
@@ -95751,6 +96101,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 351,
"subnet": "145.60.108.0/22",
"option-data": [
{
@@ -95928,6 +96279,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERF09
{
+ "id": 352,
"subnet": "145.74.28.0/22",
"option-data": [
{
@@ -96105,6 +96457,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 353,
"subnet": "180.0.50.0/24",
"option-data": [
{
@@ -96170,6 +96523,7 @@
#Automatisch erzeugte Konfiguration am 1239892223
# FFM80
{
+ "id": 354,
"subnet": "140.15.221.0/24",
"option-data": [
{
@@ -96251,6 +96605,7 @@
#Automatisch erzeugte Konfiguration am 1245145012
# FFM89
{
+ "id": 355,
"subnet": "10.151.224.0/24",
"option-data": [
{
@@ -96310,6 +96665,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 356,
"subnet": "10.144.238.0/28",
"option-data": [
{
@@ -96376,6 +96732,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 357,
"subnet": "10.151.254.0/24",
"option-data": [
{
@@ -96442,6 +96799,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP04
{
+ "id": 358,
"subnet": "10.200.50.0/24",
"option-data": [
{
@@ -96514,6 +96872,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP04
{
+ "id": 359,
"subnet": "10.200.55.0/24",
"option-data": [
{
@@ -96586,6 +96945,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 360,
"subnet": "10.206.30.0/24",
"option-data": [
{
@@ -96658,6 +97018,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 361,
"subnet": "10.206.31.0/24",
"option-data": [
{
@@ -96730,6 +97091,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 362,
"subnet": "10.206.32.0/24",
"option-data": [
{
@@ -96802,6 +97164,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 363,
"subnet": "10.206.33.0/24",
"option-data": [
{
@@ -96874,6 +97237,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 364,
"subnet": "10.206.34.0/24",
"option-data": [
{
@@ -96946,6 +97310,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 365,
"subnet": "10.206.35.0/24",
"option-data": [
{
@@ -97018,6 +97383,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 366,
"subnet": "10.206.36.0/24",
"option-data": [
{
@@ -97090,6 +97456,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 367,
"subnet": "10.206.37.0/24",
"option-data": [
{
@@ -97162,6 +97529,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 368,
"subnet": "10.206.38.0/24",
"option-data": [
{
@@ -97234,6 +97602,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 369,
"subnet": "10.206.39.0/24",
"option-data": [
{
@@ -97306,6 +97675,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 370,
"subnet": "10.206.40.0/24",
"option-data": [
{
@@ -97378,6 +97748,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 371,
"subnet": "10.206.41.0/24",
"option-data": [
{
@@ -97450,6 +97821,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 372,
"subnet": "10.206.42.0/24",
"option-data": [
{
@@ -97522,6 +97894,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 373,
"subnet": "10.206.43.0/24",
"option-data": [
{
@@ -97594,6 +97967,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 374,
"subnet": "10.206.44.0/24",
"option-data": [
{
@@ -97666,6 +98040,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 375,
"subnet": "10.206.45.0/24",
"option-data": [
{
@@ -97738,6 +98113,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 376,
"subnet": "10.206.46.0/24",
"option-data": [
{
@@ -97810,6 +98186,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 377,
"subnet": "10.206.47.0/24",
"option-data": [
{
@@ -97882,6 +98259,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 378,
"subnet": "10.206.48.0/24",
"option-data": [
{
@@ -97954,6 +98332,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 379,
"subnet": "10.206.49.0/24",
"option-data": [
{
@@ -98026,6 +98405,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 380,
"subnet": "10.206.50.0/24",
"option-data": [
{
@@ -98098,6 +98478,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 381,
"subnet": "10.206.51.0/24",
"option-data": [
{
@@ -98170,6 +98551,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 382,
"subnet": "132.0.116.0/22",
"option-data": [
{
@@ -98242,6 +98624,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG06
{
+ "id": 383,
"subnet": "132.30.136.0/24",
"option-data": [
{
@@ -98308,6 +98691,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 384,
"subnet": "136.0.108.0/22",
"option-data": [
{
@@ -98380,6 +98764,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 385,
"subnet": "140.101.136.0/22",
"option-data": [
{
@@ -98450,6 +98835,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 386,
"subnet": "140.11.105.0/24",
"option-data": [
{
@@ -98522,6 +98908,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 387,
"subnet": "140.11.45.0/24",
"option-data": [
{
@@ -98587,6 +98974,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 388,
"subnet": "140.11.46.0/24",
"option-data": [
{
@@ -98652,6 +99040,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 389,
"subnet": "140.13.30.0/24",
"option-data": [
{
@@ -98724,6 +99113,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 390,
"subnet": "140.13.52.0/24",
"option-data": [
{
@@ -98790,6 +99180,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 391,
"subnet": "140.13.53.0/24",
"option-data": [
{
@@ -98856,6 +99247,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 392,
"subnet": "140.14.245.0/24",
"option-data": [
{
@@ -98922,6 +99314,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 393,
"subnet": "140.15.116.0/22",
"option-data": [
{
@@ -98994,6 +99387,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 394,
"subnet": "140.15.120.0/22",
"option-data": [
{
@@ -99066,6 +99460,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 395,
"subnet": "140.15.134.0/24",
"option-data": [
{
@@ -99138,6 +99533,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 396,
"subnet": "140.15.175.0/24",
"option-data": [
{
@@ -99210,6 +99606,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 397,
"subnet": "140.15.178.0/24",
"option-data": [
{
@@ -99282,6 +99679,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 398,
"subnet": "140.15.205.0/24",
"option-data": [
{
@@ -99354,6 +99752,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 399,
"subnet": "140.15.206.0/24",
"option-data": [
{
@@ -99426,6 +99825,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 400,
"subnet": "140.15.207.0/24",
"option-data": [
{
@@ -99498,6 +99898,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 401,
"subnet": "140.15.208.0/24",
"option-data": [
{
@@ -99570,6 +99971,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 402,
"subnet": "140.15.209.0/24",
"option-data": [
{
@@ -99642,6 +100044,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 403,
"subnet": "140.15.211.0/24",
"option-data": [
{
@@ -99714,6 +100117,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 404,
"subnet": "140.15.212.0/24",
"option-data": [
{
@@ -99792,6 +100196,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 405,
"subnet": "140.15.213.0/24",
"option-data": [
{
@@ -99864,6 +100269,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 406,
"subnet": "140.15.214.0/24",
"option-data": [
{
@@ -99936,6 +100342,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 407,
"subnet": "140.15.215.0/24",
"option-data": [
{
@@ -100008,6 +100415,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 408,
"subnet": "140.15.216.0/24",
"option-data": [
{
@@ -100080,6 +100488,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 409,
"subnet": "140.15.217.0/24",
"option-data": [
{
@@ -100152,6 +100561,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 410,
"subnet": "140.15.218.0/24",
"option-data": [
{
@@ -100224,6 +100634,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 411,
"subnet": "140.15.219.0/24",
"option-data": [
{
@@ -100296,6 +100707,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 412,
"subnet": "140.15.220.0/24",
"option-data": [
{
@@ -100368,6 +100780,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 413,
"subnet": "140.15.222.0/24",
"option-data": [
{
@@ -100440,6 +100853,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 414,
"subnet": "140.15.225.0/24",
"option-data": [
{
@@ -100512,6 +100926,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 415,
"subnet": "140.15.227.0/24",
"option-data": [
{
@@ -100584,6 +100999,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 416,
"subnet": "140.15.88.0/22",
"option-data": [
{
@@ -100656,6 +101072,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 417,
"subnet": "140.15.92.0/22",
"option-data": [
{
@@ -100728,6 +101145,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 418,
"subnet": "140.152.128.0/22",
"option-data": [
{
@@ -100804,6 +101222,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 419,
"subnet": "140.154.100.0/22",
"option-data": [
{
@@ -100876,6 +101295,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 420,
"subnet": "140.154.12.0/22",
"option-data": [
{
@@ -100948,6 +101368,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 421,
"subnet": "140.154.132.0/22",
"option-data": [
{
@@ -101013,6 +101434,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 422,
"subnet": "140.154.136.0/22",
"option-data": [
{
@@ -101078,6 +101500,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 423,
"subnet": "140.154.28.0/22",
"option-data": [
{
@@ -101150,6 +101573,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 424,
"subnet": "140.154.56.0/22",
"option-data": [
{
@@ -101222,6 +101646,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 425,
"subnet": "140.154.76.0/22",
"option-data": [
{
@@ -101294,6 +101719,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 426,
"subnet": "140.154.84.0/22",
"option-data": [
{
@@ -101366,6 +101792,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM21
{
+ "id": 427,
"subnet": "140.155.32.0/22",
"option-data": [
{
@@ -101438,6 +101865,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM21
{
+ "id": 428,
"subnet": "140.155.36.0/22",
"option-data": [
{
@@ -101510,6 +101938,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 429,
"subnet": "140.169.4.0/22",
"option-data": [
{
@@ -101575,6 +102004,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 430,
"subnet": "140.169.40.0/22",
"option-data": [
{
@@ -101647,6 +102077,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 431,
"subnet": "140.169.44.0/22",
"option-data": [
{
@@ -101719,6 +102150,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 432,
"subnet": "140.169.52.0/22",
"option-data": [
{
@@ -101791,6 +102223,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LNG03
{
+ "id": 433,
"subnet": "140.199.240.0/24",
"option-data": [
{
@@ -101863,6 +102296,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 434,
"subnet": "140.202.172.0/22",
"option-data": [
{
@@ -101935,6 +102369,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 435,
"subnet": "140.207.172.0/22",
"option-data": [
{
@@ -102002,6 +102437,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 436,
"subnet": "140.209.172.0/22",
"option-data": [
{
@@ -102074,6 +102510,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 437,
"subnet": "140.211.172.0/22",
"option-data": [
{
@@ -102146,6 +102583,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 438,
"subnet": "140.4.116.0/22",
"option-data": [
{
@@ -102218,6 +102656,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 439,
"subnet": "140.4.120.0/22",
"option-data": [
{
@@ -102290,6 +102729,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 440,
"subnet": "140.4.156.0/22",
"option-data": [
{
@@ -102362,6 +102802,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 441,
"subnet": "140.4.40.0/22",
"option-data": [
{
@@ -102434,6 +102875,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 442,
"subnet": "140.4.71.0/24",
"option-data": [
{
@@ -102500,6 +102942,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 443,
"subnet": "140.4.72.0/22",
"option-data": [
{
@@ -102572,6 +103015,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 444,
"subnet": "140.4.80.0/22",
"option-data": [
{
@@ -102644,6 +103088,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 445,
"subnet": "140.60.112.0/22",
"option-data": [
{
@@ -102716,6 +103161,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 446,
"subnet": "140.60.16.0/22",
"option-data": [
{
@@ -102788,6 +103234,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 447,
"subnet": "140.60.92.0/22",
"option-data": [
{
@@ -102853,6 +103300,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 448,
"subnet": "140.60.96.0/22",
"option-data": [
{
@@ -102918,6 +103366,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 449,
"subnet": "140.90.112.0/22",
"option-data": [
{
@@ -102994,6 +103443,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM50
{
+ "id": 450,
"subnet": "141.30.140.0/24",
"option-data": [
{
@@ -103074,6 +103524,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PRA05
{
+ "id": 451,
"subnet": "164.10.20.0/22",
"option-data": [
{
@@ -103146,6 +103597,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM48
{
+ "id": 452,
"subnet": "140.152.202.0/24",
"option-data": [
{
@@ -103218,6 +103670,7 @@
#Automatisch erzeugte Konfiguration am 1240577293
# FFM42
{
+ "id": 453,
"subnet": "142.10.13.0/24",
"option-data": [
{
@@ -103290,6 +103743,7 @@
#Automatisch erzeugte Konfiguration am 1240577293
# FFM42
{
+ "id": 454,
"subnet": "142.10.15.0/24",
"option-data": [
{
@@ -103362,6 +103816,7 @@
#Automatisch erzeugte Konfiguration am 1241508922
# ESC03
{
+ "id": 455,
"subnet": "10.206.4.0/24",
"option-data": [
{
@@ -103435,6 +103890,7 @@
#Automatisch erzeugte Konfiguration am 1241684035
# FFM01
{
+ "id": 456,
"subnet": "140.101.44.0/22",
"option-data": [
{
@@ -103507,6 +103963,7 @@
#Automatisch erzeugte Konfiguration am 1241684035
# FFM19
{
+ "id": 457,
"subnet": "140.90.84.0/22",
"option-data": [
{
@@ -103585,6 +104042,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 458,
"subnet": "140.131.136.0/22",
"option-data": [
{
@@ -103745,6 +104203,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 459,
"subnet": "140.201.88.0/22",
"option-data": [
{
@@ -103905,6 +104364,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 460,
"subnet": "140.203.88.0/22",
"option-data": [
{
@@ -104065,6 +104525,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 461,
"subnet": "140.204.88.0/22",
"option-data": [
{
@@ -104225,6 +104686,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 462,
"subnet": "140.205.88.0/22",
"option-data": [
{
@@ -104385,6 +104847,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 463,
"subnet": "140.206.88.0/22",
"option-data": [
{
@@ -104545,6 +105008,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 464,
"subnet": "140.207.88.0/22",
"option-data": [
{
@@ -104705,6 +105169,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 465,
"subnet": "140.208.88.0/22",
"option-data": [
{
@@ -104865,6 +105330,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 466,
"subnet": "140.209.88.0/22",
"option-data": [
{
@@ -105025,6 +105491,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 467,
"subnet": "140.210.88.0/22",
"option-data": [
{
@@ -105185,6 +105652,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 468,
"subnet": "140.211.88.0/22",
"option-data": [
{
@@ -105345,6 +105813,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 469,
"subnet": "140.212.88.0/22",
"option-data": [
{
@@ -105505,6 +105974,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 470,
"subnet": "140.130.104.0/22",
"option-data": [
{
@@ -105665,6 +106135,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 471,
"subnet": "140.201.40.0/22",
"option-data": [
{
@@ -105825,6 +106296,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 472,
"subnet": "140.202.40.0/22",
"option-data": [
{
@@ -105985,6 +106457,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 473,
"subnet": "140.203.40.0/22",
"option-data": [
{
@@ -106145,6 +106618,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 474,
"subnet": "140.204.40.0/22",
"option-data": [
{
@@ -106305,6 +106779,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 475,
"subnet": "140.205.40.0/22",
"option-data": [
{
@@ -106465,6 +106940,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 476,
"subnet": "140.206.40.0/22",
"option-data": [
{
@@ -106625,6 +107101,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 477,
"subnet": "140.207.40.0/22",
"option-data": [
{
@@ -106785,6 +107262,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 478,
"subnet": "140.208.40.0/22",
"option-data": [
{
@@ -106945,6 +107423,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 479,
"subnet": "140.209.40.0/22",
"option-data": [
{
@@ -107105,6 +107584,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 480,
"subnet": "140.210.40.0/22",
"option-data": [
{
@@ -107265,6 +107745,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 481,
"subnet": "140.212.40.0/22",
"option-data": [
{
@@ -107425,6 +107906,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 482,
"subnet": "140.130.64.0/22",
"option-data": [
{
@@ -107585,6 +108067,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 483,
"subnet": "140.201.28.0/22",
"option-data": [
{
@@ -107745,6 +108228,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 484,
"subnet": "140.202.28.0/22",
"option-data": [
{
@@ -107905,6 +108389,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 485,
"subnet": "140.203.28.0/22",
"option-data": [
{
@@ -108065,6 +108550,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 486,
"subnet": "140.204.28.0/22",
"option-data": [
{
@@ -108225,6 +108711,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 487,
"subnet": "140.205.28.0/22",
"option-data": [
{
@@ -108385,6 +108872,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 488,
"subnet": "140.206.28.0/22",
"option-data": [
{
@@ -108545,6 +109033,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 489,
"subnet": "140.207.28.0/22",
"option-data": [
{
@@ -108705,6 +109194,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 490,
"subnet": "140.208.28.0/22",
"option-data": [
{
@@ -108865,6 +109355,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 491,
"subnet": "140.209.28.0/22",
"option-data": [
{
@@ -109025,6 +109516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 492,
"subnet": "140.210.28.0/22",
"option-data": [
{
@@ -109185,6 +109677,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 493,
"subnet": "140.212.28.0/22",
"option-data": [
{
@@ -109345,6 +109838,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 494,
"subnet": "140.213.28.0/22",
"option-data": [
{
@@ -109505,6 +109999,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM73
{
+ "id": 495,
"subnet": "141.30.118.0/24",
"option-data": [
{
@@ -109665,6 +110160,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER80
{
+ "id": 496,
"subnet": "145.30.176.0/22",
"option-data": [
{
@@ -109825,6 +110321,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 497,
"subnet": "132.0.10.0/24",
"option-data": [
{
@@ -109985,6 +110482,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 498,
"subnet": "132.0.104.0/22",
"option-data": [
{
@@ -110145,6 +110643,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG52
{
+ "id": 499,
"subnet": "132.0.92.0/22",
"option-data": [
{
@@ -110305,6 +110804,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE01
{
+ "id": 500,
"subnet": "132.60.72.0/22",
"option-data": [
{
@@ -110465,6 +110965,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE01
{
+ "id": 501,
"subnet": "133.0.72.0/22",
"option-data": [
{
@@ -110625,6 +111126,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE01
{
+ "id": 502,
"subnet": "133.0.8.0/24",
"option-data": [
{
@@ -110785,6 +111287,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN01
{
+ "id": 503,
"subnet": "134.0.14.0/24",
"option-data": [
{
@@ -110945,6 +111448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN01
{
+ "id": 504,
"subnet": "134.0.72.0/22",
"option-data": [
{
@@ -111105,6 +111609,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE01
{
+ "id": 505,
"subnet": "135.50.232.0/24",
"option-data": [
{
@@ -111265,6 +111770,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE01
{
+ "id": 506,
"subnet": "135.50.72.0/22",
"option-data": [
{
@@ -111425,6 +111931,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR01
{
+ "id": 507,
"subnet": "135.70.170.0/24",
"option-data": [
{
@@ -111585,6 +112092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR01
{
+ "id": 508,
"subnet": "135.70.96.0/22",
"option-data": [
{
@@ -111745,6 +112253,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 509,
"subnet": "136.0.40.0/22",
"option-data": [
{
@@ -111905,6 +112414,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 510,
"subnet": "136.0.66.0/24",
"option-data": [
{
@@ -112065,6 +112575,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF02
{
+ "id": 511,
"subnet": "137.0.108.0/22",
"option-data": [
{
@@ -112225,6 +112736,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS01
{
+ "id": 512,
"subnet": "138.0.16.0/24",
"option-data": [
{
@@ -112385,6 +112897,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS01
{
+ "id": 513,
"subnet": "138.0.44.0/22",
"option-data": [
{
@@ -112545,6 +113058,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP01
{
+ "id": 514,
"subnet": "138.50.120.0/22",
"option-data": [
{
@@ -112705,6 +113219,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE02
{
+ "id": 515,
"subnet": "139.0.8.0/24",
"option-data": [
{
@@ -112865,6 +113380,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE02
{
+ "id": 516,
"subnet": "139.0.80.0/22",
"option-data": [
{
@@ -113025,6 +113541,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 517,
"subnet": "140.130.88.0/22",
"option-data": [
{
@@ -113185,6 +113702,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM90
{
+ "id": 518,
"subnet": "140.177.32.0/22",
"option-data": [
{
@@ -113345,6 +113863,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 519,
"subnet": "140.201.36.0/22",
"option-data": [
{
@@ -113505,6 +114024,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 520,
"subnet": "140.202.36.0/22",
"option-data": [
{
@@ -113665,6 +114185,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 521,
"subnet": "140.203.36.0/22",
"option-data": [
{
@@ -113825,6 +114346,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 522,
"subnet": "140.204.36.0/22",
"option-data": [
{
@@ -113985,6 +114507,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 523,
"subnet": "140.205.36.0/22",
"option-data": [
{
@@ -114145,6 +114668,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 524,
"subnet": "140.206.36.0/22",
"option-data": [
{
@@ -114305,6 +114829,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 525,
"subnet": "140.207.36.0/22",
"option-data": [
{
@@ -114465,6 +114990,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 526,
"subnet": "140.209.36.0/22",
"option-data": [
{
@@ -114625,6 +115151,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 527,
"subnet": "140.210.36.0/22",
"option-data": [
{
@@ -114785,6 +115312,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 528,
"subnet": "140.211.36.0/22",
"option-data": [
{
@@ -114945,6 +115473,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 529,
"subnet": "140.212.36.0/22",
"option-data": [
{
@@ -115105,6 +115634,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 530,
"subnet": "140.59.12.0/22",
"option-data": [
{
@@ -115265,6 +115795,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 531,
"subnet": "140.59.16.0/22",
"option-data": [
{
@@ -115425,6 +115956,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 532,
"subnet": "140.59.20.0/22",
"option-data": [
{
@@ -115585,6 +116117,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 533,
"subnet": "140.59.4.0/22",
"option-data": [
{
@@ -115745,6 +116278,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 534,
"subnet": "140.59.8.0/22",
"option-data": [
{
@@ -115905,6 +116439,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 535,
"subnet": "140.70.8.0/24",
"option-data": [
{
@@ -116065,6 +116600,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM74
{
+ "id": 536,
"subnet": "140.74.8.0/22",
"option-data": [
{
@@ -116225,6 +116761,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM54
{
+ "id": 537,
"subnet": "140.80.36.0/22",
"option-data": [
{
@@ -116385,6 +116922,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 538,
"subnet": "141.60.80.0/22",
"option-data": [
{
@@ -116545,6 +117083,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 539,
"subnet": "141.60.88.0/24",
"option-data": [
{
@@ -116705,6 +117244,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 540,
"subnet": "142.30.2.0/24",
"option-data": [
{
@@ -116865,6 +117405,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 541,
"subnet": "142.30.56.0/24",
"option-data": [
{
@@ -117025,6 +117566,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN01
{
+ "id": 542,
"subnet": "142.50.104.0/22",
"option-data": [
{
@@ -117185,6 +117727,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN01
{
+ "id": 543,
"subnet": "142.50.214.0/24",
"option-data": [
{
@@ -117345,6 +117888,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIE01
{
+ "id": 544,
"subnet": "142.60.64.0/24",
"option-data": [
{
@@ -117505,6 +118049,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 545,
"subnet": "143.0.32.0/22",
"option-data": [
{
@@ -117665,6 +118210,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE01
{
+ "id": 546,
"subnet": "144.0.58.0/24",
"option-data": [
{
@@ -117825,6 +118371,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE22
{
+ "id": 547,
"subnet": "144.35.72.0/22",
"option-data": [
{
@@ -117985,6 +118532,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB01
{
+ "id": 548,
"subnet": "144.70.104.0/22",
"option-data": [
{
@@ -118145,6 +118693,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 549,
"subnet": "145.0.20.0/24",
"option-data": [
{
@@ -118305,6 +118854,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 550,
"subnet": "145.100.40.0/24",
"option-data": [
{
@@ -118465,6 +119015,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 551,
"subnet": "145.100.52.0/22",
"option-data": [
{
@@ -118625,6 +119176,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TEL01
{
+ "id": 552,
"subnet": "145.20.24.0/22",
"option-data": [
{
@@ -118785,6 +119337,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 553,
"subnet": "145.32.60.0/22",
"option-data": [
{
@@ -118945,6 +119498,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 554,
"subnet": "145.60.104.0/22",
"option-data": [
{
@@ -119105,6 +119659,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 555,
"subnet": "145.60.174.0/24",
"option-data": [
{
@@ -119265,6 +119820,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERF01
{
+ "id": 556,
"subnet": "145.70.60.0/22",
"option-data": [
{
@@ -119425,6 +119981,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 557,
"subnet": "140.130.32.0/22",
"option-data": [
{
@@ -119585,6 +120142,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 558,
"subnet": "140.201.16.0/22",
"option-data": [
{
@@ -119745,6 +120303,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 559,
"subnet": "140.202.16.0/22",
"option-data": [
{
@@ -119905,6 +120464,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 560,
"subnet": "140.203.16.0/22",
"option-data": [
{
@@ -120065,6 +120625,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 561,
"subnet": "140.204.16.0/22",
"option-data": [
{
@@ -120225,6 +120786,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 562,
"subnet": "140.205.16.0/22",
"option-data": [
{
@@ -120385,6 +120947,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 563,
"subnet": "140.207.16.0/22",
"option-data": [
{
@@ -120545,6 +121108,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 564,
"subnet": "140.208.16.0/22",
"option-data": [
{
@@ -120705,6 +121269,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 565,
"subnet": "140.209.16.0/22",
"option-data": [
{
@@ -120865,6 +121430,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 566,
"subnet": "140.210.16.0/22",
"option-data": [
{
@@ -121025,6 +121591,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 567,
"subnet": "140.211.16.0/22",
"option-data": [
{
@@ -121185,6 +121752,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 568,
"subnet": "140.212.16.0/22",
"option-data": [
{
@@ -121345,6 +121913,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 569,
"subnet": "140.213.16.0/22",
"option-data": [
{
@@ -121505,6 +122074,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 570,
"subnet": "132.30.184.0/22",
"option-data": [
{
@@ -121665,6 +122235,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 571,
"subnet": "140.201.148.0/22",
"option-data": [
{
@@ -121825,6 +122396,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 572,
"subnet": "140.202.148.0/22",
"option-data": [
{
@@ -121985,6 +122557,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 573,
"subnet": "140.203.148.0/22",
"option-data": [
{
@@ -122145,6 +122718,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 574,
"subnet": "140.204.148.0/22",
"option-data": [
{
@@ -122305,6 +122879,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 575,
"subnet": "140.205.148.0/22",
"option-data": [
{
@@ -122465,6 +123040,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 576,
"subnet": "140.206.148.0/22",
"option-data": [
{
@@ -122625,6 +123201,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 577,
"subnet": "140.207.148.0/22",
"option-data": [
{
@@ -122785,6 +123362,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 578,
"subnet": "140.208.148.0/22",
"option-data": [
{
@@ -122945,6 +123523,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 579,
"subnet": "140.209.148.0/22",
"option-data": [
{
@@ -123105,6 +123684,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 580,
"subnet": "140.210.148.0/22",
"option-data": [
{
@@ -123265,6 +123845,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 581,
"subnet": "140.211.148.0/22",
"option-data": [
{
@@ -123425,6 +124006,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 582,
"subnet": "140.212.148.0/22",
"option-data": [
{
@@ -123585,6 +124167,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 583,
"subnet": "145.0.104.0/22",
"option-data": [
{
@@ -123745,6 +124328,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 584,
"subnet": "10.144.104.0/22",
"option-data": [
{
@@ -123905,6 +124489,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 585,
"subnet": "140.130.232.0/22",
"option-data": [
{
@@ -124065,6 +124650,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 586,
"subnet": "140.201.68.0/22",
"option-data": [
{
@@ -124225,6 +124811,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 587,
"subnet": "140.202.68.0/22",
"option-data": [
{
@@ -124385,6 +124972,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 588,
"subnet": "140.203.68.0/22",
"option-data": [
{
@@ -124545,6 +125133,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 589,
"subnet": "140.204.68.0/22",
"option-data": [
{
@@ -124705,6 +125294,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 590,
"subnet": "140.205.68.0/22",
"option-data": [
{
@@ -124865,6 +125455,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 591,
"subnet": "140.206.68.0/22",
"option-data": [
{
@@ -125025,6 +125616,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 592,
"subnet": "140.207.68.0/22",
"option-data": [
{
@@ -125185,6 +125777,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 593,
"subnet": "140.208.68.0/22",
"option-data": [
{
@@ -125345,6 +125938,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 594,
"subnet": "140.210.68.0/22",
"option-data": [
{
@@ -125505,6 +126099,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 595,
"subnet": "140.211.68.0/22",
"option-data": [
{
@@ -125665,6 +126260,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 596,
"subnet": "140.212.68.0/22",
"option-data": [
{
@@ -125825,6 +126421,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 597,
"subnet": "132.0.120.0/22",
"option-data": [
{
@@ -125985,6 +126582,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF10
{
+ "id": 598,
"subnet": "136.30.124.0/22",
"option-data": [
{
@@ -126145,6 +126743,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 599,
"subnet": "140.130.160.0/22",
"option-data": [
{
@@ -126305,6 +126904,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 600,
"subnet": "140.201.48.0/22",
"option-data": [
{
@@ -126465,6 +127065,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 601,
"subnet": "140.202.48.0/22",
"option-data": [
{
@@ -126625,6 +127226,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 602,
"subnet": "140.203.48.0/22",
"option-data": [
{
@@ -126785,6 +127387,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 603,
"subnet": "140.204.48.0/22",
"option-data": [
{
@@ -126945,6 +127548,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 604,
"subnet": "140.205.48.0/22",
"option-data": [
{
@@ -127105,6 +127709,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 605,
"subnet": "140.206.48.0/22",
"option-data": [
{
@@ -127265,6 +127870,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 606,
"subnet": "140.207.48.0/22",
"option-data": [
{
@@ -127425,6 +128031,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 607,
"subnet": "140.208.48.0/22",
"option-data": [
{
@@ -127585,6 +128192,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 608,
"subnet": "140.210.48.0/22",
"option-data": [
{
@@ -127745,6 +128353,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 609,
"subnet": "140.211.48.0/22",
"option-data": [
{
@@ -127905,6 +128514,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 610,
"subnet": "140.212.48.0/22",
"option-data": [
{
@@ -128065,6 +128675,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 611,
"subnet": "140.6.56.0/24",
"option-data": [
{
@@ -128225,6 +128836,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 612,
"subnet": "140.60.120.0/22",
"option-data": [
{
@@ -128385,6 +128997,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM17
{
+ "id": 613,
"subnet": "141.30.88.0/22",
"option-data": [
{
@@ -128545,6 +129158,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 614,
"subnet": "145.0.112.0/22",
"option-data": [
{
@@ -128705,6 +129319,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 615,
"subnet": "10.144.103.0/24",
"option-data": [
{
@@ -128882,6 +129497,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 616,
"subnet": "10.144.21.0/24",
"option-data": [
{
@@ -129043,6 +129659,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 617,
"subnet": "10.144.213.0/24",
"option-data": [
{
@@ -129214,6 +129831,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 618,
"subnet": "10.149.5.0/24",
"option-data": [
{
@@ -129369,6 +129987,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 619,
"subnet": "10.150.15.0/24",
"option-data": [
{
@@ -129530,6 +130149,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 620,
"subnet": "10.151.100.0/24",
"option-data": [
{
@@ -129707,6 +130327,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 621,
"subnet": "10.151.101.0/24",
"option-data": [
{
@@ -129884,6 +130505,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 622,
"subnet": "10.151.102.0/24",
"option-data": [
{
@@ -130061,6 +130683,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 623,
"subnet": "10.151.103.0/24",
"option-data": [
{
@@ -130238,6 +130861,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 624,
"subnet": "10.151.104.0/24",
"option-data": [
{
@@ -130415,6 +131039,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 625,
"subnet": "10.151.105.0/24",
"option-data": [
{
@@ -130592,6 +131217,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 626,
"subnet": "10.151.106.0/24",
"option-data": [
{
@@ -130773,6 +131399,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 627,
"subnet": "10.151.108.0/24",
"option-data": [
{
@@ -130950,6 +131577,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 628,
"subnet": "10.151.109.0/24",
"option-data": [
{
@@ -131127,6 +131755,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 629,
"subnet": "10.151.110.0/24",
"option-data": [
{
@@ -131304,6 +131933,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 630,
"subnet": "10.151.111.0/24",
"option-data": [
{
@@ -131481,6 +132111,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 631,
"subnet": "10.151.112.0/24",
"option-data": [
{
@@ -131658,6 +132289,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM79
{
+ "id": 632,
"subnet": "10.151.113.0/24",
"option-data": [
{
@@ -131835,6 +132467,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM79
{
+ "id": 633,
"subnet": "10.151.114.0/24",
"option-data": [
{
@@ -132012,6 +132645,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM79
{
+ "id": 634,
"subnet": "10.151.115.0/24",
"option-data": [
{
@@ -132189,6 +132823,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM79
{
+ "id": 635,
"subnet": "10.151.116.0/24",
"option-data": [
{
@@ -132366,6 +133001,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM79
{
+ "id": 636,
"subnet": "10.151.117.0/24",
"option-data": [
{
@@ -132543,6 +133179,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM79
{
+ "id": 637,
"subnet": "10.151.118.0/24",
"option-data": [
{
@@ -132720,6 +133357,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM79
{
+ "id": 638,
"subnet": "10.151.119.0/24",
"option-data": [
{
@@ -132897,6 +133535,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 639,
"subnet": "10.151.120.0/24",
"option-data": [
{
@@ -133068,6 +133707,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 640,
"subnet": "10.151.121.0/24",
"option-data": [
{
@@ -133239,6 +133879,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 641,
"subnet": "10.151.122.0/24",
"option-data": [
{
@@ -133393,6 +134034,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 642,
"subnet": "10.151.24.0/24",
"option-data": [
{
@@ -133553,6 +134195,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 643,
"subnet": "10.151.255.0/25",
"option-data": [
{
@@ -133707,6 +134350,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 644,
"subnet": "10.151.28.0/24",
"option-data": [
{
@@ -133884,6 +134528,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 645,
"subnet": "10.151.64.0/24",
"option-data": [
{
@@ -134061,6 +134706,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 646,
"subnet": "10.151.65.0/24",
"option-data": [
{
@@ -134238,6 +134884,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 647,
"subnet": "10.151.66.0/24",
"option-data": [
{
@@ -134415,6 +135062,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 648,
"subnet": "10.151.71.0/24",
"option-data": [
{
@@ -134592,6 +135240,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 649,
"subnet": "10.151.72.0/24",
"option-data": [
{
@@ -134769,6 +135418,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 650,
"subnet": "10.151.73.0/24",
"option-data": [
{
@@ -134946,6 +135596,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 651,
"subnet": "10.151.74.0/24",
"option-data": [
{
@@ -135123,6 +135774,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 652,
"subnet": "10.151.75.0/24",
"option-data": [
{
@@ -135300,6 +135952,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 653,
"subnet": "10.151.76.0/24",
"option-data": [
{
@@ -135477,6 +136130,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 654,
"subnet": "10.151.77.0/24",
"option-data": [
{
@@ -135654,6 +136308,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 655,
"subnet": "10.151.78.0/24",
"option-data": [
{
@@ -135831,6 +136486,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 656,
"subnet": "10.151.79.0/24",
"option-data": [
{
@@ -136008,6 +136664,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 657,
"subnet": "10.151.82.0/24",
"option-data": [
{
@@ -136185,6 +136842,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 658,
"subnet": "10.151.83.0/24",
"option-data": [
{
@@ -136362,6 +137020,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 659,
"subnet": "10.151.84.0/24",
"option-data": [
{
@@ -136539,6 +137198,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 660,
"subnet": "10.151.85.0/24",
"option-data": [
{
@@ -136720,6 +137380,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 661,
"subnet": "10.151.87.0/24",
"option-data": [
{
@@ -136897,6 +137558,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 662,
"subnet": "10.151.88.0/24",
"option-data": [
{
@@ -137074,6 +137736,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 663,
"subnet": "10.151.89.0/24",
"option-data": [
{
@@ -137251,6 +137914,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 664,
"subnet": "10.151.90.0/24",
"option-data": [
{
@@ -137428,6 +138092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 665,
"subnet": "10.151.91.0/24",
"option-data": [
{
@@ -137605,6 +138270,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 666,
"subnet": "10.151.92.0/24",
"option-data": [
{
@@ -137782,6 +138448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 667,
"subnet": "10.151.93.0/24",
"option-data": [
{
@@ -137959,6 +138626,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 668,
"subnet": "10.151.94.0/24",
"option-data": [
{
@@ -138136,6 +138804,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 669,
"subnet": "10.151.95.0/24",
"option-data": [
{
@@ -138313,6 +138982,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 670,
"subnet": "10.151.96.0/24",
"option-data": [
{
@@ -138490,6 +139160,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 671,
"subnet": "10.151.97.0/24",
"option-data": [
{
@@ -138667,6 +139338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 672,
"subnet": "10.151.98.0/24",
"option-data": [
{
@@ -138844,6 +139516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 673,
"subnet": "10.151.99.0/24",
"option-data": [
{
@@ -139021,6 +139694,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 674,
"subnet": "10.152.22.0/24",
"option-data": [
{
@@ -139181,6 +139855,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 675,
"subnet": "10.152.64.0/24",
"option-data": [
{
@@ -139358,6 +140033,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEL01
{
+ "id": 676,
"subnet": "10.176.44.0/24",
"option-data": [
{
@@ -139535,6 +140211,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BXL01
{
+ "id": 677,
"subnet": "10.176.76.0/24",
"option-data": [
{
@@ -139712,6 +140389,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAD01
{
+ "id": 678,
"subnet": "10.177.1.0/24",
"option-data": [
{
@@ -139889,6 +140567,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAD01
{
+ "id": 679,
"subnet": "10.177.3.0/24",
"option-data": [
{
@@ -140066,6 +140745,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRC01
{
+ "id": 680,
"subnet": "10.177.65.0/24",
"option-data": [
{
@@ -140243,6 +140923,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRC01
{
+ "id": 681,
"subnet": "10.177.67.0/24",
"option-data": [
{
@@ -140420,6 +141101,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAR01
{
+ "id": 682,
"subnet": "10.178.1.0/24",
"option-data": [
{
@@ -140591,6 +141273,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAR01
{
+ "id": 683,
"subnet": "10.178.3.0/24",
"option-data": [
{
@@ -140762,6 +141445,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAR01
{
+ "id": 684,
"subnet": "10.178.4.0/24",
"option-data": [
{
@@ -140933,6 +141617,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MLD01
{
+ "id": 685,
"subnet": "10.179.1.0/24",
"option-data": [
{
@@ -141093,6 +141778,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MLD01
{
+ "id": 686,
"subnet": "10.179.3.0/24",
"option-data": [
{
@@ -141253,6 +141939,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZCH06
{
+ "id": 687,
"subnet": "10.180.1.0/24",
"option-data": [
{
@@ -141430,6 +142117,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUB03
{
+ "id": 688,
"subnet": "10.180.140.0/24",
"option-data": [
{
@@ -141601,6 +142289,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# JOH02
{
+ "id": 689,
"subnet": "10.180.193.0/24",
"option-data": [
{
@@ -141778,6 +142467,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZCH06
{
+ "id": 690,
"subnet": "10.180.4.0/24",
"option-data": [
{
@@ -141949,6 +142639,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MOS01
{
+ "id": 691,
"subnet": "10.184.1.0/24",
"option-data": [
{
@@ -142126,6 +142817,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MOS01
{
+ "id": 692,
"subnet": "10.184.3.0/24",
"option-data": [
{
@@ -142307,6 +142999,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BUD02
{
+ "id": 693,
"subnet": "10.185.130.0/24",
"option-data": [
{
@@ -142478,6 +143171,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DEB01
{
+ "id": 694,
"subnet": "10.185.134.0/24",
"option-data": [
{
@@ -142649,6 +143343,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PEC01
{
+ "id": 695,
"subnet": "10.185.138.0/24",
"option-data": [
{
@@ -142820,6 +143515,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZAL01
{
+ "id": 696,
"subnet": "10.185.142.0/24",
"option-data": [
{
@@ -142991,6 +143687,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SZE01
{
+ "id": 697,
"subnet": "10.185.146.0/24",
"option-data": [
{
@@ -143162,6 +143859,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BUD03
{
+ "id": 698,
"subnet": "10.185.150.0/24",
"option-data": [
{
@@ -143333,6 +144031,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KEC01
{
+ "id": 699,
"subnet": "10.185.154.0/24",
"option-data": [
{
@@ -143504,6 +144203,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GYO01
{
+ "id": 700,
"subnet": "10.185.158.0/24",
"option-data": [
{
@@ -143675,6 +144375,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MIS01
{
+ "id": 701,
"subnet": "10.185.162.0/24",
"option-data": [
{
@@ -143846,6 +144547,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SZG01
{
+ "id": 702,
"subnet": "10.185.166.0/24",
"option-data": [
{
@@ -144017,6 +144719,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BUD06
{
+ "id": 703,
"subnet": "10.185.34.0/24",
"option-data": [
{
@@ -144194,6 +144897,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PRA06
{
+ "id": 704,
"subnet": "10.186.11.0/24",
"option-data": [
{
@@ -144365,6 +145069,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PRA06
{
+ "id": 705,
"subnet": "10.186.12.0/24",
"option-data": [
{
@@ -144536,6 +145241,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRN01
{
+ "id": 706,
"subnet": "10.186.130.0/24",
"option-data": [
{
@@ -144707,6 +145413,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ORV01
{
+ "id": 707,
"subnet": "10.186.134.0/24",
"option-data": [
{
@@ -144878,6 +145585,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PLZ01
{
+ "id": 708,
"subnet": "10.186.138.0/24",
"option-data": [
{
@@ -145032,6 +145740,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HRK01
{
+ "id": 709,
"subnet": "10.186.142.0/24",
"option-data": [
{
@@ -145203,6 +145912,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PRA07
{
+ "id": 710,
"subnet": "10.186.44.0/24",
"option-data": [
{
@@ -145374,6 +146084,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PRA05
{
+ "id": 711,
"subnet": "10.186.75.0/24",
"option-data": [
{
@@ -145551,6 +146262,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PRA05
{
+ "id": 712,
"subnet": "10.186.76.0/24",
"option-data": [
{
@@ -145722,6 +146434,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BTS01
{
+ "id": 713,
"subnet": "10.187.2.0/24",
"option-data": [
{
@@ -145899,6 +146612,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOS01
{
+ "id": 714,
"subnet": "10.187.6.0/24",
"option-data": [
{
@@ -146070,6 +146784,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DXB01
{
+ "id": 715,
"subnet": "10.190.44.0/24",
"option-data": [
{
@@ -146224,6 +146939,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DXB01
{
+ "id": 716,
"subnet": "10.190.45.0/24",
"option-data": [
{
@@ -146378,6 +147094,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ANT01
{
+ "id": 717,
"subnet": "10.195.0.0/28",
"option-data": [
{
@@ -146555,6 +147272,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ANT02
{
+ "id": 718,
"subnet": "10.195.3.0/24",
"option-data": [
{
@@ -146715,6 +147433,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP01
{
+ "id": 719,
"subnet": "10.198.20.0/24",
"option-data": [
{
@@ -146892,6 +147611,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP01
{
+ "id": 720,
"subnet": "10.198.21.0/24",
"option-data": [
{
@@ -147063,6 +147783,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP01
{
+ "id": 721,
"subnet": "10.198.22.0/23",
"option-data": [
{
@@ -147234,6 +147955,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP01
{
+ "id": 722,
"subnet": "10.198.24.0/24",
"option-data": [
{
@@ -147405,6 +148127,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP01
{
+ "id": 723,
"subnet": "10.198.4.0/24",
"option-data": [
{
@@ -147582,6 +148305,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP02
{
+ "id": 724,
"subnet": "10.199.20.0/24",
"option-data": [
{
@@ -147759,6 +148483,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP02
{
+ "id": 725,
"subnet": "10.199.4.0/24",
"option-data": [
{
@@ -147940,6 +148665,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP04
{
+ "id": 726,
"subnet": "10.200.14.128/26",
"option-data": [
{
@@ -148111,6 +148837,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP04
{
+ "id": 727,
"subnet": "10.200.14.192/26",
"option-data": [
{
@@ -148306,6 +149033,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HON01
{
+ "id": 728,
"subnet": "10.201.1.0/24",
"option-data": [
{
@@ -148466,6 +149194,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TOK04
{
+ "id": 729,
"subnet": "10.201.129.0/24",
"option-data": [
{
@@ -148626,6 +149355,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TOK04
{
+ "id": 730,
"subnet": "10.201.131.0/24",
"option-data": [
{
@@ -148786,6 +149516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TOK05
{
+ "id": 731,
"subnet": "10.201.161.0/24",
"option-data": [
{
@@ -148963,6 +149694,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TOK05
{
+ "id": 732,
"subnet": "10.201.163.0/24",
"option-data": [
{
@@ -149148,6 +149880,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HON01
{
+ "id": 733,
"subnet": "10.201.3.0/24",
"option-data": [
{
@@ -149308,6 +150041,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HON02
{
+ "id": 734,
"subnet": "10.201.33.0/24",
"option-data": [
{
@@ -149485,6 +150219,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HON02
{
+ "id": 735,
"subnet": "10.201.35.0/24",
"option-data": [
{
@@ -149662,6 +150397,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SHA03
{
+ "id": 736,
"subnet": "10.201.65.0/24",
"option-data": [
{
@@ -149826,6 +150562,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SHA02
{
+ "id": 737,
"subnet": "10.201.97.0/24",
"option-data": [
{
@@ -150003,6 +150740,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SHA02
{
+ "id": 738,
"subnet": "10.201.99.0/24",
"option-data": [
{
@@ -150180,6 +150918,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 739,
"subnet": "10.205.75.0/24",
"option-data": [
{
@@ -150246,6 +150985,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 740,
"subnet": "10.205.76.0/24",
"option-data": [
{
@@ -150423,6 +151163,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 741,
"subnet": "10.205.99.0/24",
"option-data": [
{
@@ -150600,6 +151341,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 742,
"subnet": "10.206.10.0/24",
"option-data": [
{
@@ -150777,6 +151519,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 743,
"subnet": "10.206.11.0/24",
"option-data": [
{
@@ -150954,6 +151697,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 744,
"subnet": "10.206.12.0/24",
"option-data": [
{
@@ -151131,6 +151875,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 745,
"subnet": "10.206.13.0/24",
"option-data": [
{
@@ -151308,6 +152053,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 746,
"subnet": "10.206.14.0/24",
"option-data": [
{
@@ -151485,6 +152231,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 747,
"subnet": "10.206.15.0/24",
"option-data": [
{
@@ -151662,6 +152409,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 748,
"subnet": "10.206.16.0/24",
"option-data": [
{
@@ -151839,6 +152587,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 749,
"subnet": "10.206.17.0/24",
"option-data": [
{
@@ -152016,6 +152765,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 750,
"subnet": "10.206.18.0/24",
"option-data": [
{
@@ -152193,6 +152943,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 751,
"subnet": "10.206.19.0/24",
"option-data": [
{
@@ -152370,6 +153121,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 752,
"subnet": "10.206.2.0/24",
"option-data": [
{
@@ -152541,6 +153293,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 753,
"subnet": "10.206.20.0/24",
"option-data": [
{
@@ -152718,6 +153471,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 754,
"subnet": "10.206.21.0/24",
"option-data": [
{
@@ -152895,6 +153649,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 755,
"subnet": "10.206.22.0/24",
"option-data": [
{
@@ -153072,6 +153827,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 756,
"subnet": "10.206.23.0/24",
"option-data": [
{
@@ -153249,6 +154005,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 757,
"subnet": "10.206.24.0/24",
"option-data": [
{
@@ -153426,6 +154183,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 758,
"subnet": "10.206.25.0/24",
"option-data": [
{
@@ -153603,6 +154361,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 759,
"subnet": "10.206.26.0/24",
"option-data": [
{
@@ -153780,6 +154539,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 760,
"subnet": "10.206.27.0/24",
"option-data": [
{
@@ -153957,6 +154717,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 761,
"subnet": "10.206.28.0/24",
"option-data": [
{
@@ -154134,6 +154895,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 762,
"subnet": "10.206.29.0/24",
"option-data": [
{
@@ -154311,6 +155073,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 763,
"subnet": "10.206.8.0/24",
"option-data": [
{
@@ -154488,6 +155251,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 764,
"subnet": "10.206.9.0/24",
"option-data": [
{
@@ -154665,6 +155429,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 765,
"subnet": "132.0.112.0/24",
"option-data": [
{
@@ -154848,6 +155613,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 766,
"subnet": "132.0.128.0/22",
"option-data": [
{
@@ -155025,6 +155791,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 767,
"subnet": "132.0.28.0/24",
"option-data": [
{
@@ -155202,6 +155969,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG52
{
+ "id": 768,
"subnet": "132.0.30.0/24",
"option-data": [
{
@@ -155379,6 +156147,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG52
{
+ "id": 769,
"subnet": "132.0.32.0/22",
"option-data": [
{
@@ -155562,6 +156331,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 770,
"subnet": "132.0.72.0/24",
"option-data": [
{
@@ -155749,6 +156519,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 771,
"subnet": "132.0.96.0/22",
"option-data": [
{
@@ -155944,6 +156715,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG62
{
+ "id": 772,
"subnet": "132.20.16.0/22",
"option-data": [
{
@@ -156121,6 +156893,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG62
{
+ "id": 773,
"subnet": "132.20.4.0/22",
"option-data": [
{
@@ -156287,6 +157060,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG62
{
+ "id": 774,
"subnet": "132.20.8.0/22",
"option-data": [
{
@@ -156464,6 +157238,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG25
{
+ "id": 775,
"subnet": "132.30.160.0/24",
"option-data": [
{
@@ -156641,6 +157416,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG04
{
+ "id": 776,
"subnet": "132.30.240.0/24",
"option-data": [
{
@@ -156818,6 +157594,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG03
{
+ "id": 777,
"subnet": "132.30.242.0/24",
"option-data": [
{
@@ -156995,6 +157772,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG08
{
+ "id": 778,
"subnet": "132.30.246.0/24",
"option-data": [
{
@@ -157172,6 +157950,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG09
{
+ "id": 779,
"subnet": "132.30.248.0/24",
"option-data": [
{
@@ -157349,6 +158128,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG16
{
+ "id": 780,
"subnet": "132.30.252.0/24",
"option-data": [
{
@@ -157526,6 +158306,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG11
{
+ "id": 781,
"subnet": "132.30.254.0/24",
"option-data": [
{
@@ -157703,6 +158484,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG78
{
+ "id": 782,
"subnet": "132.31.102.0/24",
"option-data": [
{
@@ -157775,6 +158557,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG77
{
+ "id": 783,
"subnet": "132.31.104.0/24",
"option-data": [
{
@@ -157956,6 +158739,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG05
{
+ "id": 784,
"subnet": "132.31.110.0/24",
"option-data": [
{
@@ -158028,6 +158812,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG79
{
+ "id": 785,
"subnet": "132.31.112.0/24",
"option-data": [
{
@@ -158100,6 +158885,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BHZ01
{
+ "id": 786,
"subnet": "132.31.114.0/24",
"option-data": [
{
@@ -158172,6 +158958,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG13
{
+ "id": 787,
"subnet": "132.31.12.0/24",
"option-data": [
{
@@ -158349,6 +159136,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG19
{
+ "id": 788,
"subnet": "132.31.14.0/24",
"option-data": [
{
@@ -158526,6 +159314,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG20
{
+ "id": 789,
"subnet": "132.31.16.0/24",
"option-data": [
{
@@ -158703,6 +159492,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG21
{
+ "id": 790,
"subnet": "132.31.18.0/24",
"option-data": [
{
@@ -158880,6 +159670,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG34
{
+ "id": 791,
"subnet": "132.31.2.0/24",
"option-data": [
{
@@ -159057,6 +159848,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG02
{
+ "id": 792,
"subnet": "132.31.20.0/24",
"option-data": [
{
@@ -159234,6 +160026,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG22
{
+ "id": 793,
"subnet": "132.31.22.0/24",
"option-data": [
{
@@ -159411,6 +160204,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WDL01
{
+ "id": 794,
"subnet": "132.31.24.0/24",
"option-data": [
{
@@ -159588,6 +160382,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG27
{
+ "id": 795,
"subnet": "132.31.26.0/24",
"option-data": [
{
@@ -159765,6 +160560,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG30
{
+ "id": 796,
"subnet": "132.31.28.0/24",
"option-data": [
{
@@ -159942,6 +160738,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG32
{
+ "id": 797,
"subnet": "132.31.32.0/24",
"option-data": [
{
@@ -160119,6 +160916,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG33
{
+ "id": 798,
"subnet": "132.31.34.0/24",
"option-data": [
{
@@ -160296,6 +161094,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG35
{
+ "id": 799,
"subnet": "132.31.36.0/24",
"option-data": [
{
@@ -160473,6 +161272,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG36
{
+ "id": 800,
"subnet": "132.31.38.0/24",
"option-data": [
{
@@ -160650,6 +161450,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG04
{
+ "id": 801,
"subnet": "132.31.4.0/22",
"option-data": [
{
@@ -160827,6 +161628,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG48
{
+ "id": 802,
"subnet": "132.31.40.0/24",
"option-data": [
{
@@ -161004,6 +161806,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG46
{
+ "id": 803,
"subnet": "132.31.42.0/24",
"option-data": [
{
@@ -161181,6 +161984,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RBK01
{
+ "id": 804,
"subnet": "132.31.44.0/24",
"option-data": [
{
@@ -161358,6 +162162,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SVD01
{
+ "id": 805,
"subnet": "132.31.46.0/24",
"option-data": [
{
@@ -161535,6 +162340,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG06
{
+ "id": 806,
"subnet": "132.31.48.0/24",
"option-data": [
{
@@ -161712,6 +162518,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG12
{
+ "id": 807,
"subnet": "132.31.50.0/24",
"option-data": [
{
@@ -161889,6 +162696,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG61
{
+ "id": 808,
"subnet": "132.31.58.0/24",
"option-data": [
{
@@ -162066,6 +162874,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG01
{
+ "id": 809,
"subnet": "132.31.64.0/24",
"option-data": [
{
@@ -162243,6 +163052,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG52
{
+ "id": 810,
"subnet": "132.31.8.0/22",
"option-data": [
{
@@ -162420,6 +163230,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG72
{
+ "id": 811,
"subnet": "132.31.88.0/24",
"option-data": [
{
@@ -162492,6 +163303,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG73
{
+ "id": 812,
"subnet": "132.31.90.0/24",
"option-data": [
{
@@ -162564,6 +163376,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG74
{
+ "id": 813,
"subnet": "132.31.92.0/24",
"option-data": [
{
@@ -162636,6 +163449,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG76
{
+ "id": 814,
"subnet": "132.31.94.0/24",
"option-data": [
{
@@ -162708,6 +163522,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG75
{
+ "id": 815,
"subnet": "132.31.96.0/24",
"option-data": [
{
@@ -162780,6 +163595,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG71
{
+ "id": 816,
"subnet": "132.31.98.0/24",
"option-data": [
{
@@ -162852,6 +163668,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CUX01
{
+ "id": 817,
"subnet": "132.40.100.0/24",
"option-data": [
{
@@ -163029,6 +163846,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AHR01
{
+ "id": 818,
"subnet": "132.40.120.0/24",
"option-data": [
{
@@ -163206,6 +164024,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUG01
{
+ "id": 819,
"subnet": "132.40.122.0/24",
"option-data": [
{
@@ -163383,6 +164202,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ELM01
{
+ "id": 820,
"subnet": "132.40.124.0/24",
"option-data": [
{
@@ -163560,6 +164380,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NDS03
{
+ "id": 821,
"subnet": "132.40.126.0/24",
"option-data": [
{
@@ -163737,6 +164558,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG39
{
+ "id": 822,
"subnet": "132.40.128.0/24",
"option-data": [
{
@@ -163914,6 +164736,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STD01
{
+ "id": 823,
"subnet": "132.40.130.0/24",
"option-data": [
{
@@ -164091,6 +164914,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AHR01
{
+ "id": 824,
"subnet": "132.40.132.0/22",
"option-data": [
{
@@ -164268,6 +165092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUG01
{
+ "id": 825,
"subnet": "132.40.136.0/22",
"option-data": [
{
@@ -164445,6 +165270,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NDS03
{
+ "id": 826,
"subnet": "132.40.140.0/22",
"option-data": [
{
@@ -164622,6 +165448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ELM01
{
+ "id": 827,
"subnet": "132.40.144.0/22",
"option-data": [
{
@@ -164799,6 +165626,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STD01
{
+ "id": 828,
"subnet": "132.40.148.0/22",
"option-data": [
{
@@ -164976,6 +165804,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HBG39
{
+ "id": 829,
"subnet": "132.40.152.0/22",
"option-data": [
{
@@ -165153,6 +165982,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAL01
{
+ "id": 830,
"subnet": "132.40.156.0/24",
"option-data": [
{
@@ -165330,6 +166160,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRB01
{
+ "id": 831,
"subnet": "132.40.158.0/24",
"option-data": [
{
@@ -165507,6 +166338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# UET01
{
+ "id": 832,
"subnet": "132.40.160.0/24",
"option-data": [
{
@@ -165684,6 +166516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BUX01
{
+ "id": 833,
"subnet": "132.40.162.0/24",
"option-data": [
{
@@ -165861,6 +166694,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# QUI02
{
+ "id": 834,
"subnet": "132.40.164.0/24",
"option-data": [
{
@@ -166038,6 +166872,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PIN01
{
+ "id": 835,
"subnet": "132.40.166.0/24",
"option-data": [
{
@@ -166215,6 +167050,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BBR01
{
+ "id": 836,
"subnet": "132.40.168.0/24",
"option-data": [
{
@@ -166392,6 +167228,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GLI01
{
+ "id": 837,
"subnet": "132.40.170.0/24",
"option-data": [
{
@@ -166569,6 +167406,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WLU01
{
+ "id": 838,
"subnet": "132.40.172.0/24",
"option-data": [
{
@@ -166746,6 +167584,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# IZE01
{
+ "id": 839,
"subnet": "132.40.174.0/24",
"option-data": [
{
@@ -166923,6 +167762,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUW01
{
+ "id": 840,
"subnet": "132.40.176.0/24",
"option-data": [
{
@@ -167100,6 +167940,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GHT01
{
+ "id": 841,
"subnet": "132.40.178.0/24",
"option-data": [
{
@@ -167277,6 +168118,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FLB01
{
+ "id": 842,
"subnet": "132.50.58.0/24",
"option-data": [
{
@@ -167454,6 +168296,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HUS01
{
+ "id": 843,
"subnet": "132.50.60.0/24",
"option-data": [
{
@@ -167631,6 +168474,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HDE01
{
+ "id": 844,
"subnet": "132.50.62.0/24",
"option-data": [
{
@@ -167808,6 +168652,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FLB01
{
+ "id": 845,
"subnet": "132.50.64.0/22",
"option-data": [
{
@@ -167985,6 +168830,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HUS01
{
+ "id": 846,
"subnet": "132.50.68.0/22",
"option-data": [
{
@@ -168162,6 +169008,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FLB03
{
+ "id": 847,
"subnet": "132.50.72.0/24",
"option-data": [
{
@@ -168339,6 +169186,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FLB07
{
+ "id": 848,
"subnet": "132.50.74.0/24",
"option-data": [
{
@@ -168516,6 +169364,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NBL01
{
+ "id": 849,
"subnet": "132.50.76.0/24",
"option-data": [
{
@@ -168693,6 +169542,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SLG01
{
+ "id": 850,
"subnet": "132.50.78.0/24",
"option-data": [
{
@@ -168870,6 +169720,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WLD01
{
+ "id": 851,
"subnet": "132.50.80.0/24",
"option-data": [
{
@@ -169047,6 +169898,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE01
{
+ "id": 852,
"subnet": "132.60.110.0/24",
"option-data": [
{
@@ -169224,6 +170076,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE04
{
+ "id": 853,
"subnet": "132.60.26.0/24",
"option-data": [
{
@@ -169401,6 +170254,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE01
{
+ "id": 854,
"subnet": "132.60.36.0/22",
"option-data": [
{
@@ -169578,6 +170432,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ECK01
{
+ "id": 855,
"subnet": "132.60.40.0/24",
"option-data": [
{
@@ -169755,6 +170610,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE02
{
+ "id": 856,
"subnet": "132.60.48.0/24",
"option-data": [
{
@@ -169915,6 +170771,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE03
{
+ "id": 857,
"subnet": "132.60.50.0/24",
"option-data": [
{
@@ -170092,6 +170949,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NMS01
{
+ "id": 858,
"subnet": "132.60.52.0/24",
"option-data": [
{
@@ -170269,6 +171127,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REN01
{
+ "id": 859,
"subnet": "132.60.54.0/24",
"option-data": [
{
@@ -170446,6 +171305,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE02
{
+ "id": 860,
"subnet": "132.60.58.0/24",
"option-data": [
{
@@ -170623,6 +171483,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE01
{
+ "id": 861,
"subnet": "132.60.86.0/23",
"option-data": [
{
@@ -170800,6 +171661,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE01
{
+ "id": 862,
"subnet": "132.60.92.0/24",
"option-data": [
{
@@ -170977,6 +171839,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE01
{
+ "id": 863,
"subnet": "132.60.94.0/23",
"option-data": [
{
@@ -171154,6 +172017,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIE01
{
+ "id": 864,
"subnet": "132.60.96.0/24",
"option-data": [
{
@@ -171331,6 +172195,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUE01
{
+ "id": 865,
"subnet": "132.70.60.0/22",
"option-data": [
{
@@ -171508,6 +172373,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUE04
{
+ "id": 866,
"subnet": "132.70.64.0/24",
"option-data": [
{
@@ -171685,6 +172551,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUE01
{
+ "id": 867,
"subnet": "132.70.66.0/24",
"option-data": [
{
@@ -171862,6 +172729,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUE05
{
+ "id": 868,
"subnet": "132.70.68.0/24",
"option-data": [
{
@@ -172039,6 +172907,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MOL01
{
+ "id": 869,
"subnet": "132.70.70.0/24",
"option-data": [
{
@@ -172216,6 +173085,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NSH01
{
+ "id": 870,
"subnet": "132.70.72.0/24",
"option-data": [
{
@@ -172393,6 +173263,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WAH01
{
+ "id": 871,
"subnet": "132.70.74.0/24",
"option-data": [
{
@@ -172570,6 +173441,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BSW01
{
+ "id": 872,
"subnet": "132.70.76.0/24",
"option-data": [
{
@@ -172747,6 +173619,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOL01
{
+ "id": 873,
"subnet": "132.70.78.0/24",
"option-data": [
{
@@ -172924,6 +173797,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUE02
{
+ "id": 874,
"subnet": "132.70.80.0/24",
"option-data": [
{
@@ -173101,6 +173975,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUE06
{
+ "id": 875,
"subnet": "132.70.92.0/22",
"option-data": [
{
@@ -173261,6 +174136,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NBB01
{
+ "id": 876,
"subnet": "132.80.104.0/22",
"option-data": [
{
@@ -173438,6 +174314,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RST01
{
+ "id": 877,
"subnet": "132.80.108.0/22",
"option-data": [
{
@@ -173615,6 +174492,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWR01
{
+ "id": 878,
"subnet": "132.80.112.0/22",
"option-data": [
{
@@ -173792,6 +174670,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STR01
{
+ "id": 879,
"subnet": "132.80.116.0/22",
"option-data": [
{
@@ -173969,6 +174848,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GWD01
{
+ "id": 880,
"subnet": "132.80.120.0/22",
"option-data": [
{
@@ -174146,6 +175026,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STR01
{
+ "id": 881,
"subnet": "132.80.70.0/24",
"option-data": [
{
@@ -174323,6 +175204,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WTT01
{
+ "id": 882,
"subnet": "132.80.72.0/24",
"option-data": [
{
@@ -174500,6 +175382,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WSM01
{
+ "id": 883,
"subnet": "132.80.74.0/24",
"option-data": [
{
@@ -174677,6 +175560,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NTZ02
{
+ "id": 884,
"subnet": "132.80.76.0/24",
"option-data": [
{
@@ -174854,6 +175738,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRG01
{
+ "id": 885,
"subnet": "132.80.78.0/24",
"option-data": [
{
@@ -175031,6 +175916,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ROG01
{
+ "id": 886,
"subnet": "132.80.80.0/24",
"option-data": [
{
@@ -175208,6 +176094,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RST07
{
+ "id": 887,
"subnet": "132.80.82.0/24",
"option-data": [
{
@@ -175385,6 +176272,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NBB01
{
+ "id": 888,
"subnet": "132.80.92.0/24",
"option-data": [
{
@@ -175562,6 +176450,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RST01
{
+ "id": 889,
"subnet": "132.80.96.0/24",
"option-data": [
{
@@ -175739,6 +176628,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWR01
{
+ "id": 890,
"subnet": "132.80.98.0/24",
"option-data": [
{
@@ -175916,6 +176806,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE15
{
+ "id": 891,
"subnet": "133.0.10.0/24",
"option-data": [
{
@@ -176093,6 +176984,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE01
{
+ "id": 892,
"subnet": "133.0.102.0/24",
"option-data": [
{
@@ -176270,6 +177162,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE01
{
+ "id": 893,
"subnet": "133.0.48.0/22",
"option-data": [
{
@@ -176447,6 +177340,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE01
{
+ "id": 894,
"subnet": "133.0.88.0/24",
"option-data": [
{
@@ -176624,6 +177518,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE01
{
+ "id": 895,
"subnet": "133.0.94.0/24",
"option-data": [
{
@@ -176801,6 +177696,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE01
{
+ "id": 896,
"subnet": "133.0.96.0/23",
"option-data": [
{
@@ -176972,6 +177868,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE10
{
+ "id": 897,
"subnet": "133.30.26.0/24",
"option-data": [
{
@@ -177149,6 +178046,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VER02
{
+ "id": 898,
"subnet": "133.30.50.0/24",
"option-data": [
{
@@ -177326,6 +178224,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VER02
{
+ "id": 899,
"subnet": "133.30.52.0/22",
"option-data": [
{
@@ -177503,6 +178402,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE03
{
+ "id": 900,
"subnet": "133.30.56.0/24",
"option-data": [
{
@@ -177680,6 +178580,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE05
{
+ "id": 901,
"subnet": "133.30.58.0/24",
"option-data": [
{
@@ -177857,6 +178758,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE06
{
+ "id": 902,
"subnet": "133.30.60.0/24",
"option-data": [
{
@@ -178017,6 +178919,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE12
{
+ "id": 903,
"subnet": "133.30.62.0/24",
"option-data": [
{
@@ -178194,6 +179097,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRE06
{
+ "id": 904,
"subnet": "133.30.64.0/24",
"option-data": [
{
@@ -178371,6 +179275,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OLD01
{
+ "id": 905,
"subnet": "133.40.64.0/24",
"option-data": [
{
@@ -178548,6 +179453,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ROB01
{
+ "id": 906,
"subnet": "133.40.66.0/24",
"option-data": [
{
@@ -178725,6 +179631,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OLD01
{
+ "id": 907,
"subnet": "133.40.68.0/22",
"option-data": [
{
@@ -178902,6 +179809,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ROB01
{
+ "id": 908,
"subnet": "133.40.72.0/22",
"option-data": [
{
@@ -179079,6 +179987,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIW01
{
+ "id": 909,
"subnet": "133.40.76.0/22",
"option-data": [
{
@@ -179256,6 +180165,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DEL01
{
+ "id": 910,
"subnet": "133.40.80.0/22",
"option-data": [
{
@@ -179433,6 +180343,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CLO01
{
+ "id": 911,
"subnet": "133.40.84.0/24",
"option-data": [
{
@@ -179610,6 +180521,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ACH01
{
+ "id": 912,
"subnet": "133.40.86.0/24",
"option-data": [
{
@@ -179787,6 +180699,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WHS01
{
+ "id": 913,
"subnet": "133.40.90.0/24",
"option-data": [
{
@@ -179964,6 +180877,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOY01
{
+ "id": 914,
"subnet": "133.40.92.0/24",
"option-data": [
{
@@ -180141,6 +181055,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OSC01
{
+ "id": 915,
"subnet": "133.40.96.0/24",
"option-data": [
{
@@ -180318,6 +181233,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BVD01
{
+ "id": 916,
"subnet": "133.40.98.0/24",
"option-data": [
{
@@ -180495,6 +181411,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EMD01
{
+ "id": 917,
"subnet": "133.50.104.0/22",
"option-data": [
{
@@ -180672,6 +181589,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIL01
{
+ "id": 918,
"subnet": "133.50.108.0/22",
"option-data": [
{
@@ -180849,6 +181767,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LER01
{
+ "id": 919,
"subnet": "133.50.112.0/24",
"option-data": [
{
@@ -181026,6 +181945,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BHV03
{
+ "id": 920,
"subnet": "133.50.32.0/24",
"option-data": [
{
@@ -181203,6 +182123,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EMD01
{
+ "id": 921,
"subnet": "133.50.64.0/24",
"option-data": [
{
@@ -181380,6 +182301,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAP02
{
+ "id": 922,
"subnet": "133.50.66.0/24",
"option-data": [
{
@@ -181557,6 +182479,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NOR01
{
+ "id": 923,
"subnet": "133.50.70.0/24",
"option-data": [
{
@@ -181734,6 +182657,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAP02
{
+ "id": 924,
"subnet": "133.50.72.0/22",
"option-data": [
{
@@ -181911,6 +182835,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LER01
{
+ "id": 925,
"subnet": "133.50.76.0/22",
"option-data": [
{
@@ -182088,6 +183013,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NOM01
{
+ "id": 926,
"subnet": "133.50.80.0/24",
"option-data": [
{
@@ -182265,6 +183191,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VAR01
{
+ "id": 927,
"subnet": "133.50.82.0/24",
"option-data": [
{
@@ -182442,6 +183369,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRK01
{
+ "id": 928,
"subnet": "133.50.84.0/24",
"option-data": [
{
@@ -182619,6 +183547,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN01
{
+ "id": 929,
"subnet": "134.0.102.0/24",
"option-data": [
{
@@ -182779,6 +183708,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN13
{
+ "id": 930,
"subnet": "134.0.28.0/24",
"option-data": [
{
@@ -182956,6 +183886,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN13
{
+ "id": 931,
"subnet": "134.0.36.0/22",
"option-data": [
{
@@ -183133,6 +184064,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN01
{
+ "id": 932,
"subnet": "134.0.4.0/22",
"option-data": [
{
@@ -183310,6 +184242,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN01
{
+ "id": 933,
"subnet": "134.0.60.0/24",
"option-data": [
{
@@ -183487,6 +184420,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN01
{
+ "id": 934,
"subnet": "134.0.62.0/23",
"option-data": [
{
@@ -183664,6 +184598,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN01
{
+ "id": 935,
"subnet": "134.0.64.0/24",
"option-data": [
{
@@ -183841,6 +184776,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HMM01
{
+ "id": 936,
"subnet": "134.30.48.0/24",
"option-data": [
{
@@ -184018,6 +184954,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN08
{
+ "id": 937,
"subnet": "134.30.50.0/24",
"option-data": [
{
@@ -184195,6 +185132,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HMM01
{
+ "id": 938,
"subnet": "134.30.52.0/22",
"option-data": [
{
@@ -184372,6 +185310,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN10
{
+ "id": 939,
"subnet": "134.30.56.0/24",
"option-data": [
{
@@ -184549,6 +185488,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN12
{
+ "id": 940,
"subnet": "134.30.58.0/24",
"option-data": [
{
@@ -184726,6 +185666,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN17
{
+ "id": 941,
"subnet": "134.30.62.0/24",
"option-data": [
{
@@ -184903,6 +185844,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAN07
{
+ "id": 942,
"subnet": "134.30.64.0/24",
"option-data": [
{
@@ -185080,6 +186022,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CEL01
{
+ "id": 943,
"subnet": "134.40.62.0/24",
"option-data": [
{
@@ -185257,6 +186200,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CEL01
{
+ "id": 944,
"subnet": "134.40.64.0/22",
"option-data": [
{
@@ -185434,6 +186378,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BDF01
{
+ "id": 945,
"subnet": "134.40.68.0/24",
"option-data": [
{
@@ -185611,6 +186556,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GAR01
{
+ "id": 946,
"subnet": "134.40.70.0/24",
"option-data": [
{
@@ -185788,6 +186734,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUN01
{
+ "id": 947,
"subnet": "134.40.72.0/24",
"option-data": [
{
@@ -185965,6 +186912,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LAA01
{
+ "id": 948,
"subnet": "134.40.74.0/24",
"option-data": [
{
@@ -186142,6 +187090,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LHG01
{
+ "id": 949,
"subnet": "134.40.76.0/24",
"option-data": [
{
@@ -186319,6 +187268,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NIE01
{
+ "id": 950,
"subnet": "134.40.78.0/24",
"option-data": [
{
@@ -186496,6 +187446,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HMG01
{
+ "id": 951,
"subnet": "134.40.80.0/24",
"option-data": [
{
@@ -186673,6 +187624,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WAL01
{
+ "id": 952,
"subnet": "134.40.82.0/24",
"option-data": [
{
@@ -186850,6 +187802,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEH01
{
+ "id": 953,
"subnet": "134.40.84.0/24",
"option-data": [
{
@@ -187027,6 +187980,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SCH01
{
+ "id": 954,
"subnet": "134.50.102.0/24",
"option-data": [
{
@@ -187204,6 +188158,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRA01
{
+ "id": 955,
"subnet": "134.50.104.0/22",
"option-data": [
{
@@ -187381,6 +188336,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# UEL01
{
+ "id": 956,
"subnet": "134.50.108.0/24",
"option-data": [
{
@@ -187558,6 +188514,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WFB01
{
+ "id": 957,
"subnet": "134.50.110.0/24",
"option-data": [
{
@@ -187735,6 +188692,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRA04
{
+ "id": 958,
"subnet": "134.50.14.0/24",
"option-data": [
{
@@ -187912,6 +188870,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRA06
{
+ "id": 959,
"subnet": "134.50.28.0/24",
"option-data": [
{
@@ -188089,6 +189048,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BHB01
{
+ "id": 960,
"subnet": "134.50.40.0/24",
"option-data": [
{
@@ -188266,6 +189226,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GIF01
{
+ "id": 961,
"subnet": "134.50.56.0/24",
"option-data": [
{
@@ -188443,6 +189404,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WOL04
{
+ "id": 962,
"subnet": "134.50.66.0/24",
"option-data": [
{
@@ -188620,6 +189582,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WOL04
{
+ "id": 963,
"subnet": "134.50.68.0/22",
"option-data": [
{
@@ -188797,6 +189760,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HEL01
{
+ "id": 964,
"subnet": "134.50.72.0/24",
"option-data": [
{
@@ -188974,6 +189938,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRA01
{
+ "id": 965,
"subnet": "134.50.94.0/24",
"option-data": [
{
@@ -189151,6 +190116,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PEI01
{
+ "id": 966,
"subnet": "134.50.96.0/24",
"option-data": [
{
@@ -189328,6 +190294,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGT01
{
+ "id": 967,
"subnet": "134.50.98.0/24",
"option-data": [
{
@@ -189505,6 +190472,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EIN01
{
+ "id": 968,
"subnet": "134.60.26.0/24",
"option-data": [
{
@@ -189682,6 +190650,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GOE01
{
+ "id": 969,
"subnet": "134.60.40.0/24",
"option-data": [
{
@@ -189859,6 +190828,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GOE02
{
+ "id": 970,
"subnet": "134.60.42.0/24",
"option-data": [
{
@@ -190036,6 +191006,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GOE01
{
+ "id": 971,
"subnet": "134.60.44.0/22",
"option-data": [
{
@@ -190213,6 +191184,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NTH01
{
+ "id": 972,
"subnet": "134.60.48.0/24",
"option-data": [
{
@@ -190390,6 +191362,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OST01
{
+ "id": 973,
"subnet": "134.60.60.0/24",
"option-data": [
{
@@ -190567,6 +191540,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOL01
{
+ "id": 974,
"subnet": "134.60.62.0/24",
"option-data": [
{
@@ -190744,6 +191718,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOL01
{
+ "id": 975,
"subnet": "134.60.64.0/22",
"option-data": [
{
@@ -190921,6 +191896,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HZG01
{
+ "id": 976,
"subnet": "134.60.68.0/24",
"option-data": [
{
@@ -191098,6 +192074,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HIL03
{
+ "id": 977,
"subnet": "134.70.18.0/24",
"option-data": [
{
@@ -191275,6 +192252,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GOS02
{
+ "id": 978,
"subnet": "134.70.36.0/24",
"option-data": [
{
@@ -191452,6 +192430,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HIL01
{
+ "id": 979,
"subnet": "134.70.38.0/24",
"option-data": [
{
@@ -191629,6 +192608,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GOS02
{
+ "id": 980,
"subnet": "134.70.40.0/22",
"option-data": [
{
@@ -191806,6 +192786,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HIL01
{
+ "id": 981,
"subnet": "134.70.44.0/22",
"option-data": [
{
@@ -191983,6 +192964,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SAR01
{
+ "id": 982,
"subnet": "134.70.48.0/24",
"option-data": [
{
@@ -192160,6 +193142,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ALF01
{
+ "id": 983,
"subnet": "134.70.50.0/24",
"option-data": [
{
@@ -192337,6 +193320,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAM05
{
+ "id": 984,
"subnet": "135.0.16.0/22",
"option-data": [
{
@@ -192514,6 +193498,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAM05
{
+ "id": 985,
"subnet": "135.0.60.0/22",
"option-data": [
{
@@ -192697,6 +193682,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAM05
{
+ "id": 986,
"subnet": "135.0.64.0/24",
"option-data": [
{
@@ -192874,6 +193860,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAM01
{
+ "id": 987,
"subnet": "135.0.68.0/24",
"option-data": [
{
@@ -193051,6 +194038,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAM01
{
+ "id": 988,
"subnet": "135.0.72.0/22",
"option-data": [
{
@@ -193228,6 +194216,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# IBB01
{
+ "id": 989,
"subnet": "135.100.14.0/24",
"option-data": [
{
@@ -193405,6 +194394,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OSN01
{
+ "id": 990,
"subnet": "135.100.48.0/24",
"option-data": [
{
@@ -193582,6 +194572,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VEC01
{
+ "id": 991,
"subnet": "135.100.50.0/24",
"option-data": [
{
@@ -193759,6 +194750,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OSN01
{
+ "id": 992,
"subnet": "135.100.52.0/22",
"option-data": [
{
@@ -193936,6 +194928,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VEC01
{
+ "id": 993,
"subnet": "135.100.56.0/22",
"option-data": [
{
@@ -194113,6 +195106,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OSN04
{
+ "id": 994,
"subnet": "135.100.60.0/22",
"option-data": [
{
@@ -194290,6 +195284,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VMD01
{
+ "id": 995,
"subnet": "135.100.64.0/24",
"option-data": [
{
@@ -194467,6 +195462,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DHZ01
{
+ "id": 996,
"subnet": "135.100.66.0/24",
"option-data": [
{
@@ -194644,6 +195640,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MPP01
{
+ "id": 997,
"subnet": "135.100.70.0/24",
"option-data": [
{
@@ -194821,6 +195818,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NOH01
{
+ "id": 998,
"subnet": "135.110.20.0/24",
"option-data": [
{
@@ -194998,6 +195996,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EMS01
{
+ "id": 999,
"subnet": "135.110.22.0/24",
"option-data": [
{
@@ -195175,6 +196174,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LIN01
{
+ "id": 1000,
"subnet": "135.110.24.0/24",
"option-data": [
{
@@ -195352,6 +196352,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# XAN01
{
+ "id": 1001,
"subnet": "135.120.26.0/24",
"option-data": [
{
@@ -195529,6 +196530,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOH01
{
+ "id": 1002,
"subnet": "135.120.60.0/24",
"option-data": [
{
@@ -195706,6 +196708,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLE01
{
+ "id": 1003,
"subnet": "135.120.62.0/24",
"option-data": [
{
@@ -195883,6 +196886,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EMM01
{
+ "id": 1004,
"subnet": "135.120.64.0/24",
"option-data": [
{
@@ -196060,6 +197064,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WES01
{
+ "id": 1005,
"subnet": "135.120.66.0/24",
"option-data": [
{
@@ -196237,6 +197242,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLE01
{
+ "id": 1006,
"subnet": "135.120.68.0/22",
"option-data": [
{
@@ -196414,6 +197420,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOH01
{
+ "id": 1007,
"subnet": "135.120.72.0/22",
"option-data": [
{
@@ -196591,6 +197598,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EMM01
{
+ "id": 1008,
"subnet": "135.120.76.0/22",
"option-data": [
{
@@ -196768,6 +197776,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WES01
{
+ "id": 1009,
"subnet": "135.120.80.0/22",
"option-data": [
{
@@ -196945,6 +197954,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOK01
{
+ "id": 1010,
"subnet": "135.120.84.0/24",
"option-data": [
{
@@ -197122,6 +198132,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GOC01
{
+ "id": 1011,
"subnet": "135.120.86.0/24",
"option-data": [
{
@@ -197299,6 +198310,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REE01
{
+ "id": 1012,
"subnet": "135.120.88.0/24",
"option-data": [
{
@@ -197476,6 +198488,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DIN01
{
+ "id": 1013,
"subnet": "135.120.90.0/24",
"option-data": [
{
@@ -197653,6 +198666,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RHE01
{
+ "id": 1014,
"subnet": "135.30.16.0/22",
"option-data": [
{
@@ -197830,6 +198844,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OLS01
{
+ "id": 1015,
"subnet": "135.40.44.0/24",
"option-data": [
{
@@ -198007,6 +199022,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LPP01
{
+ "id": 1016,
"subnet": "135.40.46.0/24",
"option-data": [
{
@@ -198184,6 +199200,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AHL01
{
+ "id": 1017,
"subnet": "135.40.48.0/24",
"option-data": [
{
@@ -198361,6 +199378,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAM01
{
+ "id": 1018,
"subnet": "135.40.50.0/24",
"option-data": [
{
@@ -198538,6 +199556,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OEL01
{
+ "id": 1019,
"subnet": "135.40.52.0/24",
"option-data": [
{
@@ -198715,6 +199734,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SOE01
{
+ "id": 1020,
"subnet": "135.40.54.0/24",
"option-data": [
{
@@ -198892,6 +199912,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ARN01
{
+ "id": 1021,
"subnet": "135.40.56.0/24",
"option-data": [
{
@@ -199069,6 +200090,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE12
{
+ "id": 1022,
"subnet": "135.50.152.0/22",
"option-data": [
{
@@ -199246,6 +200268,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BUB01
{
+ "id": 1023,
"subnet": "135.50.156.0/24",
"option-data": [
{
@@ -199423,6 +200446,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEM02
{
+ "id": 1024,
"subnet": "135.50.190.0/24",
"option-data": [
{
@@ -199600,6 +200624,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAD01
{
+ "id": 1025,
"subnet": "135.50.192.0/24",
"option-data": [
{
@@ -199777,6 +200802,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GUE01
{
+ "id": 1026,
"subnet": "135.50.194.0/24",
"option-data": [
{
@@ -199954,6 +200980,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HER01
{
+ "id": 1027,
"subnet": "135.50.196.0/24",
"option-data": [
{
@@ -200131,6 +201158,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HER02
{
+ "id": 1028,
"subnet": "135.50.198.0/24",
"option-data": [
{
@@ -200308,6 +201336,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE01
{
+ "id": 1029,
"subnet": "135.50.200.0/22",
"option-data": [
{
@@ -200485,6 +201514,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEM02
{
+ "id": 1030,
"subnet": "135.50.208.0/22",
"option-data": [
{
@@ -200662,6 +201692,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAD01
{
+ "id": 1031,
"subnet": "135.50.212.0/22",
"option-data": [
{
@@ -200839,6 +201870,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GUE01
{
+ "id": 1032,
"subnet": "135.50.216.0/22",
"option-data": [
{
@@ -201016,6 +202048,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HER01
{
+ "id": 1033,
"subnet": "135.50.220.0/22",
"option-data": [
{
@@ -201193,6 +202226,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUB01
{
+ "id": 1034,
"subnet": "135.50.224.0/24",
"option-data": [
{
@@ -201370,6 +202404,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MIN01
{
+ "id": 1035,
"subnet": "135.50.226.0/24",
"option-data": [
{
@@ -201547,6 +202582,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BUE01
{
+ "id": 1036,
"subnet": "135.50.228.0/24",
"option-data": [
{
@@ -201724,6 +202760,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE08
{
+ "id": 1037,
"subnet": "135.50.234.0/24",
"option-data": [
{
@@ -201901,6 +202938,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BDR01
{
+ "id": 1038,
"subnet": "135.50.236.0/24",
"option-data": [
{
@@ -202078,6 +203116,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOY01
{
+ "id": 1039,
"subnet": "135.50.238.0/24",
"option-data": [
{
@@ -202255,6 +203294,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE05
{
+ "id": 1040,
"subnet": "135.50.240.0/24",
"option-data": [
{
@@ -202415,6 +203455,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RHW01
{
+ "id": 1041,
"subnet": "135.50.242.0/24",
"option-data": [
{
@@ -202592,6 +203633,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BPY01
{
+ "id": 1042,
"subnet": "135.50.246.0/24",
"option-data": [
{
@@ -202769,6 +203811,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RIE01
{
+ "id": 1043,
"subnet": "135.50.248.0/24",
"option-data": [
{
@@ -202946,6 +203989,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STH01
{
+ "id": 1044,
"subnet": "135.50.252.0/24",
"option-data": [
{
@@ -203106,6 +204150,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BSU01
{
+ "id": 1045,
"subnet": "135.50.254.0/24",
"option-data": [
{
@@ -203283,6 +204328,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE01
{
+ "id": 1046,
"subnet": "135.50.58.0/24",
"option-data": [
{
@@ -203460,6 +204506,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE01
{
+ "id": 1047,
"subnet": "135.50.62.0/24",
"option-data": [
{
@@ -203637,6 +204684,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE12
{
+ "id": 1048,
"subnet": "135.50.80.0/24",
"option-data": [
{
@@ -203814,6 +204862,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DET01
{
+ "id": 1049,
"subnet": "135.51.2.0/24",
"option-data": [
{
@@ -203991,6 +205040,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE06
{
+ "id": 1050,
"subnet": "135.51.4.0/24",
"option-data": [
{
@@ -204151,6 +205201,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIE12
{
+ "id": 1051,
"subnet": "135.51.6.0/24",
"option-data": [
{
@@ -204328,6 +205379,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOC01
{
+ "id": 1052,
"subnet": "135.60.40.0/24",
"option-data": [
{
@@ -204505,6 +205557,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOC04
{
+ "id": 1053,
"subnet": "135.60.42.0/24",
"option-data": [
{
@@ -204682,6 +205735,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOC01
{
+ "id": 1054,
"subnet": "135.60.44.0/22",
"option-data": [
{
@@ -204859,6 +205913,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOC08
{
+ "id": 1055,
"subnet": "135.60.48.0/24",
"option-data": [
{
@@ -205036,6 +206091,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOC03
{
+ "id": 1056,
"subnet": "135.60.50.0/24",
"option-data": [
{
@@ -205213,6 +206269,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOC05
{
+ "id": 1057,
"subnet": "135.60.52.0/24",
"option-data": [
{
@@ -205390,6 +206447,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIT02
{
+ "id": 1058,
"subnet": "135.60.54.0/24",
"option-data": [
{
@@ -205567,6 +206625,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAG02
{
+ "id": 1059,
"subnet": "135.70.102.0/24",
"option-data": [
{
@@ -205744,6 +206803,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR19
{
+ "id": 1060,
"subnet": "135.70.104.0/22",
"option-data": [
{
@@ -205922,6 +206982,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR03
{
+ "id": 1061,
"subnet": "135.70.108.0/24",
"option-data": [
{
@@ -206099,6 +207160,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR01
{
+ "id": 1062,
"subnet": "135.70.112.0/24",
"option-data": [
{
@@ -206276,6 +207338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR01
{
+ "id": 1063,
"subnet": "135.70.114.0/24",
"option-data": [
{
@@ -206453,6 +207516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ISE02
{
+ "id": 1064,
"subnet": "135.70.144.0/24",
"option-data": [
{
@@ -206630,6 +207694,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR01
{
+ "id": 1065,
"subnet": "135.70.146.0/24",
"option-data": [
{
@@ -206807,6 +207872,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAG01
{
+ "id": 1066,
"subnet": "135.70.150.0/24",
"option-data": [
{
@@ -206984,6 +208050,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ISE02
{
+ "id": 1067,
"subnet": "135.70.152.0/22",
"option-data": [
{
@@ -207161,6 +208228,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR01
{
+ "id": 1068,
"subnet": "135.70.156.0/22",
"option-data": [
{
@@ -207338,6 +208406,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAG01
{
+ "id": 1069,
"subnet": "135.70.160.0/22",
"option-data": [
{
@@ -207515,6 +208584,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR08
{
+ "id": 1070,
"subnet": "135.70.164.0/24",
"option-data": [
{
@@ -207692,6 +208762,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR10
{
+ "id": 1071,
"subnet": "135.70.172.0/24",
"option-data": [
{
@@ -207869,6 +208940,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR12
{
+ "id": 1072,
"subnet": "135.70.174.0/24",
"option-data": [
{
@@ -208046,6 +209118,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR15
{
+ "id": 1073,
"subnet": "135.70.176.0/24",
"option-data": [
{
@@ -208223,6 +209296,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAG05
{
+ "id": 1074,
"subnet": "135.70.178.0/24",
"option-data": [
{
@@ -208400,6 +209474,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR18
{
+ "id": 1075,
"subnet": "135.70.180.0/24",
"option-data": [
{
@@ -208577,6 +209652,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MEN01
{
+ "id": 1076,
"subnet": "135.70.182.0/24",
"option-data": [
{
@@ -208754,6 +209830,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# UNA01
{
+ "id": 1077,
"subnet": "135.70.184.0/24",
"option-data": [
{
@@ -208931,6 +210008,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWE01
{
+ "id": 1078,
"subnet": "135.70.186.0/24",
"option-data": [
{
@@ -209108,6 +210186,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUN01
{
+ "id": 1079,
"subnet": "135.70.188.0/24",
"option-data": [
{
@@ -209285,6 +210364,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR19
{
+ "id": 1080,
"subnet": "135.70.196.0/22",
"option-data": [
{
@@ -209462,6 +210542,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR19
{
+ "id": 1081,
"subnet": "135.70.216.0/22",
"option-data": [
{
@@ -209639,6 +210720,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ISE01
{
+ "id": 1082,
"subnet": "135.70.28.0/24",
"option-data": [
{
@@ -209816,6 +210898,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DOR01
{
+ "id": 1083,
"subnet": "135.71.2.0/24",
"option-data": [
{
@@ -209993,6 +211076,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ALT01
{
+ "id": 1084,
"subnet": "135.80.44.0/24",
"option-data": [
{
@@ -210170,6 +211254,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LDS01
{
+ "id": 1085,
"subnet": "135.80.48.0/24",
"option-data": [
{
@@ -210347,6 +211432,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MES02
{
+ "id": 1086,
"subnet": "135.80.50.0/24",
"option-data": [
{
@@ -210524,6 +211610,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LDS01
{
+ "id": 1087,
"subnet": "135.80.52.0/22",
"option-data": [
{
@@ -210701,6 +211788,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MES02
{
+ "id": 1088,
"subnet": "135.80.56.0/22",
"option-data": [
{
@@ -210878,6 +211966,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WED01
{
+ "id": 1089,
"subnet": "135.80.60.0/24",
"option-data": [
{
@@ -211055,6 +212144,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PLE01
{
+ "id": 1090,
"subnet": "135.80.62.0/24",
"option-data": [
{
@@ -211232,6 +212322,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRD02
{
+ "id": 1091,
"subnet": "135.80.64.0/24",
"option-data": [
{
@@ -211409,6 +212500,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAV01
{
+ "id": 1092,
"subnet": "135.80.66.0/24",
"option-data": [
{
@@ -211586,6 +212678,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# COE01
{
+ "id": 1093,
"subnet": "135.90.32.0/24",
"option-data": [
{
@@ -211763,6 +212856,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MSR02
{
+ "id": 1094,
"subnet": "135.90.34.0/24",
"option-data": [
{
@@ -211940,6 +213034,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUM01
{
+ "id": 1095,
"subnet": "135.90.36.0/24",
"option-data": [
{
@@ -212117,6 +213212,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GRV01
{
+ "id": 1096,
"subnet": "135.90.38.0/24",
"option-data": [
{
@@ -212294,6 +213390,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MSR01
{
+ "id": 1097,
"subnet": "135.90.46.0/24",
"option-data": [
{
@@ -212471,6 +213568,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MSR01
{
+ "id": 1098,
"subnet": "135.90.48.0/22",
"option-data": [
{
@@ -212648,6 +213746,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF42
{
+ "id": 1099,
"subnet": "136.0.104.0/22",
"option-data": [
{
@@ -212825,6 +213924,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF42
{
+ "id": 1100,
"subnet": "136.0.192.0/22",
"option-data": [
{
@@ -213002,6 +214102,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF42
{
+ "id": 1101,
"subnet": "136.0.196.0/22",
"option-data": [
{
@@ -213179,6 +214280,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 1102,
"subnet": "136.0.56.0/24",
"option-data": [
{
@@ -213356,6 +214458,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 1103,
"subnet": "136.0.60.0/24",
"option-data": [
{
@@ -213539,6 +214642,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF40
{
+ "id": 1104,
"subnet": "136.0.62.0/24",
"option-data": [
{
@@ -213716,6 +214820,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 1105,
"subnet": "136.0.74.0/24",
"option-data": [
{
@@ -213893,6 +214998,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF42
{
+ "id": 1106,
"subnet": "136.0.94.0/24",
"option-data": [
{
@@ -214070,6 +215176,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF08
{
+ "id": 1107,
"subnet": "136.30.100.0/24",
"option-data": [
{
@@ -214247,6 +215354,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF06
{
+ "id": 1108,
"subnet": "136.30.108.0/24",
"option-data": [
{
@@ -214424,6 +215532,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF27
{
+ "id": 1109,
"subnet": "136.30.112.0/24",
"option-data": [
{
@@ -214601,6 +215710,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF32
{
+ "id": 1110,
"subnet": "136.30.122.0/24",
"option-data": [
{
@@ -214778,6 +215888,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF28
{
+ "id": 1111,
"subnet": "136.30.128.0/24",
"option-data": [
{
@@ -214955,6 +216066,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF11
{
+ "id": 1112,
"subnet": "136.30.134.0/24",
"option-data": [
{
@@ -215132,6 +216244,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LAF01
{
+ "id": 1113,
"subnet": "136.30.136.0/24",
"option-data": [
{
@@ -215309,6 +216422,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EKH01
{
+ "id": 1114,
"subnet": "136.30.138.0/24",
"option-data": [
{
@@ -215486,6 +216600,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF14
{
+ "id": 1115,
"subnet": "136.30.140.0/24",
"option-data": [
{
@@ -215663,6 +216778,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF40
{
+ "id": 1116,
"subnet": "136.30.148.0/22",
"option-data": [
{
@@ -215840,6 +216956,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF41
{
+ "id": 1117,
"subnet": "136.30.152.0/22",
"option-data": [
{
@@ -216017,6 +217134,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF33
{
+ "id": 1118,
"subnet": "136.30.156.0/24",
"option-data": [
{
@@ -216194,6 +217312,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF40
{
+ "id": 1119,
"subnet": "136.30.54.0/24",
"option-data": [
{
@@ -216371,6 +217490,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MTM01
{
+ "id": 1120,
"subnet": "136.30.64.0/24",
"option-data": [
{
@@ -216548,6 +217668,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF10
{
+ "id": 1121,
"subnet": "136.30.66.0/24",
"option-data": [
{
@@ -216725,6 +217846,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF41
{
+ "id": 1122,
"subnet": "136.30.72.0/24",
"option-data": [
{
@@ -216902,6 +218024,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF41
{
+ "id": 1123,
"subnet": "136.30.74.0/24",
"option-data": [
{
@@ -217079,6 +218202,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF18
{
+ "id": 1124,
"subnet": "136.30.94.0/24",
"option-data": [
{
@@ -217256,6 +218380,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RAT02
{
+ "id": 1125,
"subnet": "136.40.14.0/24",
"option-data": [
{
@@ -217433,6 +218558,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MEE01
{
+ "id": 1126,
"subnet": "136.40.16.0/24",
"option-data": [
{
@@ -217610,6 +218736,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AAC01
{
+ "id": 1127,
"subnet": "136.50.54.0/24",
"option-data": [
{
@@ -217787,6 +218914,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AAC01
{
+ "id": 1128,
"subnet": "136.50.56.0/22",
"option-data": [
{
@@ -217964,6 +219092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIM01
{
+ "id": 1129,
"subnet": "136.50.60.0/24",
"option-data": [
{
@@ -218141,6 +219270,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WSL01
{
+ "id": 1130,
"subnet": "136.50.62.0/24",
"option-data": [
{
@@ -218318,6 +219448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# JUE01
{
+ "id": 1131,
"subnet": "136.50.64.0/24",
"option-data": [
{
@@ -218495,6 +219626,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EWR01
{
+ "id": 1132,
"subnet": "136.50.66.0/24",
"option-data": [
{
@@ -218672,6 +219804,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STO01
{
+ "id": 1133,
"subnet": "136.50.68.0/24",
"option-data": [
{
@@ -218849,6 +219982,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HZR01
{
+ "id": 1134,
"subnet": "136.50.70.0/24",
"option-data": [
{
@@ -219026,6 +220160,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUE01
{
+ "id": 1135,
"subnet": "136.50.72.0/24",
"option-data": [
{
@@ -219203,6 +220338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MOR01
{
+ "id": 1136,
"subnet": "136.60.22.0/24",
"option-data": [
{
@@ -219380,6 +220516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KRE04
{
+ "id": 1137,
"subnet": "136.60.24.0/22",
"option-data": [
{
@@ -219557,6 +220694,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KRE02
{
+ "id": 1138,
"subnet": "136.60.28.0/24",
"option-data": [
{
@@ -219734,6 +220872,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NET01
{
+ "id": 1139,
"subnet": "136.70.26.0/24",
"option-data": [
{
@@ -219911,6 +221050,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MGL01
{
+ "id": 1140,
"subnet": "136.70.50.0/24",
"option-data": [
{
@@ -220088,6 +221228,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MGL01
{
+ "id": 1141,
"subnet": "136.70.52.0/22",
"option-data": [
{
@@ -220265,6 +221406,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GRE01
{
+ "id": 1142,
"subnet": "136.70.56.0/24",
"option-data": [
{
@@ -220442,6 +221584,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MGL06
{
+ "id": 1143,
"subnet": "136.70.58.0/24",
"option-data": [
{
@@ -220619,6 +221762,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KEP01
{
+ "id": 1144,
"subnet": "136.70.6.0/24",
"option-data": [
{
@@ -220796,6 +221940,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VIE01
{
+ "id": 1145,
"subnet": "136.70.60.0/24",
"option-data": [
{
@@ -220973,6 +222118,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EKZ01
{
+ "id": 1146,
"subnet": "136.70.62.0/24",
"option-data": [
{
@@ -221150,6 +222296,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF17
{
+ "id": 1147,
"subnet": "137.0.116.0/22",
"option-data": [
{
@@ -221327,6 +222474,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF02
{
+ "id": 1148,
"subnet": "137.0.60.0/22",
"option-data": [
{
@@ -221534,6 +222682,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF02
{
+ "id": 1149,
"subnet": "137.0.64.0/24",
"option-data": [
{
@@ -221715,6 +222864,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 1150,
"subnet": "137.0.76.0/23",
"option-data": [
{
@@ -221886,6 +223036,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF02
{
+ "id": 1151,
"subnet": "137.0.84.0/22",
"option-data": [
{
@@ -222063,6 +223214,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 1152,
"subnet": "137.0.90.0/24",
"option-data": [
{
@@ -222240,6 +223392,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF12
{
+ "id": 1153,
"subnet": "137.30.24.0/24",
"option-data": [
{
@@ -222417,6 +223570,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF07
{
+ "id": 1154,
"subnet": "137.30.40.0/24",
"option-data": [
{
@@ -222594,6 +223748,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF16
{
+ "id": 1155,
"subnet": "137.30.44.0/24",
"option-data": [
{
@@ -222771,6 +223926,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF21
{
+ "id": 1156,
"subnet": "137.30.46.0/24",
"option-data": [
{
@@ -222948,6 +224104,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF44
{
+ "id": 1157,
"subnet": "137.30.56.0/24",
"option-data": [
{
@@ -223125,6 +224282,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF21
{
+ "id": 1158,
"subnet": "137.30.6.0/24",
"option-data": [
{
@@ -223302,6 +224460,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HDN01
{
+ "id": 1159,
"subnet": "137.40.32.0/24",
"option-data": [
{
@@ -223479,6 +224638,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NES02
{
+ "id": 1160,
"subnet": "137.40.34.0/24",
"option-data": [
{
@@ -223656,6 +224816,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HDN01
{
+ "id": 1161,
"subnet": "137.40.36.0/22",
"option-data": [
{
@@ -223833,6 +224994,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RAT03
{
+ "id": 1162,
"subnet": "137.40.40.0/24",
"option-data": [
{
@@ -224010,6 +225172,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAA01
{
+ "id": 1163,
"subnet": "137.40.42.0/24",
"option-data": [
{
@@ -224187,6 +225350,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MEE02
{
+ "id": 1164,
"subnet": "137.40.44.0/24",
"option-data": [
{
@@ -224364,6 +225528,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HRN02
{
+ "id": 1165,
"subnet": "137.50.102.0/24",
"option-data": [
{
@@ -224541,6 +225706,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GEL01
{
+ "id": 1166,
"subnet": "137.50.104.0/22",
"option-data": [
{
@@ -224718,6 +225884,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MRL01
{
+ "id": 1167,
"subnet": "137.50.108.0/24",
"option-data": [
{
@@ -224895,6 +226062,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BTR01
{
+ "id": 1168,
"subnet": "137.50.110.0/24",
"option-data": [
{
@@ -225055,6 +226223,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DST01
{
+ "id": 1169,
"subnet": "137.50.112.0/24",
"option-data": [
{
@@ -225232,6 +226401,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HRN03
{
+ "id": 1170,
"subnet": "137.50.114.0/24",
"option-data": [
{
@@ -225409,6 +226579,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HRN01
{
+ "id": 1171,
"subnet": "137.50.116.0/24",
"option-data": [
{
@@ -225586,6 +226757,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REC01
{
+ "id": 1172,
"subnet": "137.50.118.0/24",
"option-data": [
{
@@ -225763,6 +226935,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAR01
{
+ "id": 1173,
"subnet": "137.50.120.0/24",
"option-data": [
{
@@ -225940,6 +227113,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GLA01
{
+ "id": 1174,
"subnet": "137.50.122.0/24",
"option-data": [
{
@@ -226117,6 +227291,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GEL06
{
+ "id": 1175,
"subnet": "137.50.124.0/24",
"option-data": [
{
@@ -226294,6 +227469,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GEL03
{
+ "id": 1176,
"subnet": "137.50.126.0/24",
"option-data": [
{
@@ -226471,6 +227647,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HET01
{
+ "id": 1177,
"subnet": "137.50.128.0/24",
"option-data": [
{
@@ -226648,6 +227825,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BTR01
{
+ "id": 1178,
"subnet": "137.50.132.0/24",
"option-data": [
{
@@ -226825,6 +228003,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GEL01
{
+ "id": 1179,
"subnet": "137.50.92.0/24",
"option-data": [
{
@@ -227002,6 +228181,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REC02
{
+ "id": 1180,
"subnet": "137.50.94.0/24",
"option-data": [
{
@@ -227179,6 +228359,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REC02
{
+ "id": 1181,
"subnet": "137.50.96.0/22",
"option-data": [
{
@@ -227356,6 +228537,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS18
{
+ "id": 1182,
"subnet": "138.0.108.0/22",
"option-data": [
{
@@ -227533,6 +228715,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS01
{
+ "id": 1183,
"subnet": "138.0.34.0/24",
"option-data": [
{
@@ -227720,6 +228903,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS01
{
+ "id": 1184,
"subnet": "138.0.48.0/22",
"option-data": [
{
@@ -227897,6 +229081,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS01
{
+ "id": 1185,
"subnet": "138.0.52.0/24",
"option-data": [
{
@@ -228074,6 +229259,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS05
{
+ "id": 1186,
"subnet": "138.30.100.0/24",
"option-data": [
{
@@ -228251,6 +229437,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS06
{
+ "id": 1187,
"subnet": "138.30.102.0/24",
"option-data": [
{
@@ -228428,6 +229615,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HEH01
{
+ "id": 1188,
"subnet": "138.30.104.0/24",
"option-data": [
{
@@ -228605,6 +229793,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS16
{
+ "id": 1189,
"subnet": "138.30.106.0/24",
"option-data": [
{
@@ -228782,6 +229971,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS02
{
+ "id": 1190,
"subnet": "138.30.108.0/24",
"option-data": [
{
@@ -228959,6 +230149,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS04
{
+ "id": 1191,
"subnet": "138.30.110.0/24",
"option-data": [
{
@@ -229136,6 +230327,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VBT01
{
+ "id": 1192,
"subnet": "138.30.112.0/24",
"option-data": [
{
@@ -229313,6 +230505,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUH02
{
+ "id": 1193,
"subnet": "138.30.114.0/24",
"option-data": [
{
@@ -229490,6 +230683,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OBH01
{
+ "id": 1194,
"subnet": "138.30.116.0/24",
"option-data": [
{
@@ -229667,6 +230861,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VBT02
{
+ "id": 1195,
"subnet": "138.30.118.0/24",
"option-data": [
{
@@ -229844,6 +231039,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS05
{
+ "id": 1196,
"subnet": "138.30.120.0/24",
"option-data": [
{
@@ -230021,6 +231217,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS23
{
+ "id": 1197,
"subnet": "138.30.128.0/24",
"option-data": [
{
@@ -230198,6 +231395,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS08
{
+ "id": 1198,
"subnet": "138.30.136.0/24",
"option-data": [
{
@@ -230375,6 +231573,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS13
{
+ "id": 1199,
"subnet": "138.30.6.0/24",
"option-data": [
{
@@ -230552,6 +231751,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OBH02
{
+ "id": 1200,
"subnet": "138.30.88.0/24",
"option-data": [
{
@@ -230729,6 +231929,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUH01
{
+ "id": 1201,
"subnet": "138.30.90.0/24",
"option-data": [
{
@@ -230906,6 +232107,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OBH02
{
+ "id": 1202,
"subnet": "138.30.92.0/22",
"option-data": [
{
@@ -231083,6 +232285,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS12
{
+ "id": 1203,
"subnet": "138.30.96.0/22",
"option-data": [
{
@@ -231260,6 +232463,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUI04
{
+ "id": 1204,
"subnet": "138.40.36.0/24",
"option-data": [
{
@@ -231437,6 +232641,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUI11
{
+ "id": 1205,
"subnet": "138.40.38.0/24",
"option-data": [
{
@@ -231614,6 +232819,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUI08
{
+ "id": 1206,
"subnet": "138.40.44.0/24",
"option-data": [
{
@@ -231791,6 +232997,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUI01
{
+ "id": 1207,
"subnet": "138.40.52.0/24",
"option-data": [
{
@@ -231968,6 +233175,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUI01
{
+ "id": 1208,
"subnet": "138.40.56.0/22",
"option-data": [
{
@@ -232145,6 +233353,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUI07
{
+ "id": 1209,
"subnet": "138.40.60.0/22",
"option-data": [
{
@@ -232322,6 +233531,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DUI06
{
+ "id": 1210,
"subnet": "138.40.64.0/24",
"option-data": [
{
@@ -232499,6 +233709,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIP01
{
+ "id": 1211,
"subnet": "138.50.124.0/24",
"option-data": [
{
@@ -232676,6 +233887,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WER01
{
+ "id": 1212,
"subnet": "138.50.142.0/24",
"option-data": [
{
@@ -232853,6 +234065,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP01
{
+ "id": 1213,
"subnet": "138.50.144.0/22",
"option-data": [
{
@@ -233030,6 +234243,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GEV01
{
+ "id": 1214,
"subnet": "138.50.162.0/24",
"option-data": [
{
@@ -233207,6 +234421,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REM05
{
+ "id": 1215,
"subnet": "138.50.164.0/24",
"option-data": [
{
@@ -233384,6 +234599,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SOL03
{
+ "id": 1216,
"subnet": "138.50.166.0/24",
"option-data": [
{
@@ -233561,6 +234777,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REM05
{
+ "id": 1217,
"subnet": "138.50.168.0/22",
"option-data": [
{
@@ -233738,6 +234955,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SOL03
{
+ "id": 1218,
"subnet": "138.50.172.0/22",
"option-data": [
{
@@ -233915,6 +235133,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GEV01
{
+ "id": 1219,
"subnet": "138.50.176.0/22",
"option-data": [
{
@@ -234092,6 +235311,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP05
{
+ "id": 1220,
"subnet": "138.50.180.0/24",
"option-data": [
{
@@ -234269,6 +235489,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP06
{
+ "id": 1221,
"subnet": "138.50.182.0/24",
"option-data": [
{
@@ -234446,6 +235667,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SOL02
{
+ "id": 1222,
"subnet": "138.50.184.0/24",
"option-data": [
{
@@ -234623,6 +235845,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP07
{
+ "id": 1223,
"subnet": "138.50.186.0/24",
"option-data": [
{
@@ -234800,6 +236023,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP10
{
+ "id": 1224,
"subnet": "138.50.188.0/24",
"option-data": [
{
@@ -234977,6 +236201,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SPH01
{
+ "id": 1225,
"subnet": "138.50.190.0/24",
"option-data": [
{
@@ -235154,6 +236379,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWL01
{
+ "id": 1226,
"subnet": "138.50.192.0/24",
"option-data": [
{
@@ -235331,6 +236557,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RDV01
{
+ "id": 1227,
"subnet": "138.50.194.0/24",
"option-data": [
{
@@ -235508,6 +236735,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REM06
{
+ "id": 1228,
"subnet": "138.50.196.0/24",
"option-data": [
{
@@ -235685,6 +236913,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REM04
{
+ "id": 1229,
"subnet": "138.50.198.0/24",
"option-data": [
{
@@ -235862,6 +237091,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ENN01
{
+ "id": 1230,
"subnet": "138.50.200.0/24",
"option-data": [
{
@@ -236039,6 +237269,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SOL05
{
+ "id": 1231,
"subnet": "138.50.202.0/24",
"option-data": [
{
@@ -236216,6 +237447,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP07
{
+ "id": 1232,
"subnet": "138.50.206.0/24",
"option-data": [
{
@@ -236393,6 +237625,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP01
{
+ "id": 1233,
"subnet": "138.50.208.0/24",
"option-data": [
{
@@ -236570,6 +237803,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP03
{
+ "id": 1234,
"subnet": "138.50.52.0/24",
"option-data": [
{
@@ -236747,6 +237981,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HAA01
{
+ "id": 1235,
"subnet": "138.50.74.0/24",
"option-data": [
{
@@ -236924,6 +238159,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP01
{
+ "id": 1236,
"subnet": "138.50.92.0/24",
"option-data": [
{
@@ -237101,6 +238337,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP01
{
+ "id": 1237,
"subnet": "138.50.94.0/24",
"option-data": [
{
@@ -237278,6 +238515,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUP01
{
+ "id": 1238,
"subnet": "138.50.96.0/24",
"option-data": [
{
@@ -237455,6 +238693,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WAB01
{
+ "id": 1239,
"subnet": "138.52.102.0/24",
"option-data": [
{
@@ -237632,6 +238871,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIE02
{
+ "id": 1240,
"subnet": "138.52.104.0/24",
"option-data": [
{
@@ -237809,6 +239049,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIE03
{
+ "id": 1241,
"subnet": "138.52.106.0/24",
"option-data": [
{
@@ -237986,6 +239227,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BNS01
{
+ "id": 1242,
"subnet": "138.52.108.0/24",
"option-data": [
{
@@ -238163,6 +239405,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEN01
{
+ "id": 1243,
"subnet": "138.52.110.0/24",
"option-data": [
{
@@ -238340,6 +239583,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIE04
{
+ "id": 1244,
"subnet": "138.52.112.0/24",
"option-data": [
{
@@ -238517,6 +239761,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KZT01
{
+ "id": 1245,
"subnet": "138.52.114.0/24",
"option-data": [
{
@@ -238694,6 +239939,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIH01
{
+ "id": 1246,
"subnet": "138.52.116.0/24",
"option-data": [
{
@@ -238871,6 +240117,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GUM01
{
+ "id": 1247,
"subnet": "138.52.82.0/24",
"option-data": [
{
@@ -239048,6 +240295,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIE01
{
+ "id": 1248,
"subnet": "138.52.84.0/24",
"option-data": [
{
@@ -239225,6 +240473,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OLP01
{
+ "id": 1249,
"subnet": "138.52.86.0/24",
"option-data": [
{
@@ -239402,6 +240651,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIE01
{
+ "id": 1250,
"subnet": "138.52.88.0/22",
"option-data": [
{
@@ -239579,6 +240829,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GUM01
{
+ "id": 1251,
"subnet": "138.52.92.0/22",
"option-data": [
{
@@ -239756,6 +241007,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIS01
{
+ "id": 1252,
"subnet": "138.52.96.0/24",
"option-data": [
{
@@ -239933,6 +241185,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ATT02
{
+ "id": 1253,
"subnet": "138.52.98.0/24",
"option-data": [
{
@@ -240110,6 +241363,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS20
{
+ "id": 1254,
"subnet": "138.70.20.0/24",
"option-data": [
{
@@ -240287,6 +241541,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS20
{
+ "id": 1255,
"subnet": "138.70.22.0/23",
"option-data": [
{
@@ -240458,6 +241713,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESS20
{
+ "id": 1256,
"subnet": "138.70.32.0/22",
"option-data": [
{
@@ -240635,6 +241891,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE02
{
+ "id": 1257,
"subnet": "139.0.36.0/22",
"option-data": [
{
@@ -240816,6 +242073,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE02
{
+ "id": 1258,
"subnet": "139.0.62.0/23",
"option-data": [
{
@@ -240993,6 +242251,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE02
{
+ "id": 1259,
"subnet": "139.0.64.0/24",
"option-data": [
{
@@ -241170,6 +242429,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE02
{
+ "id": 1260,
"subnet": "139.0.68.0/24",
"option-data": [
{
@@ -241347,6 +242607,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE02
{
+ "id": 1261,
"subnet": "139.0.70.0/24",
"option-data": [
{
@@ -241524,6 +242785,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE12
{
+ "id": 1262,
"subnet": "139.30.100.0/24",
"option-data": [
{
@@ -241701,6 +242963,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE09
{
+ "id": 1263,
"subnet": "139.30.80.0/24",
"option-data": [
{
@@ -241878,6 +243141,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DMG01
{
+ "id": 1264,
"subnet": "139.30.82.0/24",
"option-data": [
{
@@ -242055,6 +243319,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE16
{
+ "id": 1265,
"subnet": "139.30.84.0/24",
"option-data": [
{
@@ -242232,6 +243497,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE04
{
+ "id": 1266,
"subnet": "139.30.86.0/24",
"option-data": [
{
@@ -242409,6 +243675,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE17
{
+ "id": 1267,
"subnet": "139.30.88.0/24",
"option-data": [
{
@@ -242586,6 +243853,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE15
{
+ "id": 1268,
"subnet": "139.30.90.0/24",
"option-data": [
{
@@ -242763,6 +244031,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE14
{
+ "id": 1269,
"subnet": "139.30.92.0/24",
"option-data": [
{
@@ -242940,6 +244209,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE13
{
+ "id": 1270,
"subnet": "139.30.94.0/24",
"option-data": [
{
@@ -243117,6 +244387,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE08
{
+ "id": 1271,
"subnet": "139.30.96.0/24",
"option-data": [
{
@@ -243294,6 +244565,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOE03
{
+ "id": 1272,
"subnet": "139.30.98.0/24",
"option-data": [
{
@@ -243471,6 +244743,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEV02
{
+ "id": 1273,
"subnet": "139.40.32.0/24",
"option-data": [
{
@@ -243648,6 +244921,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BGL01
{
+ "id": 1274,
"subnet": "139.40.54.0/24",
"option-data": [
{
@@ -243825,6 +245099,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BRL02
{
+ "id": 1275,
"subnet": "139.40.56.0/24",
"option-data": [
{
@@ -244002,6 +245277,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRN01
{
+ "id": 1276,
"subnet": "139.40.58.0/24",
"option-data": [
{
@@ -244179,6 +245455,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BGH01
{
+ "id": 1277,
"subnet": "139.40.60.0/24",
"option-data": [
{
@@ -244356,6 +245633,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEC01
{
+ "id": 1278,
"subnet": "139.40.62.0/24",
"option-data": [
{
@@ -244533,6 +245811,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEV01
{
+ "id": 1279,
"subnet": "139.40.64.0/24",
"option-data": [
{
@@ -244710,6 +245989,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PUH01
{
+ "id": 1280,
"subnet": "139.40.66.0/24",
"option-data": [
{
@@ -244891,6 +246171,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOB01
{
+ "id": 1281,
"subnet": "139.50.114.0/24",
"option-data": [
{
@@ -245068,6 +246349,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOB01
{
+ "id": 1282,
"subnet": "139.50.116.0/22",
"option-data": [
{
@@ -245245,6 +246527,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BNN01
{
+ "id": 1283,
"subnet": "139.50.120.0/22",
"option-data": [
{
@@ -245422,6 +246705,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BHO01
{
+ "id": 1284,
"subnet": "139.50.126.0/24",
"option-data": [
{
@@ -245599,6 +246883,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TRO01
{
+ "id": 1285,
"subnet": "139.50.128.0/24",
"option-data": [
{
@@ -245776,6 +247061,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BNN07
{
+ "id": 1286,
"subnet": "139.50.130.0/24",
"option-data": [
{
@@ -245953,6 +247239,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BNE01
{
+ "id": 1287,
"subnet": "139.50.132.0/24",
"option-data": [
{
@@ -246130,6 +247417,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BNN05
{
+ "id": 1288,
"subnet": "139.50.134.0/24",
"option-data": [
{
@@ -246307,6 +247595,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BNN04
{
+ "id": 1289,
"subnet": "139.50.136.0/24",
"option-data": [
{
@@ -246484,6 +247773,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BNN03
{
+ "id": 1290,
"subnet": "139.50.138.0/24",
"option-data": [
{
@@ -246661,6 +247951,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGB01
{
+ "id": 1291,
"subnet": "139.50.140.0/24",
"option-data": [
{
@@ -246838,6 +248129,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAY01
{
+ "id": 1292,
"subnet": "139.50.142.0/24",
"option-data": [
{
@@ -247015,6 +248307,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EUS01
{
+ "id": 1293,
"subnet": "139.50.144.0/24",
"option-data": [
{
@@ -247192,6 +248485,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AND01
{
+ "id": 1294,
"subnet": "139.50.146.0/24",
"option-data": [
{
@@ -247369,6 +248663,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HEN01
{
+ "id": 1295,
"subnet": "139.50.148.0/24",
"option-data": [
{
@@ -247546,6 +248841,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NEU01
{
+ "id": 1296,
"subnet": "139.50.150.0/24",
"option-data": [
{
@@ -247723,6 +249019,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BNN06
{
+ "id": 1297,
"subnet": "139.50.42.0/24",
"option-data": [
{
@@ -247900,6 +249197,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1298,
"subnet": "140.100.128.0/24",
"option-data": [
{
@@ -248077,6 +249375,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1299,
"subnet": "140.101.41.0/24",
"option-data": [
{
@@ -248254,6 +249553,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1300,
"subnet": "140.101.89.0/24",
"option-data": [
{
@@ -248326,6 +249626,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1301,
"subnet": "140.11.200.0/27",
"option-data": [
{
@@ -248492,6 +249793,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1302,
"subnet": "140.11.202.0/26",
"option-data": [
{
@@ -248651,6 +249953,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1303,
"subnet": "140.11.203.64/26",
"option-data": [
{
@@ -248789,6 +250092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1304,
"subnet": "140.11.235.0/24",
"option-data": [
{
@@ -248966,6 +250270,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1305,
"subnet": "140.11.48.0/22",
"option-data": [
{
@@ -249143,6 +250448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1306,
"subnet": "140.11.52.0/22",
"option-data": [
{
@@ -249320,6 +250626,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1307,
"subnet": "140.118.11.0/24",
"option-data": [
{
@@ -249497,6 +250804,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1308,
"subnet": "140.118.12.0/24",
"option-data": [
{
@@ -249657,6 +250965,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1309,
"subnet": "140.118.14.0/24",
"option-data": [
{
@@ -249817,6 +251126,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1310,
"subnet": "140.118.15.0/24",
"option-data": [
{
@@ -249977,6 +251287,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1311,
"subnet": "140.118.16.0/24",
"option-data": [
{
@@ -250137,6 +251448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1312,
"subnet": "140.118.17.0/24",
"option-data": [
{
@@ -250297,6 +251609,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1313,
"subnet": "140.118.18.0/24",
"option-data": [
{
@@ -250457,6 +251770,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1314,
"subnet": "140.118.19.0/24",
"option-data": [
{
@@ -250617,6 +251931,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1315,
"subnet": "140.118.20.0/24",
"option-data": [
{
@@ -250777,6 +252092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1316,
"subnet": "140.118.21.0/24",
"option-data": [
{
@@ -250937,6 +252253,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1317,
"subnet": "140.118.22.0/24",
"option-data": [
{
@@ -251114,6 +252431,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1318,
"subnet": "140.118.23.0/24",
"option-data": [
{
@@ -251274,6 +252592,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1319,
"subnet": "140.118.24.0/24",
"option-data": [
{
@@ -251434,6 +252753,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM18
{
+ "id": 1320,
"subnet": "140.118.25.0/24",
"option-data": [
{
@@ -251594,6 +252914,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1321,
"subnet": "140.13.108.0/24",
"option-data": [
{
@@ -251755,6 +253076,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1322,
"subnet": "140.13.109.0/24",
"option-data": [
{
@@ -251916,6 +253238,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1323,
"subnet": "140.13.177.0/24",
"option-data": [
{
@@ -252093,6 +253416,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1324,
"subnet": "140.13.24.0/22",
"option-data": [
{
@@ -252270,6 +253594,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1325,
"subnet": "140.13.36.0/24",
"option-data": [
{
@@ -252430,6 +253755,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1326,
"subnet": "140.13.62.0/24",
"option-data": [
{
@@ -252590,6 +253916,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1327,
"subnet": "140.14.128.0/24",
"option-data": [
{
@@ -252767,6 +254094,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1328,
"subnet": "140.14.129.0/24",
"option-data": [
{
@@ -252944,6 +254272,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1329,
"subnet": "140.14.130.0/24",
"option-data": [
{
@@ -253121,6 +254450,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1330,
"subnet": "140.14.131.0/24",
"option-data": [
{
@@ -253298,6 +254628,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1331,
"subnet": "140.14.152.0/24",
"option-data": [
{
@@ -253475,6 +254806,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1332,
"subnet": "140.14.153.0/24",
"option-data": [
{
@@ -253652,6 +254984,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1333,
"subnet": "140.14.156.0/22",
"option-data": [
{
@@ -253839,6 +255172,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1334,
"subnet": "140.14.168.0/24",
"option-data": [
{
@@ -254016,6 +255350,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1335,
"subnet": "140.14.176.0/24",
"option-data": [
{
@@ -254193,6 +255528,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1336,
"subnet": "140.14.177.0/24",
"option-data": [
{
@@ -254370,6 +255706,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1337,
"subnet": "140.14.184.0/24",
"option-data": [
{
@@ -254547,6 +255884,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1338,
"subnet": "140.14.204.0/24",
"option-data": [
{
@@ -254724,6 +256062,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1339,
"subnet": "140.14.205.0/24",
"option-data": [
{
@@ -254901,6 +256240,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1340,
"subnet": "140.14.206.0/24",
"option-data": [
{
@@ -255078,6 +256418,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1341,
"subnet": "140.14.207.0/24",
"option-data": [
{
@@ -255255,6 +256596,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1342,
"subnet": "140.14.208.0/24",
"option-data": [
{
@@ -255432,6 +256774,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1343,
"subnet": "140.14.209.0/24",
"option-data": [
{
@@ -255609,6 +256952,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1344,
"subnet": "140.14.210.0/24",
"option-data": [
{
@@ -255790,6 +257134,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1345,
"subnet": "140.14.220.0/22",
"option-data": [
{
@@ -255967,6 +257312,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1346,
"subnet": "140.14.225.0/24",
"option-data": [
{
@@ -256144,6 +257490,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1347,
"subnet": "140.14.226.0/24",
"option-data": [
{
@@ -256321,6 +257668,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1348,
"subnet": "140.14.227.0/24",
"option-data": [
{
@@ -256498,6 +257846,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1349,
"subnet": "140.14.228.0/24",
"option-data": [
{
@@ -256675,6 +258024,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1350,
"subnet": "140.14.229.0/24",
"option-data": [
{
@@ -256852,6 +258202,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1351,
"subnet": "140.14.230.0/24",
"option-data": [
{
@@ -257029,6 +258380,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1352,
"subnet": "140.14.231.0/24",
"option-data": [
{
@@ -257206,6 +258558,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1353,
"subnet": "140.14.232.0/24",
"option-data": [
{
@@ -257383,6 +258736,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1354,
"subnet": "140.14.233.0/24",
"option-data": [
{
@@ -257560,6 +258914,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1355,
"subnet": "140.14.234.0/24",
"option-data": [
{
@@ -257737,6 +259092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1356,
"subnet": "140.14.235.0/24",
"option-data": [
{
@@ -257914,6 +259270,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1357,
"subnet": "140.14.236.0/24",
"option-data": [
{
@@ -258091,6 +259448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1358,
"subnet": "140.14.237.0/24",
"option-data": [
{
@@ -258268,6 +259626,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1359,
"subnet": "140.14.238.0/24",
"option-data": [
{
@@ -258445,6 +259804,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1360,
"subnet": "140.14.240.0/24",
"option-data": [
{
@@ -258622,6 +259982,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1361,
"subnet": "140.14.241.0/24",
"option-data": [
{
@@ -258799,6 +260160,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1362,
"subnet": "140.14.242.0/24",
"option-data": [
{
@@ -258976,6 +260338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1363,
"subnet": "140.15.100.0/22",
"option-data": [
{
@@ -259153,6 +260516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1364,
"subnet": "140.15.104.0/22",
"option-data": [
{
@@ -259225,6 +260589,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1365,
"subnet": "140.15.108.0/22",
"option-data": [
{
@@ -259297,6 +260662,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1366,
"subnet": "140.15.112.0/22",
"option-data": [
{
@@ -259474,6 +260840,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1367,
"subnet": "140.15.12.0/22",
"option-data": [
{
@@ -259651,6 +261018,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1368,
"subnet": "140.15.136.0/22",
"option-data": [
{
@@ -259828,6 +261196,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1369,
"subnet": "140.15.140.0/22",
"option-data": [
{
@@ -260005,6 +261374,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1370,
"subnet": "140.15.144.0/22",
"option-data": [
{
@@ -260182,6 +261552,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1371,
"subnet": "140.15.16.0/22",
"option-data": [
{
@@ -260359,6 +261730,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1372,
"subnet": "140.15.164.0/22",
"option-data": [
{
@@ -260536,6 +261908,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1373,
"subnet": "140.15.168.0/22",
"option-data": [
{
@@ -260713,6 +262086,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1374,
"subnet": "140.15.176.0/24",
"option-data": [
{
@@ -260873,6 +262247,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1375,
"subnet": "140.15.20.0/22",
"option-data": [
{
@@ -261050,6 +262425,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1376,
"subnet": "140.15.210.0/24",
"option-data": [
{
@@ -261227,6 +262603,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1377,
"subnet": "140.15.231.0/24",
"option-data": [
{
@@ -261404,6 +262781,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1378,
"subnet": "140.15.232.0/24",
"option-data": [
{
@@ -261581,6 +262959,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1379,
"subnet": "140.15.24.0/22",
"option-data": [
{
@@ -261758,6 +263137,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1380,
"subnet": "140.15.251.0/24",
"option-data": [
{
@@ -261935,6 +263315,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1381,
"subnet": "140.15.28.0/22",
"option-data": [
{
@@ -262113,6 +263494,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1382,
"subnet": "140.15.36.0/22",
"option-data": [
{
@@ -262290,6 +263672,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1383,
"subnet": "140.15.4.0/22",
"option-data": [
{
@@ -262471,6 +263854,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1384,
"subnet": "140.15.44.0/22",
"option-data": [
{
@@ -262648,6 +264032,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1385,
"subnet": "140.15.48.0/22",
"option-data": [
{
@@ -262825,6 +264210,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1386,
"subnet": "140.15.52.0/22",
"option-data": [
{
@@ -263003,6 +264389,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1387,
"subnet": "140.15.56.0/22",
"option-data": [
{
@@ -263180,6 +264567,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1388,
"subnet": "140.15.60.0/22",
"option-data": [
{
@@ -263357,6 +264745,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1389,
"subnet": "140.15.64.0/22",
"option-data": [
{
@@ -263546,6 +264935,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1390,
"subnet": "140.15.68.0/22",
"option-data": [
{
@@ -263741,6 +265131,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1391,
"subnet": "140.15.72.0/22",
"option-data": [
{
@@ -263918,6 +265309,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1392,
"subnet": "140.15.76.0/22",
"option-data": [
{
@@ -264095,6 +265487,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1393,
"subnet": "140.15.8.0/22",
"option-data": [
{
@@ -264290,6 +265683,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1394,
"subnet": "140.15.96.0/22",
"option-data": [
{
@@ -264471,6 +265865,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1395,
"subnet": "140.150.191.0/24",
"option-data": [
{
@@ -264648,6 +266043,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 1396,
"subnet": "140.152.31.0/24",
"option-data": [
{
@@ -264825,6 +266221,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 1397,
"subnet": "140.152.59.0/24",
"option-data": [
{
@@ -264996,6 +266393,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 1398,
"subnet": "140.152.60.0/24",
"option-data": [
{
@@ -265173,6 +266571,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 1399,
"subnet": "140.152.63.0/24",
"option-data": [
{
@@ -265350,6 +266749,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 1400,
"subnet": "140.152.72.0/22",
"option-data": [
{
@@ -265527,6 +266927,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1401,
"subnet": "140.153.1.0/24",
"option-data": [
{
@@ -265704,6 +267105,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1402,
"subnet": "140.153.10.0/24",
"option-data": [
{
@@ -265881,6 +267283,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1403,
"subnet": "140.153.100.0/24",
"option-data": [
{
@@ -266058,6 +267461,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1404,
"subnet": "140.153.11.0/24",
"option-data": [
{
@@ -266235,6 +267639,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1405,
"subnet": "140.153.12.0/24",
"option-data": [
{
@@ -266412,6 +267817,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1406,
"subnet": "140.153.13.0/24",
"option-data": [
{
@@ -266589,6 +267995,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1407,
"subnet": "140.153.14.0/24",
"option-data": [
{
@@ -266766,6 +268173,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1408,
"subnet": "140.153.19.0/24",
"option-data": [
{
@@ -266943,6 +268351,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1409,
"subnet": "140.153.2.0/24",
"option-data": [
{
@@ -267120,6 +268529,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1410,
"subnet": "140.153.3.0/24",
"option-data": [
{
@@ -267297,6 +268707,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1411,
"subnet": "140.153.32.0/22",
"option-data": [
{
@@ -267474,6 +268885,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1412,
"subnet": "140.153.36.0/22",
"option-data": [
{
@@ -267651,6 +269063,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1413,
"subnet": "140.153.4.0/24",
"option-data": [
{
@@ -267828,6 +269241,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1414,
"subnet": "140.153.40.0/22",
"option-data": [
{
@@ -268005,6 +269419,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1415,
"subnet": "140.153.44.0/22",
"option-data": [
{
@@ -268182,6 +269597,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1416,
"subnet": "140.153.48.0/22",
"option-data": [
{
@@ -268359,6 +269775,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1417,
"subnet": "140.153.5.0/24",
"option-data": [
{
@@ -268536,6 +269953,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1418,
"subnet": "140.153.52.0/22",
"option-data": [
{
@@ -268713,6 +270131,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1419,
"subnet": "140.153.56.0/22",
"option-data": [
{
@@ -268890,6 +270309,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1420,
"subnet": "140.153.6.0/24",
"option-data": [
{
@@ -269067,6 +270487,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1421,
"subnet": "140.153.60.0/22",
"option-data": [
{
@@ -269244,6 +270665,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1422,
"subnet": "140.153.64.0/22",
"option-data": [
{
@@ -269421,6 +270843,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1423,
"subnet": "140.153.68.0/22",
"option-data": [
{
@@ -269598,6 +271021,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1424,
"subnet": "140.153.7.0/24",
"option-data": [
{
@@ -269775,6 +271199,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1425,
"subnet": "140.153.72.0/22",
"option-data": [
{
@@ -269952,6 +271377,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1426,
"subnet": "140.153.76.0/22",
"option-data": [
{
@@ -270129,6 +271555,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1427,
"subnet": "140.153.8.0/24",
"option-data": [
{
@@ -270306,6 +271733,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1428,
"subnet": "140.153.80.0/22",
"option-data": [
{
@@ -270483,6 +271911,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1429,
"subnet": "140.153.84.0/22",
"option-data": [
{
@@ -270660,6 +272089,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1430,
"subnet": "140.153.9.0/24",
"option-data": [
{
@@ -270837,6 +272267,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1431,
"subnet": "140.153.92.0/22",
"option-data": [
{
@@ -271014,6 +272445,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM56
{
+ "id": 1432,
"subnet": "140.153.96.0/24",
"option-data": [
{
@@ -271193,6 +272625,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM21
{
+ "id": 1433,
"subnet": "140.155.52.0/24",
"option-data": [
{
@@ -271370,6 +272803,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM24
{
+ "id": 1434,
"subnet": "140.156.108.0/22",
"option-data": [
{
@@ -271547,6 +272981,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM24
{
+ "id": 1435,
"subnet": "140.156.60.0/24",
"option-data": [
{
@@ -271724,6 +273159,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM24
{
+ "id": 1436,
"subnet": "140.156.72.0/22",
"option-data": [
{
@@ -271925,6 +273361,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1437,
"subnet": "140.16.135.0/24",
"option-data": [
{
@@ -272102,6 +273539,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1438,
"subnet": "140.16.200.0/22",
"option-data": [
{
@@ -272279,6 +273717,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 1439,
"subnet": "140.169.12.0/22",
"option-data": [
{
@@ -272439,6 +273878,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 1440,
"subnet": "140.169.16.0/22",
"option-data": [
{
@@ -272599,6 +274039,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 1441,
"subnet": "140.169.51.0/24",
"option-data": [
{
@@ -272759,6 +274200,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM03
{
+ "id": 1442,
"subnet": "140.169.8.0/22",
"option-data": [
{
@@ -272919,6 +274361,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM90
{
+ "id": 1443,
"subnet": "140.177.36.0/24",
"option-data": [
{
@@ -273096,6 +274539,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LNG03
{
+ "id": 1444,
"subnet": "140.199.220.0/22",
"option-data": [
{
@@ -273274,6 +274718,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LNG03
{
+ "id": 1445,
"subnet": "140.199.224.0/22",
"option-data": [
{
@@ -273434,6 +274879,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1446,
"subnet": "140.201.132.0/22",
"option-data": [
{
@@ -273611,6 +275057,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1447,
"subnet": "140.201.136.0/22",
"option-data": [
{
@@ -273788,6 +275235,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1448,
"subnet": "140.201.140.0/22",
"option-data": [
{
@@ -273965,6 +275413,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1449,
"subnet": "140.201.164.0/22",
"option-data": [
{
@@ -274146,6 +275595,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1450,
"subnet": "140.202.140.0/22",
"option-data": [
{
@@ -274323,6 +275773,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1451,
"subnet": "140.202.164.0/22",
"option-data": [
{
@@ -274500,6 +275951,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1452,
"subnet": "140.203.132.0/22",
"option-data": [
{
@@ -274683,6 +276135,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1453,
"subnet": "140.203.140.0/22",
"option-data": [
{
@@ -274860,6 +276313,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1454,
"subnet": "140.203.164.0/22",
"option-data": [
{
@@ -275049,6 +276503,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1455,
"subnet": "140.204.132.0/22",
"option-data": [
{
@@ -275226,6 +276681,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1456,
"subnet": "140.204.140.0/22",
"option-data": [
{
@@ -275407,6 +276863,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1457,
"subnet": "140.205.132.0/22",
"option-data": [
{
@@ -275590,6 +277047,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1458,
"subnet": "140.205.140.0/22",
"option-data": [
{
@@ -275771,6 +277229,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1459,
"subnet": "140.206.132.0/22",
"option-data": [
{
@@ -275948,6 +277407,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1460,
"subnet": "140.206.140.0/22",
"option-data": [
{
@@ -276129,6 +277589,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1461,
"subnet": "140.207.132.0/22",
"option-data": [
{
@@ -276312,6 +277773,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1462,
"subnet": "140.207.140.0/22",
"option-data": [
{
@@ -276489,6 +277951,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1463,
"subnet": "140.207.164.0/22",
"option-data": [
{
@@ -276678,6 +278141,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1464,
"subnet": "140.208.132.0/22",
"option-data": [
{
@@ -276861,6 +278325,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1465,
"subnet": "140.208.156.0/24",
"option-data": [
{
@@ -277038,6 +278503,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1466,
"subnet": "140.208.164.0/22",
"option-data": [
{
@@ -277215,6 +278681,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1467,
"subnet": "140.209.132.0/22",
"option-data": [
{
@@ -277398,6 +278865,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1468,
"subnet": "140.209.164.0/22",
"option-data": [
{
@@ -277581,6 +279049,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1469,
"subnet": "140.21.20.0/24",
"option-data": [
{
@@ -277646,6 +279115,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1470,
"subnet": "140.21.202.0/24",
"option-data": [
{
@@ -277807,6 +279277,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1471,
"subnet": "140.21.21.0/24",
"option-data": [
{
@@ -277872,6 +279343,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1472,
"subnet": "140.21.23.0/24",
"option-data": [
{
@@ -278027,6 +279499,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1473,
"subnet": "140.21.25.0/24",
"option-data": [
{
@@ -278188,6 +279661,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1474,
"subnet": "140.21.26.0/24",
"option-data": [
{
@@ -278349,6 +279823,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1475,
"subnet": "140.21.27.0/24",
"option-data": [
{
@@ -278514,6 +279989,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1476,
"subnet": "140.210.132.0/22",
"option-data": [
{
@@ -278691,6 +280167,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1477,
"subnet": "140.210.164.0/22",
"option-data": [
{
@@ -278874,6 +280351,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1478,
"subnet": "140.211.132.0/22",
"option-data": [
{
@@ -279051,6 +280529,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1479,
"subnet": "140.211.164.0/22",
"option-data": [
{
@@ -279228,6 +280707,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1480,
"subnet": "140.212.132.0/22",
"option-data": [
{
@@ -279405,6 +280885,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1481,
"subnet": "140.212.164.0/22",
"option-data": [
{
@@ -279582,6 +281063,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1482,
"subnet": "140.212.168.0/24",
"option-data": [
{
@@ -279742,6 +281224,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1483,
"subnet": "140.212.172.0/24",
"option-data": [
{
@@ -279919,6 +281402,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1484,
"subnet": "140.213.132.0/24",
"option-data": [
{
@@ -280096,6 +281580,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM02
{
+ "id": 1485,
"subnet": "140.213.164.0/22",
"option-data": [
{
@@ -280273,6 +281758,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1486,
"subnet": "140.24.1.0/27",
"option-data": [
{
@@ -280434,6 +281920,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1487,
"subnet": "140.24.1.128/27",
"option-data": [
{
@@ -280595,6 +282082,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1488,
"subnet": "140.24.1.32/27",
"option-data": [
{
@@ -280756,6 +282244,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1489,
"subnet": "140.24.1.64/27",
"option-data": [
{
@@ -280917,6 +282406,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1490,
"subnet": "140.24.1.96/27",
"option-data": [
{
@@ -281078,6 +282568,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1491,
"subnet": "140.24.10.0/26",
"option-data": [
{
@@ -281216,6 +282707,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1492,
"subnet": "140.24.10.128/26",
"option-data": [
{
@@ -281354,6 +282846,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1493,
"subnet": "140.24.10.192/26",
"option-data": [
{
@@ -281492,6 +282985,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1494,
"subnet": "140.24.10.64/26",
"option-data": [
{
@@ -281630,6 +283124,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1495,
"subnet": "140.24.11.0/26",
"option-data": [
{
@@ -281768,6 +283263,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1496,
"subnet": "140.24.11.128/26",
"option-data": [
{
@@ -281906,6 +283402,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1497,
"subnet": "140.24.11.192/26",
"option-data": [
{
@@ -282044,6 +283541,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1498,
"subnet": "140.24.11.64/26",
"option-data": [
{
@@ -282182,6 +283680,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1499,
"subnet": "140.24.12.0/26",
"option-data": [
{
@@ -282320,6 +283819,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1500,
"subnet": "140.24.12.128/26",
"option-data": [
{
@@ -282458,6 +283958,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1501,
"subnet": "140.24.12.192/26",
"option-data": [
{
@@ -282596,6 +284097,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1502,
"subnet": "140.24.12.64/26",
"option-data": [
{
@@ -282750,6 +284252,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1503,
"subnet": "140.24.14.0/26",
"option-data": [
{
@@ -282888,6 +284391,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1504,
"subnet": "140.24.14.128/26",
"option-data": [
{
@@ -283026,6 +284530,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1505,
"subnet": "140.24.14.192/26",
"option-data": [
{
@@ -283164,6 +284669,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1506,
"subnet": "140.24.14.64/26",
"option-data": [
{
@@ -283302,6 +284808,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1507,
"subnet": "140.24.15.0/26",
"option-data": [
{
@@ -283440,6 +284947,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1508,
"subnet": "140.24.15.128/26",
"option-data": [
{
@@ -283578,6 +285086,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1509,
"subnet": "140.24.15.192/26",
"option-data": [
{
@@ -283716,6 +285225,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1510,
"subnet": "140.24.15.64/26",
"option-data": [
{
@@ -283854,6 +285364,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1511,
"subnet": "140.24.2.0/27",
"option-data": [
{
@@ -283998,6 +285509,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1512,
"subnet": "140.24.2.128/27",
"option-data": [
{
@@ -284159,6 +285671,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1513,
"subnet": "140.24.2.32/27",
"option-data": [
{
@@ -284303,6 +285816,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1514,
"subnet": "140.24.2.64/27",
"option-data": [
{
@@ -284464,6 +285978,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1515,
"subnet": "140.24.2.96/27",
"option-data": [
{
@@ -284625,6 +286140,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1516,
"subnet": "140.24.3.0/27",
"option-data": [
{
@@ -284786,6 +286302,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1517,
"subnet": "140.24.3.128/27",
"option-data": [
{
@@ -284947,6 +286464,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1518,
"subnet": "140.24.3.32/27",
"option-data": [
{
@@ -285108,6 +286626,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1519,
"subnet": "140.24.3.64/27",
"option-data": [
{
@@ -285269,6 +286788,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1520,
"subnet": "140.24.3.96/27",
"option-data": [
{
@@ -285430,6 +286950,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1521,
"subnet": "140.24.4.0/27",
"option-data": [
{
@@ -285591,6 +287112,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1522,
"subnet": "140.24.4.128/27",
"option-data": [
{
@@ -285752,6 +287274,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1523,
"subnet": "140.24.4.32/27",
"option-data": [
{
@@ -285913,6 +287436,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1524,
"subnet": "140.24.4.64/27",
"option-data": [
{
@@ -286074,6 +287598,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1525,
"subnet": "140.24.4.96/27",
"option-data": [
{
@@ -286235,6 +287760,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1526,
"subnet": "140.24.5.0/27",
"option-data": [
{
@@ -286396,6 +287922,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1527,
"subnet": "140.24.5.128/27",
"option-data": [
{
@@ -286557,6 +288084,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1528,
"subnet": "140.24.5.32/27",
"option-data": [
{
@@ -286718,6 +288246,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1529,
"subnet": "140.24.5.64/27",
"option-data": [
{
@@ -286879,6 +288408,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1530,
"subnet": "140.24.5.96/27",
"option-data": [
{
@@ -287040,6 +288570,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1531,
"subnet": "140.24.6.0/27",
"option-data": [
{
@@ -287201,6 +288732,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1532,
"subnet": "140.24.6.128/27",
"option-data": [
{
@@ -287362,6 +288894,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1533,
"subnet": "140.24.6.32/27",
"option-data": [
{
@@ -287523,6 +289056,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1534,
"subnet": "140.24.6.64/27",
"option-data": [
{
@@ -287684,6 +289218,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1535,
"subnet": "140.24.6.96/27",
"option-data": [
{
@@ -287845,6 +289380,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1536,
"subnet": "140.24.7.0/27",
"option-data": [
{
@@ -288006,6 +289542,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1537,
"subnet": "140.24.7.128/27",
"option-data": [
{
@@ -288167,6 +289704,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1538,
"subnet": "140.24.7.32/27",
"option-data": [
{
@@ -288328,6 +289866,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1539,
"subnet": "140.24.7.64/27",
"option-data": [
{
@@ -288489,6 +290028,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1540,
"subnet": "140.24.7.96/27",
"option-data": [
{
@@ -288650,6 +290190,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1541,
"subnet": "140.24.8.0/27",
"option-data": [
{
@@ -288811,6 +290352,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1542,
"subnet": "140.24.8.128/27",
"option-data": [
{
@@ -288972,6 +290514,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1543,
"subnet": "140.24.8.32/27",
"option-data": [
{
@@ -289133,6 +290676,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1544,
"subnet": "140.24.8.64/27",
"option-data": [
{
@@ -289294,6 +290838,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1545,
"subnet": "140.24.8.96/27",
"option-data": [
{
@@ -289455,6 +291000,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1546,
"subnet": "140.24.9.0/26",
"option-data": [
{
@@ -289593,6 +291139,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1547,
"subnet": "140.24.9.128/26",
"option-data": [
{
@@ -289731,6 +291278,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1548,
"subnet": "140.24.9.192/26",
"option-data": [
{
@@ -289869,6 +291417,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1549,
"subnet": "140.24.9.64/26",
"option-data": [
{
@@ -290007,6 +291556,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1550,
"subnet": "140.26.12.0/22",
"option-data": [
{
@@ -290183,6 +291733,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1551,
"subnet": "140.26.16.0/22",
"option-data": [
{
@@ -290359,6 +291910,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1552,
"subnet": "140.26.24.0/22",
"option-data": [
{
@@ -290535,6 +292087,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1553,
"subnet": "140.26.28.0/22",
"option-data": [
{
@@ -290711,6 +292264,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1554,
"subnet": "140.26.32.0/22",
"option-data": [
{
@@ -290887,6 +292441,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1555,
"subnet": "140.26.36.0/22",
"option-data": [
{
@@ -291063,6 +292618,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1556,
"subnet": "140.26.4.0/22",
"option-data": [
{
@@ -291239,6 +292795,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1557,
"subnet": "140.26.40.0/22",
"option-data": [
{
@@ -291415,6 +292972,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1558,
"subnet": "140.26.44.0/22",
"option-data": [
{
@@ -291591,6 +293149,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1559,
"subnet": "140.26.48.0/22",
"option-data": [
{
@@ -291767,6 +293326,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1560,
"subnet": "140.26.52.0/22",
"option-data": [
{
@@ -291943,6 +293503,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1561,
"subnet": "140.26.56.0/22",
"option-data": [
{
@@ -292119,6 +293680,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1562,
"subnet": "140.26.60.0/22",
"option-data": [
{
@@ -292295,6 +293857,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1563,
"subnet": "140.26.64.0/22",
"option-data": [
{
@@ -292471,6 +294034,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 1564,
"subnet": "140.26.69.0/24",
"option-data": [
{
@@ -292543,6 +294107,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1565,
"subnet": "140.26.8.0/22",
"option-data": [
{
@@ -292719,6 +294284,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM20
{
+ "id": 1566,
"subnet": "140.30.219.0/24",
"option-data": [
{
@@ -292896,6 +294462,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM20
{
+ "id": 1567,
"subnet": "140.30.222.0/24",
"option-data": [
{
@@ -293073,6 +294640,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM20
{
+ "id": 1568,
"subnet": "140.30.224.0/22",
"option-data": [
{
@@ -293250,6 +294818,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM69
{
+ "id": 1569,
"subnet": "140.35.15.0/24",
"option-data": [
{
@@ -293427,6 +294996,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM69
{
+ "id": 1570,
"subnet": "140.35.5.0/24",
"option-data": [
{
@@ -293604,6 +295174,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 1571,
"subnet": "140.4.124.0/22",
"option-data": [
{
@@ -293781,6 +295352,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 1572,
"subnet": "140.4.132.0/22",
"option-data": [
{
@@ -293958,6 +295530,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 1573,
"subnet": "140.4.160.0/24",
"option-data": [
{
@@ -294118,6 +295691,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 1574,
"subnet": "140.4.70.0/24",
"option-data": [
{
@@ -294295,6 +295869,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 1575,
"subnet": "140.4.76.0/24",
"option-data": [
{
@@ -294449,6 +296024,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 1576,
"subnet": "140.4.77.0/24",
"option-data": [
{
@@ -294609,6 +296185,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 1577,
"subnet": "140.4.84.0/24",
"option-data": [
{
@@ -294769,6 +296346,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM14
{
+ "id": 1578,
"subnet": "140.5.4.0/22",
"option-data": [
{
@@ -294946,6 +296524,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM08
{
+ "id": 1579,
"subnet": "140.58.4.0/24",
"option-data": [
{
@@ -295123,6 +296702,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 1580,
"subnet": "140.59.24.0/22",
"option-data": [
{
@@ -295300,6 +296880,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 1581,
"subnet": "140.59.28.0/22",
"option-data": [
{
@@ -295477,6 +297058,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 1582,
"subnet": "140.59.32.0/22",
"option-data": [
{
@@ -295654,6 +297236,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 1583,
"subnet": "140.59.36.0/22",
"option-data": [
{
@@ -295831,6 +297414,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM35
{
+ "id": 1584,
"subnet": "140.59.40.0/22",
"option-data": [
{
@@ -296008,6 +297592,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 1585,
"subnet": "140.6.12.0/22",
"option-data": [
{
@@ -296185,6 +297770,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 1586,
"subnet": "140.6.20.0/22",
"option-data": [
{
@@ -296362,6 +297948,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 1587,
"subnet": "140.6.28.0/22",
"option-data": [
{
@@ -296539,6 +298126,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 1588,
"subnet": "140.6.36.0/22",
"option-data": [
{
@@ -296716,6 +298304,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 1589,
"subnet": "140.6.4.0/22",
"option-data": [
{
@@ -296893,6 +298482,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 1590,
"subnet": "140.6.44.0/22",
"option-data": [
{
@@ -297070,6 +298660,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 1591,
"subnet": "140.6.52.0/22",
"option-data": [
{
@@ -297247,6 +298838,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM22
{
+ "id": 1592,
"subnet": "140.6.60.0/22",
"option-data": [
{
@@ -297428,6 +299020,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1593,
"subnet": "140.60.156.0/24",
"option-data": [
{
@@ -297599,6 +299192,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1594,
"subnet": "140.60.180.0/22",
"option-data": [
{
@@ -297759,6 +299353,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1595,
"subnet": "140.60.188.0/22",
"option-data": [
{
@@ -297936,6 +299531,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1596,
"subnet": "140.60.192.0/22",
"option-data": [
{
@@ -298113,6 +299709,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1597,
"subnet": "140.60.196.0/22",
"option-data": [
{
@@ -298290,6 +299887,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1598,
"subnet": "140.60.26.0/24",
"option-data": [
{
@@ -298467,6 +300065,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1599,
"subnet": "140.60.28.0/24",
"option-data": [
{
@@ -298644,6 +300243,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1600,
"subnet": "140.60.30.0/24",
"option-data": [
{
@@ -298821,6 +300421,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1601,
"subnet": "140.60.32.0/24",
"option-data": [
{
@@ -298998,6 +300599,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1602,
"subnet": "140.60.33.0/24",
"option-data": [
{
@@ -299175,6 +300777,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 1603,
"subnet": "140.60.40.0/23",
"option-data": [
{
@@ -299364,6 +300967,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM05
{
+ "id": 1604,
"subnet": "140.70.20.0/22",
"option-data": [
{
@@ -299524,6 +301128,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM05
{
+ "id": 1605,
"subnet": "140.70.24.0/22",
"option-data": [
{
@@ -299684,6 +301289,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM05
{
+ "id": 1606,
"subnet": "140.70.28.0/22",
"option-data": [
{
@@ -299844,6 +301450,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM05
{
+ "id": 1607,
"subnet": "140.70.32.0/22",
"option-data": [
{
@@ -300004,6 +301611,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM05
{
+ "id": 1608,
"subnet": "140.70.36.0/22",
"option-data": [
{
@@ -300164,6 +301772,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM05
{
+ "id": 1609,
"subnet": "140.70.4.0/24",
"option-data": [
{
@@ -300341,6 +301950,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM05
{
+ "id": 1610,
"subnet": "140.70.50.0/24",
"option-data": [
{
@@ -300501,6 +302111,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM74
{
+ "id": 1611,
"subnet": "140.74.104.0/22",
"option-data": [
{
@@ -300678,6 +302289,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM54
{
+ "id": 1612,
"subnet": "140.80.140.0/24",
"option-data": [
{
@@ -300855,6 +302467,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM54
{
+ "id": 1613,
"subnet": "140.80.156.0/24",
"option-data": [
{
@@ -301032,6 +302645,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM54
{
+ "id": 1614,
"subnet": "140.80.157.0/24",
"option-data": [
{
@@ -301209,6 +302823,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM54
{
+ "id": 1615,
"subnet": "140.80.40.0/24",
"option-data": [
{
@@ -301386,6 +303001,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 1616,
"subnet": "140.90.104.0/22",
"option-data": [
{
@@ -301563,6 +303179,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 1617,
"subnet": "140.90.60.0/23",
"option-data": [
{
@@ -301740,6 +303357,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 1618,
"subnet": "140.90.62.0/23",
"option-data": [
{
@@ -301917,6 +303535,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 1619,
"subnet": "140.90.64.0/22",
"option-data": [
{
@@ -302100,6 +303719,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GLH01
{
+ "id": 1620,
"subnet": "141.30.102.0/24",
"option-data": [
{
@@ -302277,6 +303897,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM12
{
+ "id": 1621,
"subnet": "141.30.104.0/24",
"option-data": [
{
@@ -302454,6 +304075,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM06
{
+ "id": 1622,
"subnet": "141.30.106.0/24",
"option-data": [
{
@@ -302631,6 +304253,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM13
{
+ "id": 1623,
"subnet": "141.30.12.0/24",
"option-data": [
{
@@ -302812,6 +304435,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM17
{
+ "id": 1624,
"subnet": "141.30.126.0/24",
"option-data": [
{
@@ -303009,6 +304633,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM50
{
+ "id": 1625,
"subnet": "141.30.144.0/24",
"option-data": [
{
@@ -303186,6 +304811,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HNS02
{
+ "id": 1626,
"subnet": "141.30.30.0/24",
"option-data": [
{
@@ -303363,6 +304989,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM27
{
+ "id": 1627,
"subnet": "141.30.32.0/24",
"option-data": [
{
@@ -303540,6 +305167,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM37
{
+ "id": 1628,
"subnet": "141.30.84.0/22",
"option-data": [
{
@@ -303717,6 +305345,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM16
{
+ "id": 1629,
"subnet": "141.30.92.0/24",
"option-data": [
{
@@ -303894,6 +305523,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM17
{
+ "id": 1630,
"subnet": "141.30.94.0/24",
"option-data": [
{
@@ -304054,6 +305684,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM09
{
+ "id": 1631,
"subnet": "141.30.96.0/24",
"option-data": [
{
@@ -304231,6 +305862,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM04
{
+ "id": 1632,
"subnet": "141.30.98.0/24",
"option-data": [
{
@@ -304408,6 +306040,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LIM01
{
+ "id": 1633,
"subnet": "141.40.102.0/24",
"option-data": [
{
@@ -304585,6 +306218,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GIE01
{
+ "id": 1634,
"subnet": "141.40.104.0/24",
"option-data": [
{
@@ -304762,6 +306396,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LIM01
{
+ "id": 1635,
"subnet": "141.40.108.0/22",
"option-data": [
{
@@ -304939,6 +306574,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DAR02
{
+ "id": 1636,
"subnet": "141.40.112.0/22",
"option-data": [
{
@@ -305116,6 +306752,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DIL01
{
+ "id": 1637,
"subnet": "141.40.116.0/22",
"option-data": [
{
@@ -305293,6 +306930,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GIE01
{
+ "id": 1638,
"subnet": "141.40.120.0/22",
"option-data": [
{
@@ -305470,6 +307108,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WET01
{
+ "id": 1639,
"subnet": "141.40.124.0/22",
"option-data": [
{
@@ -305647,6 +307286,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FBG01
{
+ "id": 1640,
"subnet": "141.40.128.0/24",
"option-data": [
{
@@ -305824,6 +307464,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAM01
{
+ "id": 1641,
"subnet": "141.40.130.0/24",
"option-data": [
{
@@ -306001,6 +307642,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LNG02
{
+ "id": 1642,
"subnet": "141.40.132.0/24",
"option-data": [
{
@@ -306178,6 +307820,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BUT01
{
+ "id": 1643,
"subnet": "141.40.134.0/24",
"option-data": [
{
@@ -306355,6 +307998,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OUT01
{
+ "id": 1644,
"subnet": "141.40.136.0/24",
"option-data": [
{
@@ -306532,6 +308176,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BSO01
{
+ "id": 1645,
"subnet": "141.40.138.0/24",
"option-data": [
{
@@ -306709,6 +308354,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BKI01
{
+ "id": 1646,
"subnet": "141.40.140.0/24",
"option-data": [
{
@@ -306886,6 +308532,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MTL01
{
+ "id": 1647,
"subnet": "141.40.142.0/24",
"option-data": [
{
@@ -307063,6 +308710,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KNS02
{
+ "id": 1648,
"subnet": "141.40.144.0/24",
"option-data": [
{
@@ -307240,6 +308888,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GGE01
{
+ "id": 1649,
"subnet": "141.40.146.0/24",
"option-data": [
{
@@ -307417,6 +309066,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DAR02
{
+ "id": 1650,
"subnet": "141.40.96.0/24",
"option-data": [
{
@@ -307594,6 +309244,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOR01
{
+ "id": 1651,
"subnet": "141.50.108.0/22",
"option-data": [
{
@@ -307771,6 +309422,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WAR01
{
+ "id": 1652,
"subnet": "141.50.112.0/22",
"option-data": [
{
@@ -307948,6 +309600,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESW01
{
+ "id": 1653,
"subnet": "141.50.44.0/24",
"option-data": [
{
@@ -308125,6 +309778,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KOR01
{
+ "id": 1654,
"subnet": "141.50.60.0/24",
"option-data": [
{
@@ -308302,6 +309956,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ALS01
{
+ "id": 1655,
"subnet": "141.50.62.0/24",
"option-data": [
{
@@ -308479,6 +310134,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAS02
{
+ "id": 1656,
"subnet": "141.50.64.0/24",
"option-data": [
{
@@ -308656,6 +310312,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BHF01
{
+ "id": 1657,
"subnet": "141.50.66.0/24",
"option-data": [
{
@@ -308833,6 +310490,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAS03
{
+ "id": 1658,
"subnet": "141.50.68.0/24",
"option-data": [
{
@@ -309010,6 +310668,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STA01
{
+ "id": 1659,
"subnet": "141.50.70.0/24",
"option-data": [
{
@@ -309187,6 +310846,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAS01
{
+ "id": 1660,
"subnet": "141.50.94.0/24",
"option-data": [
{
@@ -309364,6 +311024,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAS01
{
+ "id": 1661,
"subnet": "141.50.96.0/22",
"option-data": [
{
@@ -309541,6 +311202,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ02
{
+ "id": 1662,
"subnet": "141.60.102.0/24",
"option-data": [
{
@@ -309718,6 +311380,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIR01
{
+ "id": 1663,
"subnet": "141.60.104.0/24",
"option-data": [
{
@@ -309895,6 +311558,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAK01
{
+ "id": 1664,
"subnet": "141.60.106.0/24",
"option-data": [
{
@@ -310072,6 +311736,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1665,
"subnet": "141.60.108.0/22",
"option-data": [
{
@@ -310249,6 +311914,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RUS01
{
+ "id": 1666,
"subnet": "141.60.112.0/24",
"option-data": [
{
@@ -310426,6 +312092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BKH02
{
+ "id": 1667,
"subnet": "141.60.116.0/24",
"option-data": [
{
@@ -310603,6 +312270,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# IOB02
{
+ "id": 1668,
"subnet": "141.60.118.0/24",
"option-data": [
{
@@ -310780,6 +312448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RUD01
{
+ "id": 1669,
"subnet": "141.60.120.0/24",
"option-data": [
{
@@ -310957,6 +312626,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# IOB03
{
+ "id": 1670,
"subnet": "141.60.122.0/24",
"option-data": [
{
@@ -311134,6 +312804,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# IGH01
{
+ "id": 1671,
"subnet": "141.60.124.0/24",
"option-data": [
{
@@ -311311,6 +312982,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1672,
"subnet": "141.60.126.0/24",
"option-data": [
{
@@ -311488,6 +313160,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1673,
"subnet": "141.60.128.0/24",
"option-data": [
{
@@ -311665,6 +313338,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1674,
"subnet": "141.60.130.0/24",
"option-data": [
{
@@ -311842,6 +313516,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1675,
"subnet": "141.60.132.0/24",
"option-data": [
{
@@ -312019,6 +313694,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RUS02
{
+ "id": 1676,
"subnet": "141.60.140.0/22",
"option-data": [
{
@@ -312204,6 +313880,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RUS02
{
+ "id": 1677,
"subnet": "141.60.144.0/22",
"option-data": [
{
@@ -312381,6 +314058,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1678,
"subnet": "141.60.148.0/24",
"option-data": [
{
@@ -312558,6 +314236,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RUS02
{
+ "id": 1679,
"subnet": "141.60.156.0/22",
"option-data": [
{
@@ -312735,6 +314414,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# IOB02
{
+ "id": 1680,
"subnet": "141.60.220.0/22",
"option-data": [
{
@@ -312912,6 +314592,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BKH02
{
+ "id": 1681,
"subnet": "141.60.224.0/22",
"option-data": [
{
@@ -313089,6 +314770,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1682,
"subnet": "141.60.50.0/24",
"option-data": [
{
@@ -313249,6 +314931,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1683,
"subnet": "141.60.72.0/24",
"option-data": [
{
@@ -313426,6 +315109,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAZ01
{
+ "id": 1684,
"subnet": "141.60.74.0/24",
"option-data": [
{
@@ -313603,6 +315287,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SAA01
{
+ "id": 1685,
"subnet": "141.70.102.0/24",
"option-data": [
{
@@ -313780,6 +315465,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TRI01
{
+ "id": 1686,
"subnet": "141.70.104.0/24",
"option-data": [
{
@@ -313957,6 +315643,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PMS01
{
+ "id": 1687,
"subnet": "141.70.108.0/22",
"option-data": [
{
@@ -314134,6 +315821,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SAA01
{
+ "id": 1688,
"subnet": "141.70.112.0/22",
"option-data": [
{
@@ -314311,6 +315999,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TRI01
{
+ "id": 1689,
"subnet": "141.70.116.0/22",
"option-data": [
{
@@ -314488,6 +316177,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOB01
{
+ "id": 1690,
"subnet": "141.70.44.0/24",
"option-data": [
{
@@ -314665,6 +316355,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NEN01
{
+ "id": 1691,
"subnet": "141.70.64.0/24",
"option-data": [
{
@@ -314842,6 +316533,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STW01
{
+ "id": 1692,
"subnet": "141.70.66.0/24",
"option-data": [
{
@@ -315019,6 +316711,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SAA02
{
+ "id": 1693,
"subnet": "141.70.68.0/24",
"option-data": [
{
@@ -315196,6 +316889,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SAB01
{
+ "id": 1694,
"subnet": "141.70.70.0/24",
"option-data": [
{
@@ -315373,6 +317067,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SAL01
{
+ "id": 1695,
"subnet": "141.70.72.0/24",
"option-data": [
{
@@ -315550,6 +317245,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SAA01
{
+ "id": 1696,
"subnet": "141.70.92.0/24",
"option-data": [
{
@@ -315727,6 +317423,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SAA01
{
+ "id": 1697,
"subnet": "141.70.94.0/24",
"option-data": [
{
@@ -315904,6 +317601,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PMS01
{
+ "id": 1698,
"subnet": "141.70.98.0/24",
"option-data": [
{
@@ -316081,6 +317779,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 1699,
"subnet": "142.10.37.0/24",
"option-data": [
{
@@ -316258,6 +317957,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 1700,
"subnet": "142.10.38.0/23",
"option-data": [
{
@@ -316441,6 +318141,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 1701,
"subnet": "142.10.40.0/22",
"option-data": [
{
@@ -316642,6 +318343,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 1702,
"subnet": "142.10.49.0/24",
"option-data": [
{
@@ -316819,6 +318521,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 1703,
"subnet": "142.10.50.0/24",
"option-data": [
{
@@ -316996,6 +318699,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 1704,
"subnet": "142.10.52.0/23",
"option-data": [
{
@@ -317185,6 +318889,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 1705,
"subnet": "142.10.62.0/23",
"option-data": [
{
@@ -317374,6 +319079,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM42
{
+ "id": 1706,
"subnet": "142.10.84.0/22",
"option-data": [
{
@@ -317563,6 +319269,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1707,
"subnet": "142.20.123.0/24",
"option-data": [
{
@@ -317723,6 +319430,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1708,
"subnet": "142.24.1.0/27",
"option-data": [
{
@@ -317867,6 +319575,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1709,
"subnet": "142.24.1.128/27",
"option-data": [
{
@@ -318011,6 +319720,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1710,
"subnet": "142.24.1.32/27",
"option-data": [
{
@@ -318155,6 +319865,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1711,
"subnet": "142.24.1.64/27",
"option-data": [
{
@@ -318316,6 +320027,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1712,
"subnet": "142.24.1.96/27",
"option-data": [
{
@@ -318477,6 +320189,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1713,
"subnet": "142.24.2.0/27",
"option-data": [
{
@@ -318638,6 +320351,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1714,
"subnet": "142.24.2.128/27",
"option-data": [
{
@@ -318799,6 +320513,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1715,
"subnet": "142.24.2.32/27",
"option-data": [
{
@@ -318960,6 +320675,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1716,
"subnet": "142.24.2.64/27",
"option-data": [
{
@@ -319121,6 +320837,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1717,
"subnet": "142.24.2.96/27",
"option-data": [
{
@@ -319282,6 +320999,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1718,
"subnet": "142.24.3.0/27",
"option-data": [
{
@@ -319443,6 +321161,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1719,
"subnet": "142.24.3.32/27",
"option-data": [
{
@@ -319604,6 +321323,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1720,
"subnet": "142.24.3.64/27",
"option-data": [
{
@@ -319765,6 +321485,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1721,
"subnet": "142.24.4.0/26",
"option-data": [
{
@@ -319903,6 +321624,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1722,
"subnet": "142.24.4.128/26",
"option-data": [
{
@@ -320060,6 +321782,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1723,
"subnet": "142.24.4.192/26",
"option-data": [
{
@@ -320217,6 +321940,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1724,
"subnet": "142.24.4.64/26",
"option-data": [
{
@@ -320355,6 +322079,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1725,
"subnet": "142.24.5.0/26",
"option-data": [
{
@@ -320493,6 +322218,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1726,
"subnet": "142.24.5.128/26",
"option-data": [
{
@@ -320631,6 +322357,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1727,
"subnet": "142.24.5.192/26",
"option-data": [
{
@@ -320769,6 +322496,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1728,
"subnet": "142.24.5.64/26",
"option-data": [
{
@@ -320907,6 +322635,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1729,
"subnet": "142.24.6.0/26",
"option-data": [
{
@@ -321045,6 +322774,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1730,
"subnet": "142.24.6.128/26",
"option-data": [
{
@@ -321183,6 +322913,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1731,
"subnet": "142.24.6.192/26",
"option-data": [
{
@@ -321321,6 +323052,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1732,
"subnet": "142.24.6.64/26",
"option-data": [
{
@@ -321459,6 +323191,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1733,
"subnet": "142.24.7.0/26",
"option-data": [
{
@@ -321597,6 +323330,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1734,
"subnet": "142.24.7.128/26",
"option-data": [
{
@@ -321735,6 +323469,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1735,
"subnet": "142.24.7.192/26",
"option-data": [
{
@@ -321873,6 +323608,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1736,
"subnet": "142.24.7.64/26",
"option-data": [
{
@@ -322011,6 +323747,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1737,
"subnet": "142.24.8.0/26",
"option-data": [
{
@@ -322149,6 +323886,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1738,
"subnet": "142.24.8.128/26",
"option-data": [
{
@@ -322287,6 +324025,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1739,
"subnet": "142.24.8.192/26",
"option-data": [
{
@@ -322425,6 +324164,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KLB01
{
+ "id": 1740,
"subnet": "142.24.8.64/26",
"option-data": [
{
@@ -322563,6 +324303,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM15
{
+ "id": 1741,
"subnet": "142.30.12.0/24",
"option-data": [
{
@@ -322740,6 +324481,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 1742,
"subnet": "142.30.32.0/22",
"option-data": [
{
@@ -322917,6 +324659,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM91
{
+ "id": 1743,
"subnet": "142.30.58.0/24",
"option-data": [
{
@@ -323094,6 +324837,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 1744,
"subnet": "142.30.60.0/24",
"option-data": [
{
@@ -323271,6 +325015,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 1745,
"subnet": "142.30.62.0/24",
"option-data": [
{
@@ -323448,6 +325193,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 1746,
"subnet": "142.30.64.0/24",
"option-data": [
{
@@ -323625,6 +325371,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 1747,
"subnet": "142.30.86.0/23",
"option-data": [
{
@@ -323802,6 +325549,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM26
{
+ "id": 1748,
"subnet": "142.30.88.0/24",
"option-data": [
{
@@ -323979,6 +325727,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM32
{
+ "id": 1749,
"subnet": "142.30.90.0/24",
"option-data": [
{
@@ -324156,6 +325905,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NIS02
{
+ "id": 1750,
"subnet": "142.40.100.0/24",
"option-data": [
{
@@ -324333,6 +326083,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OFF01
{
+ "id": 1751,
"subnet": "142.40.102.0/24",
"option-data": [
{
@@ -324510,6 +326261,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HNS01
{
+ "id": 1752,
"subnet": "142.40.104.0/24",
"option-data": [
{
@@ -324687,6 +326439,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DIE01
{
+ "id": 1753,
"subnet": "142.40.106.0/24",
"option-data": [
{
@@ -324864,6 +326617,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ABG01
{
+ "id": 1754,
"subnet": "142.40.108.0/22",
"option-data": [
{
@@ -325041,6 +326795,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BHG01
{
+ "id": 1755,
"subnet": "142.40.112.0/22",
"option-data": [
{
@@ -325218,6 +326973,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAR01
{
+ "id": 1756,
"subnet": "142.40.116.0/22",
"option-data": [
{
@@ -325395,6 +327151,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OFF01
{
+ "id": 1757,
"subnet": "142.40.120.0/22",
"option-data": [
{
@@ -325572,6 +327329,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FUL01
{
+ "id": 1758,
"subnet": "142.40.124.0/22",
"option-data": [
{
@@ -325749,6 +327507,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HNS01
{
+ "id": 1759,
"subnet": "142.40.128.0/22",
"option-data": [
{
@@ -325926,6 +327685,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC01
{
+ "id": 1760,
"subnet": "142.40.132.0/24",
"option-data": [
{
@@ -326103,6 +327863,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WTH01
{
+ "id": 1761,
"subnet": "142.40.134.0/24",
"option-data": [
{
@@ -326280,6 +328041,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BVI01
{
+ "id": 1762,
"subnet": "142.40.136.0/24",
"option-data": [
{
@@ -326457,6 +328219,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DAR03
{
+ "id": 1763,
"subnet": "142.40.138.0/24",
"option-data": [
{
@@ -326634,6 +328397,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OBE01
{
+ "id": 1764,
"subnet": "142.40.140.0/24",
"option-data": [
{
@@ -326811,6 +328575,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DCH02
{
+ "id": 1765,
"subnet": "142.40.142.0/24",
"option-data": [
{
@@ -326988,6 +328753,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PFU01
{
+ "id": 1766,
"subnet": "142.40.144.0/24",
"option-data": [
{
@@ -327165,6 +328931,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ABG01
{
+ "id": 1767,
"subnet": "142.40.92.0/24",
"option-data": [
{
@@ -327342,6 +329109,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BHG01
{
+ "id": 1768,
"subnet": "142.40.94.0/24",
"option-data": [
{
@@ -327519,6 +329287,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FUL01
{
+ "id": 1769,
"subnet": "142.40.98.0/24",
"option-data": [
{
@@ -327696,6 +329465,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOC01
{
+ "id": 1770,
"subnet": "142.50.126.0/24",
"option-data": [
{
@@ -327873,6 +329643,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRA01
{
+ "id": 1771,
"subnet": "142.50.174.0/24",
"option-data": [
{
@@ -328050,6 +329821,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HEI03
{
+ "id": 1772,
"subnet": "142.50.176.0/24",
"option-data": [
{
@@ -328227,6 +329999,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN08
{
+ "id": 1773,
"subnet": "142.50.178.0/24",
"option-data": [
{
@@ -328404,6 +330177,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN01
{
+ "id": 1774,
"subnet": "142.50.180.0/22",
"option-data": [
{
@@ -328581,6 +330355,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUD01
{
+ "id": 1775,
"subnet": "142.50.208.0/24",
"option-data": [
{
@@ -328758,6 +330533,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HEI02
{
+ "id": 1776,
"subnet": "142.50.210.0/24",
"option-data": [
{
@@ -328935,6 +330711,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIH01
{
+ "id": 1777,
"subnet": "142.50.212.0/24",
"option-data": [
{
@@ -329112,6 +330889,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUD01
{
+ "id": 1778,
"subnet": "142.50.216.0/22",
"option-data": [
{
@@ -329289,6 +331067,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN07
{
+ "id": 1779,
"subnet": "142.50.220.0/22",
"option-data": [
{
@@ -329466,6 +331245,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN13
{
+ "id": 1780,
"subnet": "142.50.224.0/22",
"option-data": [
{
@@ -329643,6 +331423,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIH01
{
+ "id": 1781,
"subnet": "142.50.228.0/22",
"option-data": [
{
@@ -329820,6 +331601,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HEI02
{
+ "id": 1782,
"subnet": "142.50.232.0/22",
"option-data": [
{
@@ -329997,6 +331779,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WOR01
{
+ "id": 1783,
"subnet": "142.50.236.0/22",
"option-data": [
{
@@ -330174,6 +331957,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAI01
{
+ "id": 1784,
"subnet": "142.50.240.0/24",
"option-data": [
{
@@ -330351,6 +332135,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HEI01
{
+ "id": 1785,
"subnet": "142.50.242.0/24",
"option-data": [
{
@@ -330528,6 +332313,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WHB01
{
+ "id": 1786,
"subnet": "142.50.246.0/24",
"option-data": [
{
@@ -330705,6 +332491,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SPE01
{
+ "id": 1787,
"subnet": "142.50.252.0/24",
"option-data": [
{
@@ -330882,6 +332669,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VIH01
{
+ "id": 1788,
"subnet": "142.50.254.0/24",
"option-data": [
{
@@ -331059,6 +332847,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN07
{
+ "id": 1789,
"subnet": "142.50.56.0/24",
"option-data": [
{
@@ -331236,6 +333025,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN07
{
+ "id": 1790,
"subnet": "142.50.64.0/24",
"option-data": [
{
@@ -331413,6 +333203,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN01
{
+ "id": 1791,
"subnet": "142.50.82.0/24",
"option-data": [
{
@@ -331590,6 +333381,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN01
{
+ "id": 1792,
"subnet": "142.50.84.0/24",
"option-data": [
{
@@ -331767,6 +333559,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN01
{
+ "id": 1793,
"subnet": "142.50.88.0/24",
"option-data": [
{
@@ -331944,6 +333737,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN13
{
+ "id": 1794,
"subnet": "142.50.92.0/24",
"option-data": [
{
@@ -332121,6 +333915,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN13
{
+ "id": 1795,
"subnet": "142.50.94.0/24",
"option-data": [
{
@@ -332298,6 +334093,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN03
{
+ "id": 1796,
"subnet": "142.51.10.0/24",
"option-data": [
{
@@ -332475,6 +334271,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN04
{
+ "id": 1797,
"subnet": "142.51.12.0/24",
"option-data": [
{
@@ -332652,6 +334449,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WLO01
{
+ "id": 1798,
"subnet": "142.51.14.0/24",
"option-data": [
{
@@ -332829,6 +334627,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWZ01
{
+ "id": 1799,
"subnet": "142.51.16.0/24",
"option-data": [
{
@@ -333006,6 +334805,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MAN07
{
+ "id": 1800,
"subnet": "142.51.18.0/24",
"option-data": [
{
@@ -333183,6 +334983,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BDH01
{
+ "id": 1801,
"subnet": "142.51.2.0/24",
"option-data": [
{
@@ -333360,6 +335161,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BEN01
{
+ "id": 1802,
"subnet": "142.51.4.0/24",
"option-data": [
{
@@ -333537,6 +335339,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NWE01
{
+ "id": 1803,
"subnet": "142.51.6.0/24",
"option-data": [
{
@@ -333714,6 +335517,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MOB01
{
+ "id": 1804,
"subnet": "142.51.8.0/24",
"option-data": [
{
@@ -333891,6 +335695,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIE09
{
+ "id": 1805,
"subnet": "142.60.4.0/24",
"option-data": [
{
@@ -334068,6 +335873,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIE01
{
+ "id": 1806,
"subnet": "142.60.48.0/24",
"option-data": [
{
@@ -334245,6 +336051,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIE01
{
+ "id": 1807,
"subnet": "142.60.52.0/22",
"option-data": [
{
@@ -334422,6 +336229,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HTS01
{
+ "id": 1808,
"subnet": "142.60.56.0/24",
"option-data": [
{
@@ -334599,6 +336407,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KEL01
{
+ "id": 1809,
"subnet": "142.60.58.0/24",
"option-data": [
{
@@ -334776,6 +336585,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WIE04
{
+ "id": 1810,
"subnet": "142.60.60.0/24",
"option-data": [
{
@@ -334953,6 +336763,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# IDS01
{
+ "id": 1811,
"subnet": "142.60.62.0/24",
"option-data": [
{
@@ -335130,6 +336941,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1812,
"subnet": "143.0.36.0/24",
"option-data": [
{
@@ -335307,6 +337119,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1813,
"subnet": "143.0.38.0/24",
"option-data": [
{
@@ -335484,6 +337297,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1814,
"subnet": "143.0.48.0/22",
"option-data": [
{
@@ -335661,6 +337475,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1815,
"subnet": "143.0.66.0/24",
"option-data": [
{
@@ -335838,6 +337653,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1816,
"subnet": "143.0.72.0/24",
"option-data": [
{
@@ -336015,6 +337831,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1817,
"subnet": "143.0.74.0/24",
"option-data": [
{
@@ -336192,6 +338009,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1818,
"subnet": "143.0.80.0/24",
"option-data": [
{
@@ -336369,6 +338187,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU05
{
+ "id": 1819,
"subnet": "143.30.100.0/24",
"option-data": [
{
@@ -336546,6 +338365,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU06
{
+ "id": 1820,
"subnet": "143.30.102.0/24",
"option-data": [
{
@@ -336723,6 +338543,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU03
{
+ "id": 1821,
"subnet": "143.30.110.0/24",
"option-data": [
{
@@ -336900,6 +338721,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1822,
"subnet": "143.30.50.0/23",
"option-data": [
{
@@ -337083,6 +338905,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU01
{
+ "id": 1823,
"subnet": "143.30.52.0/24",
"option-data": [
{
@@ -337260,6 +339083,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU03
{
+ "id": 1824,
"subnet": "143.30.78.0/24",
"option-data": [
{
@@ -337437,6 +339261,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU21
{
+ "id": 1825,
"subnet": "143.30.84.0/22",
"option-data": [
{
@@ -337614,6 +339439,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU12
{
+ "id": 1826,
"subnet": "143.30.88.0/24",
"option-data": [
{
@@ -337791,6 +339617,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU18
{
+ "id": 1827,
"subnet": "143.30.90.0/24",
"option-data": [
{
@@ -337968,6 +339795,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU17
{
+ "id": 1828,
"subnet": "143.30.92.0/24",
"option-data": [
{
@@ -338145,6 +339973,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU15
{
+ "id": 1829,
"subnet": "143.30.94.0/24",
"option-data": [
{
@@ -338322,6 +340151,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU11
{
+ "id": 1830,
"subnet": "143.30.96.0/24",
"option-data": [
{
@@ -338499,6 +340329,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STU09
{
+ "id": 1831,
"subnet": "143.30.98.0/24",
"option-data": [
{
@@ -338676,6 +340507,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MET01
{
+ "id": 1832,
"subnet": "143.40.100.0/24",
"option-data": [
{
@@ -338853,6 +340685,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AAL01
{
+ "id": 1833,
"subnet": "143.40.118.0/24",
"option-data": [
{
@@ -339030,6 +340863,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOE01
{
+ "id": 1834,
"subnet": "143.40.120.0/24",
"option-data": [
{
@@ -339207,6 +341041,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LBG01
{
+ "id": 1835,
"subnet": "143.40.122.0/24",
"option-data": [
{
@@ -339384,6 +341219,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESL01
{
+ "id": 1836,
"subnet": "143.40.124.0/24",
"option-data": [
{
@@ -339561,6 +341397,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GPP01
{
+ "id": 1837,
"subnet": "143.40.126.0/24",
"option-data": [
{
@@ -339738,6 +341575,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REU01
{
+ "id": 1838,
"subnet": "143.40.128.0/24",
"option-data": [
{
@@ -339915,6 +341753,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HNN01
{
+ "id": 1839,
"subnet": "143.40.130.0/24",
"option-data": [
{
@@ -340092,6 +341931,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWG01
{
+ "id": 1840,
"subnet": "143.40.132.0/24",
"option-data": [
{
@@ -340269,6 +342109,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TUE01
{
+ "id": 1841,
"subnet": "143.40.134.0/24",
"option-data": [
{
@@ -340446,6 +342287,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AAL01
{
+ "id": 1842,
"subnet": "143.40.136.0/22",
"option-data": [
{
@@ -340623,6 +342465,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BOE01
{
+ "id": 1843,
"subnet": "143.40.140.0/22",
"option-data": [
{
@@ -340800,6 +342643,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LBG01
{
+ "id": 1844,
"subnet": "143.40.144.0/22",
"option-data": [
{
@@ -340977,6 +342821,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REU01
{
+ "id": 1845,
"subnet": "143.40.148.0/22",
"option-data": [
{
@@ -341154,6 +342999,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESL01
{
+ "id": 1846,
"subnet": "143.40.152.0/22",
"option-data": [
{
@@ -341331,6 +343177,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWG01
{
+ "id": 1847,
"subnet": "143.40.156.0/22",
"option-data": [
{
@@ -341508,6 +343355,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GPP01
{
+ "id": 1848,
"subnet": "143.40.160.0/22",
"option-data": [
{
@@ -341685,6 +343533,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HNN01
{
+ "id": 1849,
"subnet": "143.40.164.0/22",
"option-data": [
{
@@ -341862,6 +343711,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIN01
{
+ "id": 1850,
"subnet": "143.40.168.0/24",
"option-data": [
{
@@ -342039,6 +343889,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SDO01
{
+ "id": 1851,
"subnet": "143.40.170.0/24",
"option-data": [
{
@@ -342216,6 +344067,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAC01
{
+ "id": 1852,
"subnet": "143.40.172.0/24",
"option-data": [
{
@@ -342393,6 +344245,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAL01
{
+ "id": 1853,
"subnet": "143.40.174.0/24",
"option-data": [
{
@@ -342570,6 +344423,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BBI01
{
+ "id": 1854,
"subnet": "143.40.176.0/24",
"option-data": [
{
@@ -342747,6 +344601,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FIL01
{
+ "id": 1855,
"subnet": "143.40.178.0/24",
"option-data": [
{
@@ -342924,6 +344779,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FEL01
{
+ "id": 1856,
"subnet": "143.40.180.0/24",
"option-data": [
{
@@ -343101,6 +344957,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KIT01
{
+ "id": 1857,
"subnet": "143.40.182.0/24",
"option-data": [
{
@@ -343278,6 +345135,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEO01
{
+ "id": 1858,
"subnet": "143.40.184.0/24",
"option-data": [
{
@@ -343455,6 +345313,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LOE01
{
+ "id": 1859,
"subnet": "143.50.64.0/24",
"option-data": [
{
@@ -343632,6 +345491,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRE01
{
+ "id": 1860,
"subnet": "143.50.66.0/24",
"option-data": [
{
@@ -343809,6 +345669,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VIL01
{
+ "id": 1861,
"subnet": "143.50.68.0/24",
"option-data": [
{
@@ -343986,6 +345847,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WRH01
{
+ "id": 1862,
"subnet": "143.50.70.0/24",
"option-data": [
{
@@ -344163,6 +346025,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LOE01
{
+ "id": 1863,
"subnet": "143.50.72.0/22",
"option-data": [
{
@@ -344340,6 +346203,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRE01
{
+ "id": 1864,
"subnet": "143.50.76.0/22",
"option-data": [
{
@@ -344517,6 +346381,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VIL01
{
+ "id": 1865,
"subnet": "143.50.80.0/22",
"option-data": [
{
@@ -344694,6 +346559,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VIL02
{
+ "id": 1866,
"subnet": "143.50.84.0/24",
"option-data": [
{
@@ -344871,6 +346737,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LAH01
{
+ "id": 1867,
"subnet": "143.50.86.0/24",
"option-data": [
{
@@ -345048,6 +346915,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OGB02
{
+ "id": 1868,
"subnet": "143.50.88.0/24",
"option-data": [
{
@@ -345208,6 +347076,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EMN01
{
+ "id": 1869,
"subnet": "143.50.90.0/24",
"option-data": [
{
@@ -345385,6 +347254,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RWL01
{
+ "id": 1870,
"subnet": "143.50.92.0/24",
"option-data": [
{
@@ -345562,6 +347432,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RFD01
{
+ "id": 1871,
"subnet": "143.50.94.0/24",
"option-data": [
{
@@ -345739,6 +347610,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ALB01
{
+ "id": 1872,
"subnet": "143.60.58.0/24",
"option-data": [
{
@@ -345916,6 +347788,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KEM01
{
+ "id": 1873,
"subnet": "143.60.60.0/24",
"option-data": [
{
@@ -346093,6 +347966,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRH01
{
+ "id": 1874,
"subnet": "143.60.62.0/24",
"option-data": [
{
@@ -346270,6 +348144,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGN01
{
+ "id": 1875,
"subnet": "143.60.64.0/24",
"option-data": [
{
@@ -346447,6 +348322,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BIB01
{
+ "id": 1876,
"subnet": "143.60.66.0/24",
"option-data": [
{
@@ -346624,6 +348500,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ALB01
{
+ "id": 1877,
"subnet": "143.60.68.0/22",
"option-data": [
{
@@ -346801,6 +348678,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KEM01
{
+ "id": 1878,
"subnet": "143.60.72.0/22",
"option-data": [
{
@@ -346978,6 +348856,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRH01
{
+ "id": 1879,
"subnet": "143.60.76.0/22",
"option-data": [
{
@@ -347155,6 +349034,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGN01
{
+ "id": 1880,
"subnet": "143.60.80.0/22",
"option-data": [
{
@@ -347332,6 +349212,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TUT01
{
+ "id": 1881,
"subnet": "143.60.84.0/24",
"option-data": [
{
@@ -347509,6 +349390,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SIG01
{
+ "id": 1882,
"subnet": "143.60.86.0/24",
"option-data": [
{
@@ -347686,6 +349568,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KON01
{
+ "id": 1883,
"subnet": "143.60.88.0/24",
"option-data": [
{
@@ -347863,6 +349746,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RAV01
{
+ "id": 1884,
"subnet": "143.60.90.0/24",
"option-data": [
{
@@ -348040,6 +349924,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAD01
{
+ "id": 1885,
"subnet": "143.70.56.0/24",
"option-data": [
{
@@ -348217,6 +350102,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAR01
{
+ "id": 1886,
"subnet": "143.70.58.0/24",
"option-data": [
{
@@ -348394,6 +350280,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PFH01
{
+ "id": 1887,
"subnet": "143.70.60.0/24",
"option-data": [
{
@@ -348571,6 +350458,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BCH01
{
+ "id": 1888,
"subnet": "143.70.62.0/24",
"option-data": [
{
@@ -348748,6 +350636,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAR01
{
+ "id": 1889,
"subnet": "143.70.64.0/22",
"option-data": [
{
@@ -348925,6 +350814,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAD01
{
+ "id": 1890,
"subnet": "143.70.68.0/22",
"option-data": [
{
@@ -349102,6 +350992,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PFH01
{
+ "id": 1891,
"subnet": "143.70.72.0/22",
"option-data": [
{
@@ -349279,6 +351170,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KAR03
{
+ "id": 1892,
"subnet": "143.70.76.0/24",
"option-data": [
{
@@ -349456,6 +351348,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRD01
{
+ "id": 1893,
"subnet": "143.70.78.0/24",
"option-data": [
{
@@ -349633,6 +351526,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ETT01
{
+ "id": 1894,
"subnet": "143.70.80.0/24",
"option-data": [
{
@@ -349810,6 +351704,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RAS01
{
+ "id": 1895,
"subnet": "143.70.82.0/24",
"option-data": [
{
@@ -349987,6 +351882,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE01
{
+ "id": 1896,
"subnet": "144.0.30.0/24",
"option-data": [
{
@@ -350164,6 +352060,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE01
{
+ "id": 1897,
"subnet": "144.0.52.0/22",
"option-data": [
{
@@ -350341,6 +352238,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE01
{
+ "id": 1898,
"subnet": "144.0.80.0/22",
"option-data": [
{
@@ -350528,6 +352426,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE01
{
+ "id": 1899,
"subnet": "144.0.88.0/24",
"option-data": [
{
@@ -350705,6 +352604,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE07
{
+ "id": 1900,
"subnet": "144.30.10.0/24",
"option-data": [
{
@@ -350882,6 +352782,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE28
{
+ "id": 1901,
"subnet": "144.30.12.0/24",
"option-data": [
{
@@ -351059,6 +352960,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE24
{
+ "id": 1902,
"subnet": "144.30.46.0/24",
"option-data": [
{
@@ -351236,6 +353138,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE17
{
+ "id": 1903,
"subnet": "144.30.54.0/24",
"option-data": [
{
@@ -351413,6 +353316,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE11
{
+ "id": 1904,
"subnet": "144.30.56.0/24",
"option-data": [
{
@@ -351590,6 +353494,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE30
{
+ "id": 1905,
"subnet": "144.30.60.0/24",
"option-data": [
{
@@ -351750,6 +353655,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE08
{
+ "id": 1906,
"subnet": "144.30.62.0/24",
"option-data": [
{
@@ -351927,6 +353833,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE06
{
+ "id": 1907,
"subnet": "144.30.64.0/24",
"option-data": [
{
@@ -352104,6 +354011,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE02
{
+ "id": 1908,
"subnet": "144.30.68.0/24",
"option-data": [
{
@@ -352281,6 +354189,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# UFO01
{
+ "id": 1909,
"subnet": "144.30.88.0/24",
"option-data": [
{
@@ -352458,6 +354367,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE10
{
+ "id": 1910,
"subnet": "144.30.90.0/24",
"option-data": [
{
@@ -352635,6 +354545,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE30
{
+ "id": 1911,
"subnet": "144.30.94.0/24",
"option-data": [
{
@@ -352812,6 +354723,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUE22
{
+ "id": 1912,
"subnet": "144.35.10.0/24",
"option-data": [
{
@@ -352989,6 +354901,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ROS02
{
+ "id": 1913,
"subnet": "144.40.44.0/24",
"option-data": [
{
@@ -353166,6 +355079,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFK01
{
+ "id": 1914,
"subnet": "144.40.46.0/24",
"option-data": [
{
@@ -353343,6 +355257,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ROS01
{
+ "id": 1915,
"subnet": "144.40.48.0/22",
"option-data": [
{
@@ -353520,6 +355435,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GAP01
{
+ "id": 1916,
"subnet": "144.40.52.0/24",
"option-data": [
{
@@ -353697,6 +355613,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FSG01
{
+ "id": 1917,
"subnet": "144.40.54.0/24",
"option-data": [
{
@@ -353874,6 +355791,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DAC01
{
+ "id": 1918,
"subnet": "144.40.56.0/24",
"option-data": [
{
@@ -354051,6 +355969,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PUL01
{
+ "id": 1919,
"subnet": "144.40.58.0/24",
"option-data": [
{
@@ -354228,6 +356147,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OTT01
{
+ "id": 1920,
"subnet": "144.40.60.0/24",
"option-data": [
{
@@ -354405,6 +356325,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ROS02
{
+ "id": 1921,
"subnet": "144.40.68.0/24",
"option-data": [
{
@@ -354576,6 +356497,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AGB01
{
+ "id": 1922,
"subnet": "144.50.48.0/24",
"option-data": [
{
@@ -354753,6 +356675,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ING01
{
+ "id": 1923,
"subnet": "144.50.50.0/24",
"option-data": [
{
@@ -354930,6 +356853,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HDH01
{
+ "id": 1924,
"subnet": "144.50.52.0/24",
"option-data": [
{
@@ -355107,6 +357031,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ULM01
{
+ "id": 1925,
"subnet": "144.50.54.0/24",
"option-data": [
{
@@ -355284,6 +357209,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ING01
{
+ "id": 1926,
"subnet": "144.50.56.0/22",
"option-data": [
{
@@ -355461,6 +357387,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AGB01
{
+ "id": 1927,
"subnet": "144.50.60.0/22",
"option-data": [
{
@@ -355638,6 +357565,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ULM01
{
+ "id": 1928,
"subnet": "144.50.64.0/22",
"option-data": [
{
@@ -355815,6 +357743,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HDH01
{
+ "id": 1929,
"subnet": "144.50.68.0/22",
"option-data": [
{
@@ -355992,6 +357921,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MEM01
{
+ "id": 1930,
"subnet": "144.50.72.0/24",
"option-data": [
{
@@ -356169,6 +358099,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ING03
{
+ "id": 1931,
"subnet": "144.50.74.0/24",
"option-data": [
{
@@ -356340,6 +358271,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AGB02
{
+ "id": 1932,
"subnet": "144.50.76.0/24",
"option-data": [
{
@@ -356517,6 +358449,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STB01
{
+ "id": 1933,
"subnet": "144.60.110.0/24",
"option-data": [
{
@@ -356694,6 +358627,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WKB01
{
+ "id": 1934,
"subnet": "144.60.112.0/24",
"option-data": [
{
@@ -356871,6 +358805,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RTZ01
{
+ "id": 1935,
"subnet": "144.60.128.0/22",
"option-data": [
{
@@ -357048,6 +358983,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWD01
{
+ "id": 1936,
"subnet": "144.60.132.0/24",
"option-data": [
{
@@ -357225,6 +359161,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWD01
{
+ "id": 1937,
"subnet": "144.60.136.0/22",
"option-data": [
{
@@ -357402,6 +359339,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# VIC01
{
+ "id": 1938,
"subnet": "144.60.152.0/22",
"option-data": [
{
@@ -357579,6 +359517,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WDM01
{
+ "id": 1939,
"subnet": "144.60.160.0/22",
"option-data": [
{
@@ -357756,6 +359695,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BLF01
{
+ "id": 1940,
"subnet": "144.60.164.0/22",
"option-data": [
{
@@ -357933,6 +359873,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CHA01
{
+ "id": 1941,
"subnet": "144.60.172.0/22",
"option-data": [
{
@@ -358110,6 +360051,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FTH01
{
+ "id": 1942,
"subnet": "144.60.176.0/22",
"option-data": [
{
@@ -358287,6 +360229,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KTZ01
{
+ "id": 1943,
"subnet": "144.60.184.0/22",
"option-data": [
{
@@ -358464,6 +360407,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LAM01
{
+ "id": 1944,
"subnet": "144.60.188.0/22",
"option-data": [
{
@@ -358641,6 +360585,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NAB01
{
+ "id": 1945,
"subnet": "144.60.196.0/22",
"option-data": [
{
@@ -358818,6 +360763,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NVM01
{
+ "id": 1946,
"subnet": "144.60.200.0/22",
"option-data": [
{
@@ -358995,6 +360941,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NIT01
{
+ "id": 1947,
"subnet": "144.60.208.0/22",
"option-data": [
{
@@ -359172,6 +361119,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OVI01
{
+ "id": 1948,
"subnet": "144.60.212.0/22",
"option-data": [
{
@@ -359349,6 +361297,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REG03
{
+ "id": 1949,
"subnet": "144.60.220.0/22",
"option-data": [
{
@@ -359526,6 +361475,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RDG01
{
+ "id": 1950,
"subnet": "144.60.224.0/22",
"option-data": [
{
@@ -359703,6 +361653,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUL01
{
+ "id": 1951,
"subnet": "144.60.232.0/24",
"option-data": [
{
@@ -359880,6 +361831,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MUL01
{
+ "id": 1952,
"subnet": "144.60.236.0/22",
"option-data": [
{
@@ -360057,6 +362009,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LAN01
{
+ "id": 1953,
"subnet": "144.60.8.0/24",
"option-data": [
{
@@ -360234,6 +362187,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAS01
{
+ "id": 1954,
"subnet": "144.61.10.0/24",
"option-data": [
{
@@ -360411,6 +362365,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PAS01
{
+ "id": 1955,
"subnet": "144.61.12.0/22",
"option-data": [
{
@@ -360588,6 +362543,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZIR01
{
+ "id": 1956,
"subnet": "144.70.12.0/24",
"option-data": [
{
@@ -360765,6 +362721,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FUE02
{
+ "id": 1957,
"subnet": "144.70.146.0/24",
"option-data": [
{
@@ -360942,6 +362899,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB01
{
+ "id": 1958,
"subnet": "144.70.156.0/22",
"option-data": [
{
@@ -361119,6 +363077,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERL01
{
+ "id": 1959,
"subnet": "144.70.22.0/24",
"option-data": [
{
@@ -361296,6 +363255,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB07
{
+ "id": 1960,
"subnet": "144.70.246.0/24",
"option-data": [
{
@@ -361473,6 +363433,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LAU01
{
+ "id": 1961,
"subnet": "144.70.248.0/24",
"option-data": [
{
@@ -361650,6 +363611,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SBA01
{
+ "id": 1962,
"subnet": "144.70.252.0/24",
"option-data": [
{
@@ -361827,6 +363789,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB10
{
+ "id": 1963,
"subnet": "144.70.254.0/24",
"option-data": [
{
@@ -362004,6 +363967,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SON01
{
+ "id": 1964,
"subnet": "144.70.36.0/24",
"option-data": [
{
@@ -362181,6 +364145,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB07
{
+ "id": 1965,
"subnet": "144.70.46.0/24",
"option-data": [
{
@@ -362358,6 +364323,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB03
{
+ "id": 1966,
"subnet": "144.70.6.0/24",
"option-data": [
{
@@ -362535,6 +364501,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AMB01
{
+ "id": 1967,
"subnet": "144.70.64.0/24",
"option-data": [
{
@@ -362712,6 +364679,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB01
{
+ "id": 1968,
"subnet": "144.70.88.0/24",
"option-data": [
{
@@ -362889,6 +364857,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB01
{
+ "id": 1969,
"subnet": "144.70.90.0/24",
"option-data": [
{
@@ -363066,6 +365035,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB01
{
+ "id": 1970,
"subnet": "144.70.92.0/24",
"option-data": [
{
@@ -363243,6 +365213,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB01
{
+ "id": 1971,
"subnet": "144.70.94.0/24",
"option-data": [
{
@@ -363420,6 +365391,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REG01
{
+ "id": 1972,
"subnet": "144.71.102.0/24",
"option-data": [
{
@@ -363597,6 +365569,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WEN02
{
+ "id": 1973,
"subnet": "144.71.104.0/24",
"option-data": [
{
@@ -363774,6 +365747,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAM01
{
+ "id": 1974,
"subnet": "144.71.108.0/22",
"option-data": [
{
@@ -363951,6 +365925,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# COB01
{
+ "id": 1975,
"subnet": "144.71.116.0/22",
"option-data": [
{
@@ -364128,6 +366103,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ARZ01
{
+ "id": 1976,
"subnet": "144.71.12.0/22",
"option-data": [
{
@@ -364305,6 +366281,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REG01
{
+ "id": 1977,
"subnet": "144.71.120.0/22",
"option-data": [
{
@@ -364482,6 +366459,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB04
{
+ "id": 1978,
"subnet": "144.71.124.0/24",
"option-data": [
{
@@ -364659,6 +366637,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AUB01
{
+ "id": 1979,
"subnet": "144.71.16.0/22",
"option-data": [
{
@@ -364836,6 +366815,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BCK01
{
+ "id": 1980,
"subnet": "144.71.24.0/22",
"option-data": [
{
@@ -365013,6 +366993,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BST01
{
+ "id": 1981,
"subnet": "144.71.28.0/22",
"option-data": [
{
@@ -365190,6 +367171,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB04
{
+ "id": 1982,
"subnet": "144.71.34.0/24",
"option-data": [
{
@@ -365350,6 +367332,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAY02
{
+ "id": 1983,
"subnet": "144.71.36.0/22",
"option-data": [
{
@@ -365527,6 +367510,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ASB01
{
+ "id": 1984,
"subnet": "144.71.4.0/22",
"option-data": [
{
@@ -365704,6 +367688,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB05
{
+ "id": 1985,
"subnet": "144.71.40.0/24",
"option-data": [
{
@@ -365881,6 +367866,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KUL01
{
+ "id": 1986,
"subnet": "144.71.42.0/24",
"option-data": [
{
@@ -366058,6 +368044,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GRA01
{
+ "id": 1987,
"subnet": "144.71.48.0/22",
"option-data": [
{
@@ -366235,6 +368222,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HLM01
{
+ "id": 1988,
"subnet": "144.71.52.0/22",
"option-data": [
{
@@ -366412,6 +368400,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOF05
{
+ "id": 1989,
"subnet": "144.71.56.0/24",
"option-data": [
{
@@ -366589,6 +368578,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOF05
{
+ "id": 1990,
"subnet": "144.71.60.0/22",
"option-data": [
{
@@ -366766,6 +368756,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MTZ03
{
+ "id": 1991,
"subnet": "144.71.68.0/22",
"option-data": [
{
@@ -366943,6 +368934,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOF04
{
+ "id": 1992,
"subnet": "144.71.72.0/22",
"option-data": [
{
@@ -367120,6 +369112,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MTE01
{
+ "id": 1993,
"subnet": "144.71.76.0/22",
"option-data": [
{
@@ -367297,6 +369290,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAM01
{
+ "id": 1994,
"subnet": "144.71.94.0/24",
"option-data": [
{
@@ -367474,6 +369468,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAY03
{
+ "id": 1995,
"subnet": "144.71.96.0/24",
"option-data": [
{
@@ -367651,6 +369646,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# COB01
{
+ "id": 1996,
"subnet": "144.71.98.0/24",
"option-data": [
{
@@ -367828,6 +369824,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HOF09
{
+ "id": 1997,
"subnet": "144.75.124.0/22",
"option-data": [
{
@@ -368005,6 +370002,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BAY03
{
+ "id": 1998,
"subnet": "144.75.132.0/22",
"option-data": [
{
@@ -368182,6 +370180,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MHB01
{
+ "id": 1999,
"subnet": "144.75.140.0/22",
"option-data": [
{
@@ -368359,6 +370358,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NAI01
{
+ "id": 2000,
"subnet": "144.75.148.0/22",
"option-data": [
{
@@ -368536,6 +370536,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB21
{
+ "id": 2001,
"subnet": "144.75.160.0/22",
"option-data": [
{
@@ -368713,6 +370714,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRB17
{
+ "id": 2002,
"subnet": "144.75.172.0/22",
"option-data": [
{
@@ -368890,6 +370892,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PEG01
{
+ "id": 2003,
"subnet": "144.75.176.0/22",
"option-data": [
{
@@ -369067,6 +371070,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REH01
{
+ "id": 2004,
"subnet": "144.75.192.0/22",
"option-data": [
{
@@ -369244,6 +371248,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWB01
{
+ "id": 2005,
"subnet": "144.75.196.0/22",
"option-data": [
{
@@ -369421,6 +371426,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SBZ01
{
+ "id": 2006,
"subnet": "144.75.200.0/22",
"option-data": [
{
@@ -369598,6 +371604,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SEL02
{
+ "id": 2007,
"subnet": "144.75.208.0/22",
"option-data": [
{
@@ -369775,6 +371782,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SUZ01
{
+ "id": 2008,
"subnet": "144.75.212.0/22",
"option-data": [
{
@@ -369952,6 +371960,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TIR01
{
+ "id": 2009,
"subnet": "144.75.220.0/22",
"option-data": [
{
@@ -370129,6 +372138,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WAS01
{
+ "id": 2010,
"subnet": "144.75.224.0/22",
"option-data": [
{
@@ -370306,6 +372316,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WEN02
{
+ "id": 2011,
"subnet": "144.75.232.0/22",
"option-data": [
{
@@ -370483,6 +372494,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WDB01
{
+ "id": 2012,
"subnet": "144.75.236.0/22",
"option-data": [
{
@@ -370660,6 +372672,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WSD01
{
+ "id": 2013,
"subnet": "144.75.240.0/22",
"option-data": [
{
@@ -370837,6 +372850,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWF01
{
+ "id": 2014,
"subnet": "144.76.20.0/24",
"option-data": [
{
@@ -371014,6 +373028,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUE01
{
+ "id": 2015,
"subnet": "144.76.22.0/24",
"option-data": [
{
@@ -371191,6 +373206,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWF01
{
+ "id": 2016,
"subnet": "144.76.24.0/22",
"option-data": [
{
@@ -371368,6 +373384,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WUE01
{
+ "id": 2017,
"subnet": "144.76.28.0/22",
"option-data": [
{
@@ -371545,6 +373562,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 2018,
"subnet": "145.0.110.0/24",
"option-data": [
{
@@ -371722,6 +373740,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 2019,
"subnet": "145.0.116.0/24",
"option-data": [
{
@@ -371899,6 +373918,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 2020,
"subnet": "145.0.52.0/22",
"option-data": [
{
@@ -372082,6 +374102,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 2021,
"subnet": "145.0.80.0/24",
"option-data": [
{
@@ -372259,6 +374280,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 2022,
"subnet": "145.0.82.0/24",
"option-data": [
{
@@ -372436,6 +374458,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER01
{
+ "id": 2023,
"subnet": "145.0.84.0/22",
"option-data": [
{
@@ -372613,6 +374636,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DBN01
{
+ "id": 2024,
"subnet": "145.100.102.0/24",
"option-data": [
{
@@ -372790,6 +374814,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DBN01
{
+ "id": 2025,
"subnet": "145.100.104.0/22",
"option-data": [
{
@@ -372967,6 +374992,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TOR01
{
+ "id": 2026,
"subnet": "145.100.108.0/22",
"option-data": [
{
@@ -373144,6 +375170,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI06
{
+ "id": 2027,
"subnet": "145.100.114.0/24",
"option-data": [
{
@@ -373321,6 +375348,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 2028,
"subnet": "145.100.120.0/22",
"option-data": [
{
@@ -373498,6 +375526,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 2029,
"subnet": "145.100.124.0/22",
"option-data": [
{
@@ -373675,6 +375704,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 2030,
"subnet": "145.100.202.0/24",
"option-data": [
{
@@ -373852,6 +375882,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI06
{
+ "id": 2031,
"subnet": "145.100.42.0/24",
"option-data": [
{
@@ -374012,6 +376043,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DLI01
{
+ "id": 2032,
"subnet": "145.100.50.0/24",
"option-data": [
{
@@ -374189,6 +376221,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI03
{
+ "id": 2033,
"subnet": "145.100.68.0/24",
"option-data": [
{
@@ -374366,6 +376399,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 2034,
"subnet": "145.100.72.0/24",
"option-data": [
{
@@ -374543,6 +376577,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 2035,
"subnet": "145.100.74.0/24",
"option-data": [
{
@@ -374720,6 +376755,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 2036,
"subnet": "145.100.76.0/24",
"option-data": [
{
@@ -374897,6 +376933,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LEI01
{
+ "id": 2037,
"subnet": "145.100.80.0/22",
"option-data": [
{
@@ -375074,6 +377111,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MBG02
{
+ "id": 2038,
"subnet": "145.110.156.0/24",
"option-data": [
{
@@ -375251,6 +377289,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MBG02
{
+ "id": 2039,
"subnet": "145.110.160.0/22",
"option-data": [
{
@@ -375428,6 +377467,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BUR01
{
+ "id": 2040,
"subnet": "145.110.50.0/24",
"option-data": [
{
@@ -375605,6 +377645,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SZW02
{
+ "id": 2041,
"subnet": "145.110.52.0/24",
"option-data": [
{
@@ -375782,6 +377823,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# STE01
{
+ "id": 2042,
"subnet": "145.110.54.0/24",
"option-data": [
{
@@ -375959,6 +378001,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HLB01
{
+ "id": 2043,
"subnet": "145.110.56.0/24",
"option-data": [
{
@@ -376136,6 +378179,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WGR01
{
+ "id": 2044,
"subnet": "145.110.58.0/24",
"option-data": [
{
@@ -376313,6 +378357,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MBG03
{
+ "id": 2045,
"subnet": "145.110.6.0/24",
"option-data": [
{
@@ -376490,6 +378535,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MBG04
{
+ "id": 2046,
"subnet": "145.110.60.0/22",
"option-data": [
{
@@ -376667,6 +378713,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TEL01
{
+ "id": 2047,
"subnet": "145.20.60.0/22",
"option-data": [
{
@@ -376856,6 +378903,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TEL01
{
+ "id": 2048,
"subnet": "145.20.64.0/24",
"option-data": [
{
@@ -377033,6 +379081,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TEL01
{
+ "id": 2049,
"subnet": "145.20.72.0/22",
"option-data": [
{
@@ -377210,6 +379259,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER39
{
+ "id": 2050,
"subnet": "145.30.132.0/24",
"option-data": [
{
@@ -377387,6 +379437,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER38
{
+ "id": 2051,
"subnet": "145.30.134.0/24",
"option-data": [
{
@@ -377564,6 +379615,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER37
{
+ "id": 2052,
"subnet": "145.30.154.0/24",
"option-data": [
{
@@ -377741,6 +379793,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER26
{
+ "id": 2053,
"subnet": "145.30.156.0/24",
"option-data": [
{
@@ -377918,6 +379971,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER18
{
+ "id": 2054,
"subnet": "145.30.162.0/24",
"option-data": [
{
@@ -378095,6 +380149,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER34
{
+ "id": 2055,
"subnet": "145.30.172.0/24",
"option-data": [
{
@@ -378272,6 +380327,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER24
{
+ "id": 2056,
"subnet": "145.30.182.0/24",
"option-data": [
{
@@ -378449,6 +380505,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER31
{
+ "id": 2057,
"subnet": "145.30.184.0/24",
"option-data": [
{
@@ -378626,6 +380683,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER24
{
+ "id": 2058,
"subnet": "145.30.246.0/24",
"option-data": [
{
@@ -378786,6 +380844,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER30
{
+ "id": 2059,
"subnet": "145.30.248.0/24",
"option-data": [
{
@@ -378963,6 +381022,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER17
{
+ "id": 2060,
"subnet": "145.30.252.0/24",
"option-data": [
{
@@ -379140,6 +381200,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER25
{
+ "id": 2061,
"subnet": "145.30.254.0/24",
"option-data": [
{
@@ -379317,6 +381378,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER49
{
+ "id": 2062,
"subnet": "145.30.26.0/24",
"option-data": [
{
@@ -379494,6 +381556,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER48
{
+ "id": 2063,
"subnet": "145.30.28.0/24",
"option-data": [
{
@@ -379671,6 +381734,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER46
{
+ "id": 2064,
"subnet": "145.30.30.0/24",
"option-data": [
{
@@ -379848,6 +381912,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER40
{
+ "id": 2065,
"subnet": "145.30.32.0/24",
"option-data": [
{
@@ -380025,6 +382090,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER67
{
+ "id": 2066,
"subnet": "145.30.64.0/24",
"option-data": [
{
@@ -380202,6 +382268,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER08
{
+ "id": 2067,
"subnet": "145.31.10.0/24",
"option-data": [
{
@@ -380379,6 +382446,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER95
{
+ "id": 2068,
"subnet": "145.31.114.0/24",
"option-data": [
{
@@ -380539,6 +382607,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER96
{
+ "id": 2069,
"subnet": "145.31.120.0/24",
"option-data": [
{
@@ -380699,6 +382768,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ORA01
{
+ "id": 2070,
"subnet": "145.31.64.0/24",
"option-data": [
{
@@ -380876,6 +382946,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RAW01
{
+ "id": 2071,
"subnet": "145.31.66.0/24",
"option-data": [
{
@@ -381053,6 +383124,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER19
{
+ "id": 2072,
"subnet": "145.31.68.0/24",
"option-data": [
{
@@ -381230,6 +383302,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER15
{
+ "id": 2073,
"subnet": "145.31.70.0/24",
"option-data": [
{
@@ -381407,6 +383480,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER03
{
+ "id": 2074,
"subnet": "145.31.72.0/24",
"option-data": [
{
@@ -381584,6 +383658,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER07
{
+ "id": 2075,
"subnet": "145.31.74.0/24",
"option-data": [
{
@@ -381761,6 +383836,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER06
{
+ "id": 2076,
"subnet": "145.31.76.0/24",
"option-data": [
{
@@ -381938,6 +384014,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER09
{
+ "id": 2077,
"subnet": "145.31.78.0/24",
"option-data": [
{
@@ -382115,6 +384192,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER10
{
+ "id": 2078,
"subnet": "145.31.80.0/24",
"option-data": [
{
@@ -382292,6 +384370,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER11
{
+ "id": 2079,
"subnet": "145.31.82.0/24",
"option-data": [
{
@@ -382469,6 +384548,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER12
{
+ "id": 2080,
"subnet": "145.31.84.0/24",
"option-data": [
{
@@ -382646,6 +384726,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER14
{
+ "id": 2081,
"subnet": "145.31.86.0/24",
"option-data": [
{
@@ -382823,6 +384904,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER16
{
+ "id": 2082,
"subnet": "145.31.88.0/24",
"option-data": [
{
@@ -383000,6 +385082,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER05
{
+ "id": 2083,
"subnet": "145.31.90.0/24",
"option-data": [
{
@@ -383177,6 +385260,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER97
{
+ "id": 2084,
"subnet": "145.31.92.0/24",
"option-data": [
{
@@ -383354,6 +385438,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER93
{
+ "id": 2085,
"subnet": "145.31.94.0/24",
"option-data": [
{
@@ -383531,6 +385616,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER35
{
+ "id": 2086,
"subnet": "145.31.96.0/24",
"option-data": [
{
@@ -383708,6 +385794,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER74
{
+ "id": 2087,
"subnet": "145.32.100.0/24",
"option-data": [
{
@@ -383868,6 +385955,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER57
{
+ "id": 2088,
"subnet": "145.32.102.0/24",
"option-data": [
{
@@ -384045,6 +386133,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER61
{
+ "id": 2089,
"subnet": "145.32.104.0/24",
"option-data": [
{
@@ -384222,6 +386311,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER66
{
+ "id": 2090,
"subnet": "145.32.108.0/24",
"option-data": [
{
@@ -384399,6 +386489,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER90
{
+ "id": 2091,
"subnet": "145.32.110.0/24",
"option-data": [
{
@@ -384576,6 +386667,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER63
{
+ "id": 2092,
"subnet": "145.32.112.0/24",
"option-data": [
{
@@ -384753,6 +386845,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER89
{
+ "id": 2093,
"subnet": "145.32.114.0/24",
"option-data": [
{
@@ -384930,6 +387023,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER82
{
+ "id": 2094,
"subnet": "145.32.116.0/24",
"option-data": [
{
@@ -385107,6 +387201,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER55
{
+ "id": 2095,
"subnet": "145.32.118.0/24",
"option-data": [
{
@@ -385284,6 +387379,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER54
{
+ "id": 2096,
"subnet": "145.32.120.0/24",
"option-data": [
{
@@ -385461,6 +387557,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER51
{
+ "id": 2097,
"subnet": "145.32.122.0/24",
"option-data": [
{
@@ -385638,6 +387735,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER68
{
+ "id": 2098,
"subnet": "145.32.124.0/24",
"option-data": [
{
@@ -385815,6 +387913,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER74
{
+ "id": 2099,
"subnet": "145.32.126.0/24",
"option-data": [
{
@@ -385992,6 +388091,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER80
{
+ "id": 2100,
"subnet": "145.32.128.0/24",
"option-data": [
{
@@ -386169,6 +388269,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER72
{
+ "id": 2101,
"subnet": "145.32.24.0/24",
"option-data": [
{
@@ -386346,6 +388447,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER64
{
+ "id": 2102,
"subnet": "145.32.38.0/24",
"option-data": [
{
@@ -386523,6 +388625,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER79
{
+ "id": 2103,
"subnet": "145.32.42.0/24",
"option-data": [
{
@@ -386700,6 +388803,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER78
{
+ "id": 2104,
"subnet": "145.32.68.0/24",
"option-data": [
{
@@ -386877,6 +388981,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BER77
{
+ "id": 2105,
"subnet": "145.32.98.0/24",
"option-data": [
{
@@ -387054,6 +389159,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BDG01
{
+ "id": 2106,
"subnet": "145.40.12.0/24",
"option-data": [
{
@@ -387231,6 +389337,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# POT02
{
+ "id": 2107,
"subnet": "145.40.18.0/24",
"option-data": [
{
@@ -387408,6 +389515,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LWF01
{
+ "id": 2108,
"subnet": "145.40.20.0/24",
"option-data": [
{
@@ -387585,6 +389693,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LUC01
{
+ "id": 2109,
"subnet": "145.40.36.0/24",
"option-data": [
{
@@ -387762,6 +389871,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# NRP01
{
+ "id": 2110,
"subnet": "145.40.42.0/24",
"option-data": [
{
@@ -387939,6 +390049,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# POT01
{
+ "id": 2111,
"subnet": "145.40.56.0/24",
"option-data": [
{
@@ -388116,6 +390227,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# TEL02
{
+ "id": 2112,
"subnet": "145.40.58.0/24",
"option-data": [
{
@@ -388293,6 +390405,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# POT01
{
+ "id": 2113,
"subnet": "145.40.60.0/22",
"option-data": [
{
@@ -388470,6 +390583,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFO01
{
+ "id": 2114,
"subnet": "145.42.34.0/24",
"option-data": [
{
@@ -388647,6 +390761,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFO01
{
+ "id": 2115,
"subnet": "145.42.36.0/22",
"option-data": [
{
@@ -388824,6 +390939,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EBE01
{
+ "id": 2116,
"subnet": "145.42.40.0/22",
"option-data": [
{
@@ -389001,6 +391117,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FWD01
{
+ "id": 2117,
"subnet": "145.42.44.0/24",
"option-data": [
{
@@ -389178,6 +391295,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# EHS01
{
+ "id": 2118,
"subnet": "145.42.48.0/24",
"option-data": [
{
@@ -389355,6 +391473,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SWT01
{
+ "id": 2119,
"subnet": "145.42.50.0/24",
"option-data": [
{
@@ -389532,6 +391651,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERK01
{
+ "id": 2120,
"subnet": "145.44.10.0/24",
"option-data": [
{
@@ -389709,6 +391829,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SPG01
{
+ "id": 2121,
"subnet": "145.44.22.0/24",
"option-data": [
{
@@ -389886,6 +392007,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SBG01
{
+ "id": 2122,
"subnet": "145.44.24.0/24",
"option-data": [
{
@@ -390063,6 +392185,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# COT02
{
+ "id": 2123,
"subnet": "145.44.38.0/24",
"option-data": [
{
@@ -390240,6 +392363,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# COT02
{
+ "id": 2124,
"subnet": "145.44.40.0/22",
"option-data": [
{
@@ -390417,6 +392541,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GUB02
{
+ "id": 2125,
"subnet": "145.44.44.0/24",
"option-data": [
{
@@ -390594,6 +392719,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CHE08
{
+ "id": 2126,
"subnet": "145.50.112.0/22",
"option-data": [
{
@@ -390771,6 +392897,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CHE07
{
+ "id": 2127,
"subnet": "145.50.120.0/22",
"option-data": [
{
@@ -390948,6 +393075,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRG03
{
+ "id": 2128,
"subnet": "145.50.128.0/22",
"option-data": [
{
@@ -391125,6 +393253,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LIB01
{
+ "id": 2129,
"subnet": "145.50.132.0/22",
"option-data": [
{
@@ -391302,6 +393431,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MRB01
{
+ "id": 2130,
"subnet": "145.50.140.0/22",
"option-data": [
{
@@ -391479,6 +393609,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SZB01
{
+ "id": 2131,
"subnet": "145.50.148.0/22",
"option-data": [
{
@@ -391656,6 +393787,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SLB01
{
+ "id": 2132,
"subnet": "145.50.156.0/22",
"option-data": [
{
@@ -391833,6 +393965,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CHE01
{
+ "id": 2133,
"subnet": "145.50.174.0/24",
"option-data": [
{
@@ -392010,6 +394143,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRG02
{
+ "id": 2134,
"subnet": "145.50.176.0/24",
"option-data": [
{
@@ -392187,6 +394321,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZWI01
{
+ "id": 2135,
"subnet": "145.50.178.0/24",
"option-data": [
{
@@ -392364,6 +394499,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CHE01
{
+ "id": 2136,
"subnet": "145.50.180.0/22",
"option-data": [
{
@@ -392541,6 +394677,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FRG02
{
+ "id": 2137,
"subnet": "145.50.184.0/22",
"option-data": [
{
@@ -392718,6 +394855,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZWI01
{
+ "id": 2138,
"subnet": "145.50.188.0/22",
"option-data": [
{
@@ -392895,6 +395033,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PLA01
{
+ "id": 2139,
"subnet": "145.50.192.0/22",
"option-data": [
{
@@ -393072,6 +395211,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CHE05
{
+ "id": 2140,
"subnet": "145.50.26.0/24",
"option-data": [
{
@@ -393249,6 +395389,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MIT01
{
+ "id": 2141,
"subnet": "145.50.48.0/24",
"option-data": [
{
@@ -393426,6 +395567,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GLU01
{
+ "id": 2142,
"subnet": "145.50.50.0/24",
"option-data": [
{
@@ -393603,6 +395745,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ABH01
{
+ "id": 2143,
"subnet": "145.50.98.0/24",
"option-data": [
{
@@ -393780,6 +395923,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE04
{
+ "id": 2144,
"subnet": "145.60.102.0/24",
"option-data": [
{
@@ -393957,6 +396101,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE08
{
+ "id": 2145,
"subnet": "145.60.112.0/24",
"option-data": [
{
@@ -394134,6 +396279,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 2146,
"subnet": "145.60.120.0/22",
"option-data": [
{
@@ -394311,6 +396457,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HYW01
{
+ "id": 2147,
"subnet": "145.60.124.0/24",
"option-data": [
{
@@ -394488,6 +396635,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GTZ01
{
+ "id": 2148,
"subnet": "145.60.142.0/24",
"option-data": [
{
@@ -394665,6 +396813,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GTZ01
{
+ "id": 2149,
"subnet": "145.60.144.0/22",
"option-data": [
{
@@ -394842,6 +396991,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PIR01
{
+ "id": 2150,
"subnet": "145.60.148.0/22",
"option-data": [
{
@@ -395019,6 +397169,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RIS02
{
+ "id": 2151,
"subnet": "145.60.152.0/22",
"option-data": [
{
@@ -395196,6 +397347,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RAD02
{
+ "id": 2152,
"subnet": "145.60.156.0/22",
"option-data": [
{
@@ -395373,6 +397525,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BTZ01
{
+ "id": 2153,
"subnet": "145.60.160.0/22",
"option-data": [
{
@@ -395550,6 +397703,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE13
{
+ "id": 2154,
"subnet": "145.60.164.0/24",
"option-data": [
{
@@ -395727,6 +397881,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE10
{
+ "id": 2155,
"subnet": "145.60.172.0/24",
"option-data": [
{
@@ -395904,6 +398059,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 2156,
"subnet": "145.60.180.0/24",
"option-data": [
{
@@ -396081,6 +398237,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 2157,
"subnet": "145.60.72.0/24",
"option-data": [
{
@@ -396258,6 +398415,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 2158,
"subnet": "145.60.74.0/24",
"option-data": [
{
@@ -396435,6 +398593,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE01
{
+ "id": 2159,
"subnet": "145.60.76.0/24",
"option-data": [
{
@@ -396612,6 +398771,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MEI01
{
+ "id": 2160,
"subnet": "145.60.88.0/24",
"option-data": [
{
@@ -396789,6 +398949,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DRE11
{
+ "id": 2161,
"subnet": "145.60.96.0/24",
"option-data": [
{
@@ -396970,6 +399131,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# APO01
{
+ "id": 2162,
"subnet": "145.70.102.0/24",
"option-data": [
{
@@ -397147,6 +399309,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HGS01
{
+ "id": 2163,
"subnet": "145.70.106.0/24",
"option-data": [
{
@@ -397324,6 +399487,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERF01
{
+ "id": 2164,
"subnet": "145.70.108.0/22",
"option-data": [
{
@@ -397501,6 +399665,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ECH01
{
+ "id": 2165,
"subnet": "145.70.126.0/24",
"option-data": [
{
@@ -397678,6 +399843,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MLH01
{
+ "id": 2166,
"subnet": "145.70.128.0/24",
"option-data": [
{
@@ -397859,6 +400025,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MLH01
{
+ "id": 2167,
"subnet": "145.70.132.0/22",
"option-data": [
{
@@ -398040,6 +400207,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ECH01
{
+ "id": 2168,
"subnet": "145.70.140.0/22",
"option-data": [
{
@@ -398217,6 +400385,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GOT02
{
+ "id": 2169,
"subnet": "145.70.148.0/22",
"option-data": [
{
@@ -398394,6 +400563,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERF01
{
+ "id": 2170,
"subnet": "145.70.158.0/24",
"option-data": [
{
@@ -398571,6 +400741,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERF07
{
+ "id": 2171,
"subnet": "145.70.2.0/24",
"option-data": [
{
@@ -398748,6 +400919,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AST01
{
+ "id": 2172,
"subnet": "145.70.4.0/24",
"option-data": [
{
@@ -398925,6 +401097,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WMR01
{
+ "id": 2173,
"subnet": "145.70.6.0/24",
"option-data": [
{
@@ -399102,6 +401275,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERF01
{
+ "id": 2174,
"subnet": "145.70.80.0/24",
"option-data": [
{
@@ -399279,6 +401453,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERF01
{
+ "id": 2175,
"subnet": "145.70.82.0/23",
"option-data": [
{
@@ -399450,6 +401625,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ERF01
{
+ "id": 2176,
"subnet": "145.70.84.0/24",
"option-data": [
{
@@ -399627,6 +401803,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SHL01
{
+ "id": 2177,
"subnet": "145.72.20.0/24",
"option-data": [
{
@@ -399804,6 +401981,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ILM01
{
+ "id": 2178,
"subnet": "145.72.22.0/24",
"option-data": [
{
@@ -399981,6 +402159,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SHL01
{
+ "id": 2179,
"subnet": "145.72.24.0/22",
"option-data": [
{
@@ -400158,6 +402337,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MNG01
{
+ "id": 2180,
"subnet": "145.72.28.0/24",
"option-data": [
{
@@ -400335,6 +402515,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GRZ01
{
+ "id": 2181,
"subnet": "145.80.128.0/24",
"option-data": [
{
@@ -400512,6 +402693,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZWI07
{
+ "id": 2182,
"subnet": "145.80.130.0/24",
"option-data": [
{
@@ -400689,6 +402871,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZWI07
{
+ "id": 2183,
"subnet": "145.80.132.0/22",
"option-data": [
{
@@ -400866,6 +403049,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZWI05
{
+ "id": 2184,
"subnet": "145.80.140.0/22",
"option-data": [
{
@@ -401043,6 +403227,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# LOB01
{
+ "id": 2185,
"subnet": "145.80.148.0/22",
"option-data": [
{
@@ -401220,6 +403405,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MRE01
{
+ "id": 2186,
"subnet": "145.80.152.0/22",
"option-data": [
{
@@ -401397,6 +403583,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SLF01
{
+ "id": 2187,
"subnet": "145.80.162.0/24",
"option-data": [
{
@@ -401574,6 +403761,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AUE01
{
+ "id": 2188,
"subnet": "145.80.164.0/22",
"option-data": [
{
@@ -401751,6 +403939,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# RUL01
{
+ "id": 2189,
"subnet": "145.80.170.0/24",
"option-data": [
{
@@ -401928,6 +404117,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# CRI01
{
+ "id": 2190,
"subnet": "145.80.172.0/22",
"option-data": [
{
@@ -402105,6 +404295,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FKS01
{
+ "id": 2191,
"subnet": "145.80.180.0/22",
"option-data": [
{
@@ -402282,6 +404473,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KBG01
{
+ "id": 2192,
"subnet": "145.80.184.0/22",
"option-data": [
{
@@ -402459,6 +404651,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# OSZ01
{
+ "id": 2193,
"subnet": "145.80.188.0/22",
"option-data": [
{
@@ -402636,6 +404829,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# PLA04
{
+ "id": 2194,
"subnet": "145.80.192.0/22",
"option-data": [
{
@@ -402813,6 +405007,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HDF02
{
+ "id": 2195,
"subnet": "145.80.202.0/24",
"option-data": [
{
@@ -402990,6 +405185,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# REI02
{
+ "id": 2196,
"subnet": "145.80.204.0/22",
"option-data": [
{
@@ -403167,6 +405363,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SLZ01
{
+ "id": 2197,
"subnet": "145.80.208.0/22",
"option-data": [
{
@@ -403344,6 +405541,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WDU01
{
+ "id": 2198,
"subnet": "145.80.212.0/22",
"option-data": [
{
@@ -403521,6 +405719,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZEU01
{
+ "id": 2199,
"subnet": "145.80.216.0/22",
"option-data": [
{
@@ -403698,6 +405897,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# JEN01
{
+ "id": 2200,
"subnet": "145.80.230.0/24",
"option-data": [
{
@@ -403875,6 +406075,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# JEN01
{
+ "id": 2201,
"subnet": "145.80.236.0/22",
"option-data": [
{
@@ -404052,6 +406253,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# GER01
{
+ "id": 2202,
"subnet": "145.80.240.0/22",
"option-data": [
{
@@ -404229,6 +406431,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ATB01
{
+ "id": 2203,
"subnet": "145.82.4.0/22",
"option-data": [
{
@@ -404406,6 +406609,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WTL01
{
+ "id": 2204,
"subnet": "145.90.104.0/22",
"option-data": [
{
@@ -404583,6 +406787,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# KTH01
{
+ "id": 2205,
"subnet": "145.90.108.0/24",
"option-data": [
{
@@ -404760,6 +406965,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ZEI01
{
+ "id": 2206,
"subnet": "145.90.110.0/24",
"option-data": [
{
@@ -404937,6 +407143,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HLL02
{
+ "id": 2207,
"subnet": "145.90.112.0/24",
"option-data": [
{
@@ -405114,6 +407321,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# QUE01
{
+ "id": 2208,
"subnet": "145.90.114.0/24",
"option-data": [
{
@@ -405291,6 +407499,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# WSF02
{
+ "id": 2209,
"subnet": "145.90.124.0/24",
"option-data": [
{
@@ -405468,6 +407677,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DES01
{
+ "id": 2210,
"subnet": "145.90.78.0/24",
"option-data": [
{
@@ -405645,6 +407855,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HLL01
{
+ "id": 2211,
"subnet": "145.90.80.0/24",
"option-data": [
{
@@ -405822,6 +408033,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# MER01
{
+ "id": 2212,
"subnet": "145.90.82.0/24",
"option-data": [
{
@@ -405999,6 +408211,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DES01
{
+ "id": 2213,
"subnet": "145.90.84.0/22",
"option-data": [
{
@@ -406176,6 +408389,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HLL01
{
+ "id": 2214,
"subnet": "145.90.88.0/22",
"option-data": [
{
@@ -406353,6 +408567,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ASC01
{
+ "id": 2215,
"subnet": "145.90.92.0/24",
"option-data": [
{
@@ -406530,6 +408745,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# BEB01
{
+ "id": 2216,
"subnet": "145.90.94.0/24",
"option-data": [
{
@@ -406711,6 +408927,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# HLL03
{
+ "id": 2217,
"subnet": "145.90.98.0/24",
"option-data": [
{
@@ -406888,6 +409105,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# AMS02
{
+ "id": 2218,
"subnet": "162.100.12.0/22",
"option-data": [
{
@@ -407065,6 +409283,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP01
{
+ "id": 2219,
"subnet": "172.10.18.0/23",
"option-data": [
{
@@ -407234,6 +409453,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# SGP02
{
+ "id": 2220,
"subnet": "172.10.3.128/25",
"option-data": [
{
@@ -407403,6 +409623,7 @@
#Automatisch erzeugte Konfiguration am 1238142462
# FFM80
{
+ "id": 2221,
"subnet": "140.14.216.0/22",
"option-data": [
{
@@ -407614,6 +409835,7 @@
#Automatisch erzeugte Konfiguration am 1238408134
# FFM73
{
+ "id": 2222,
"subnet": "141.30.122.0/24",
"option-data": [
{
@@ -407791,6 +410013,7 @@
#Automatisch erzeugte Konfiguration am 1238411932
# FFM80
{
+ "id": 2223,
"subnet": "140.24.13.0/26",
"option-data": [
{
@@ -407950,6 +410173,7 @@
#Automatisch erzeugte Konfiguration am 1238411932
# FFM80
{
+ "id": 2224,
"subnet": "140.24.13.192/26",
"option-data": [
{
@@ -408105,6 +410329,7 @@
#Automatisch erzeugte Konfiguration am 1238411932
# FFM80
{
+ "id": 2225,
"subnet": "140.24.13.64/26",
"option-data": [
{
@@ -408260,6 +410485,7 @@
#Automatisch erzeugte Konfiguration am 1238507228
# HBG01
{
+ "id": 2226,
"subnet": "132.0.74.0/24",
"option-data": [
{
@@ -408437,6 +410663,7 @@
#Automatisch erzeugte Konfiguration am 1238507228
# FFM80
{
+ "id": 2227,
"subnet": "140.24.13.128/26",
"option-data": [
{
@@ -408608,6 +410835,7 @@
#Automatisch erzeugte Konfiguration am 1238580599
# TIJ04
{
+ "id": 2228,
"subnet": "10.201.194.0/24",
"option-data": [
{
@@ -408779,6 +411007,7 @@
#Automatisch erzeugte Konfiguration am 1238580599
# TIJ04
{
+ "id": 2229,
"subnet": "10.201.195.0/24",
"option-data": [
{
@@ -408950,6 +411179,7 @@
#Automatisch erzeugte Konfiguration am 1238591656
# FFM41
{
+ "id": 2230,
"subnet": "140.150.192.0/22",
"option-data": [
{
@@ -409127,6 +411357,7 @@
#Automatisch erzeugte Konfiguration am 1239112884
#
{
+ "id": 2231,
"subnet": "145.90.96.0/24",
"option-data": [
{
@@ -409304,6 +411535,7 @@
#Automatisch erzeugte Konfiguration am 1239180345
# FFM80
{
+ "id": 2232,
"subnet": "140.11.203.0/26",
"option-data": [
{
@@ -409446,6 +411678,7 @@
#Automatisch erzeugte Konfiguration am 1239207172
# SGP04
{
+ "id": 2233,
"subnet": "10.200.14.0/26",
"option-data": [
{
@@ -409617,6 +411850,7 @@
#Automatisch erzeugte Konfiguration am 1239207172
# ESS01
{
+ "id": 2234,
"subnet": "138.0.36.0/24",
"option-data": [
{
@@ -409794,6 +412028,7 @@
#Automatisch erzeugte Konfiguration am 1239207172
# BNN01
{
+ "id": 2235,
"subnet": "139.50.112.0/24",
"option-data": [
{
@@ -409971,6 +412206,7 @@
#Automatisch erzeugte Konfiguration am 1239207172
# FFM56
{
+ "id": 2236,
"subnet": "140.150.177.0/24",
"option-data": [
{
@@ -410148,6 +412384,7 @@
#Automatisch erzeugte Konfiguration am 1239207172
# FFM02
{
+ "id": 2237,
"subnet": "140.202.132.0/22",
"option-data": [
{
@@ -410325,6 +412562,7 @@
#Automatisch erzeugte Konfiguration am 1239874400
# FFM80
{
+ "id": 2238,
"subnet": "140.26.71.0/24",
"option-data": [
{
@@ -410502,6 +412740,7 @@
#Automatisch erzeugte Konfiguration am 1240150462
# HBG81
{
+ "id": 2239,
"subnet": "132.31.106.0/24",
"option-data": [
{
@@ -410706,6 +412945,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM89
{
+ "id": 2240,
"subnet": "10.151.107.0/24",
"option-data": [
{
@@ -410883,6 +413123,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM89
{
+ "id": 2241,
"subnet": "10.151.86.0/24",
"option-data": [
{
@@ -411064,6 +413305,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# SGP04
{
+ "id": 2242,
"subnet": "10.200.14.64/26",
"option-data": [
{
@@ -411235,6 +413477,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# SHA03
{
+ "id": 2243,
"subnet": "10.201.67.0/24",
"option-data": [
{
@@ -411395,6 +413638,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# DDF01
{
+ "id": 2244,
"subnet": "137.0.72.0/22",
"option-data": [
{
@@ -411584,6 +413828,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# KOE02
{
+ "id": 2245,
"subnet": "139.0.60.0/24",
"option-data": [
{
@@ -411767,6 +414012,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM80
{
+ "id": 2246,
"subnet": "140.15.40.0/22",
"option-data": [
{
@@ -411944,6 +414190,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM02
{
+ "id": 2247,
"subnet": "140.204.164.0/22",
"option-data": [
{
@@ -412133,6 +414380,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM02
{
+ "id": 2248,
"subnet": "140.205.164.0/22",
"option-data": [
{
@@ -412322,6 +414570,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM02
{
+ "id": 2249,
"subnet": "140.206.164.0/22",
"option-data": [
{
@@ -412511,6 +414760,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM80
{
+ "id": 2250,
"subnet": "140.21.32.0/22",
"option-data": [
{
@@ -412684,6 +414934,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM62
{
+ "id": 2251,
"subnet": "140.60.116.0/22",
"option-data": [
{
@@ -412873,6 +415124,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# MUE01
{
+ "id": 2252,
"subnet": "144.0.84.0/24",
"option-data": [
{
@@ -413088,6 +415340,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2253,
"subnet": "142.70.10.0/26",
"option-data": [
{
@@ -413226,6 +415479,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2254,
"subnet": "142.70.10.128/26",
"option-data": [
{
@@ -413364,6 +415618,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2255,
"subnet": "142.70.10.192/26",
"option-data": [
{
@@ -413502,6 +415757,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2256,
"subnet": "142.70.10.64/26",
"option-data": [
{
@@ -413640,6 +415896,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2257,
"subnet": "142.70.11.0/26",
"option-data": [
{
@@ -413778,6 +416035,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2258,
"subnet": "142.70.11.128/26",
"option-data": [
{
@@ -413916,6 +416174,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2259,
"subnet": "142.70.11.192/26",
"option-data": [
{
@@ -414054,6 +416313,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2260,
"subnet": "142.70.11.64/26",
"option-data": [
{
@@ -414192,6 +416452,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2261,
"subnet": "142.70.12.0/26",
"option-data": [
{
@@ -414330,6 +416591,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2262,
"subnet": "142.70.12.128/26",
"option-data": [
{
@@ -414468,6 +416730,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2263,
"subnet": "142.70.12.192/26",
"option-data": [
{
@@ -414606,6 +416869,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2264,
"subnet": "142.70.12.64/26",
"option-data": [
{
@@ -414744,6 +417008,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2265,
"subnet": "142.70.13.0/26",
"option-data": [
{
@@ -414882,6 +417147,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2266,
"subnet": "142.70.13.128/26",
"option-data": [
{
@@ -415020,6 +417286,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2267,
"subnet": "142.70.13.192/26",
"option-data": [
{
@@ -415158,6 +417425,7 @@
#Automatisch erzeugte Konfiguration am 1240824822
# KLB01
{
+ "id": 2268,
"subnet": "142.70.13.64/26",
"option-data": [
{
@@ -415296,6 +417564,7 @@
#Automatisch erzeugte Konfiguration am 1240916487
# FFM80
{
+ "id": 2269,
"subnet": "140.11.204.0/24",
"option-data": [
{
@@ -415473,6 +417742,7 @@
#Automatisch erzeugte Konfiguration am 1240916487
# FFM80
{
+ "id": 2270,
"subnet": "140.15.32.0/22",
"option-data": [
{
@@ -415715,6 +417985,7 @@
#Automatisch erzeugte Konfiguration am 1240916487
# DRE04
{
+ "id": 2271,
"subnet": "145.60.98.0/24",
"option-data": [
{
@@ -415892,6 +418163,7 @@
#Automatisch erzeugte Konfiguration am 1241508922
#
{
+ "id": 2272,
"subnet": "145.70.130.0/24",
"option-data": [
{
@@ -416069,6 +418341,7 @@
#Automatisch erzeugte Konfiguration am 1241508922
#
{
+ "id": 2273,
"subnet": "145.70.136.0/22",
"option-data": [
{
@@ -416262,6 +418535,7 @@
#Automatisch erzeugte Konfiguration am 1241875832
# BUD01
{
+ "id": 2274,
"subnet": "10.185.12.0/24",
"option-data": [
{
@@ -416439,6 +418713,7 @@
#Automatisch erzeugte Konfiguration am 1242135407
# FFM73
{
+ "id": 2275,
"subnet": "141.30.124.0/24",
"option-data": [
{
@@ -416504,6 +418779,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# FFM49
{
+ "id": 2276,
"subnet": "10.151.240.0/24",
"option-data": [
{
@@ -416675,6 +418951,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# FFM49
{
+ "id": 2277,
"subnet": "10.151.241.0/24",
"option-data": [
{
@@ -416846,6 +419123,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# FFM49
{
+ "id": 2278,
"subnet": "10.151.242.0/24",
"option-data": [
{
@@ -417017,6 +419295,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# FFM49
{
+ "id": 2279,
"subnet": "10.151.243.0/24",
"option-data": [
{
@@ -417188,6 +419467,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# FFM49
{
+ "id": 2280,
"subnet": "10.151.244.0/24",
"option-data": [
{
@@ -417365,6 +419645,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# FFM49
{
+ "id": 2281,
"subnet": "10.151.245.0/24",
"option-data": [
{
@@ -417542,6 +419823,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# FFM49
{
+ "id": 2282,
"subnet": "10.151.246.0/24",
"option-data": [
{
@@ -417719,6 +420001,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# FFM49
{
+ "id": 2283,
"subnet": "10.151.247.0/24",
"option-data": [
{
@@ -417896,6 +420179,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2284,
"subnet": "10.200.15.0/26",
"option-data": [
{
@@ -418067,6 +420351,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2285,
"subnet": "10.200.15.128/26",
"option-data": [
{
@@ -418238,6 +420523,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2286,
"subnet": "10.200.15.192/26",
"option-data": [
{
@@ -418409,6 +420695,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2287,
"subnet": "10.200.15.64/26",
"option-data": [
{
@@ -418580,6 +420867,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2288,
"subnet": "10.200.20.0/24",
"option-data": [
{
@@ -418757,6 +421045,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2289,
"subnet": "10.200.21.0/24",
"option-data": [
{
@@ -418928,6 +421217,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2290,
"subnet": "10.200.22.0/24",
"option-data": [
{
@@ -419099,6 +421389,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2291,
"subnet": "10.200.4.0/24",
"option-data": [
{
@@ -419276,6 +421567,7 @@
#Automatisch erzeugte Konfiguration am 1243942660
# SGP04
{
+ "id": 2292,
"subnet": "10.200.5.0/24",
"option-data": [
{
@@ -419465,6 +421757,7 @@
#Automatisch erzeugte Konfiguration am 1244213337
# MTL03
{
+ "id": 2293,
"subnet": "141.30.139.0/24",
"option-data": [
{
@@ -419642,6 +421935,7 @@
#Automatisch erzeugte Konfiguration am 1244213337
# MTL03
{
+ "id": 2294,
"subnet": "141.30.141.0/24",
"option-data": [
{
@@ -419823,6 +422117,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# MTL02
{
+ "id": 2295,
"subnet": "141.30.131.0/24",
"option-data": [
{
@@ -420000,6 +422295,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# MTL02
{
+ "id": 2296,
"subnet": "141.30.132.0/24",
"option-data": [
{
@@ -420177,6 +422473,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# MTL02
{
+ "id": 2297,
"subnet": "141.30.133.0/24",
"option-data": [
{
@@ -420354,6 +422651,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# MTL02
{
+ "id": 2298,
"subnet": "141.30.134.0/24",
"option-data": [
{
@@ -420531,6 +422829,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# MTL02
{
+ "id": 2299,
"subnet": "141.30.135.0/24",
"option-data": [
{
@@ -420708,6 +423007,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# MTL03
{
+ "id": 2300,
"subnet": "141.30.136.0/24",
"option-data": [
{
@@ -420885,6 +423185,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# MTL03
{
+ "id": 2301,
"subnet": "141.30.137.0/24",
"option-data": [
{
@@ -421062,6 +423363,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# MTL03
{
+ "id": 2302,
"subnet": "141.30.138.0/24",
"option-data": [
{
@@ -421239,6 +423541,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 2303,
"subnet": "10.144.198.0/24",
"option-data": [
{
@@ -421416,6 +423719,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM89
{
+ "id": 2304,
"subnet": "10.144.199.0/24",
"option-data": [
{
@@ -421593,6 +423897,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# ESC03
{
+ "id": 2305,
"subnet": "10.205.98.0/24",
"option-data": [
{
@@ -421770,6 +424075,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# DDF01
{
+ "id": 2306,
"subnet": "136.0.112.0/24",
"option-data": [
{
@@ -421842,6 +424148,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 2307,
"subnet": "140.101.122.0/24",
"option-data": [
{
@@ -422021,6 +424328,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2308,
"subnet": "140.101.20.0/24",
"option-data": [
{
@@ -422165,6 +424473,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2309,
"subnet": "140.101.212.0/24",
"option-data": [
{
@@ -422342,6 +424651,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2310,
"subnet": "140.101.219.0/24",
"option-data": [
{
@@ -422525,6 +424835,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM19
{
+ "id": 2311,
"subnet": "140.101.6.0/24",
"option-data": [
{
@@ -422702,6 +425013,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 2312,
"subnet": "140.101.93.0/24",
"option-data": [
{
@@ -422862,6 +425174,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2313,
"subnet": "140.11.10.0/24",
"option-data": [
{
@@ -423039,6 +425352,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2314,
"subnet": "140.11.101.0/24",
"option-data": [
{
@@ -423216,6 +425530,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2315,
"subnet": "140.11.102.0/24",
"option-data": [
{
@@ -423307,6 +425622,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2316,
"subnet": "140.11.103.0/24",
"option-data": [
{
@@ -423467,6 +425783,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2317,
"subnet": "140.11.200.128/27",
"option-data": [
{
@@ -423628,6 +425945,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2318,
"subnet": "140.11.200.32/27",
"option-data": [
{
@@ -423811,6 +426129,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2319,
"subnet": "140.11.200.64/26",
"option-data": [
{
@@ -423971,6 +426290,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2320,
"subnet": "140.11.24.0/24",
"option-data": [
{
@@ -424148,6 +426468,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2321,
"subnet": "140.11.27.0/24",
"option-data": [
{
@@ -424213,6 +426534,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2322,
"subnet": "140.11.59.0/24",
"option-data": [
{
@@ -424390,6 +426712,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2323,
"subnet": "140.11.6.0/24",
"option-data": [
{
@@ -424567,6 +426890,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2324,
"subnet": "140.11.60.0/24",
"option-data": [
{
@@ -424748,6 +427072,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2325,
"subnet": "140.11.69.0/24",
"option-data": [
{
@@ -424830,6 +427155,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2326,
"subnet": "140.11.70.0/24",
"option-data": [
{
@@ -425007,6 +427333,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2327,
"subnet": "140.11.77.0/24",
"option-data": [
{
@@ -425167,6 +427494,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2328,
"subnet": "140.11.78.0/24",
"option-data": [
{
@@ -425327,6 +427655,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2329,
"subnet": "140.11.8.0/24",
"option-data": [
{
@@ -425510,6 +427839,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2330,
"subnet": "140.11.81.0/24",
"option-data": [
{
@@ -425687,6 +428017,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2331,
"subnet": "140.11.82.0/24",
"option-data": [
{
@@ -425864,6 +428195,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2332,
"subnet": "140.11.83.0/24",
"option-data": [
{
@@ -426041,6 +428373,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2333,
"subnet": "140.11.84.0/24",
"option-data": [
{
@@ -426218,6 +428551,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2334,
"subnet": "140.11.85.0/24",
"option-data": [
{
@@ -426395,6 +428729,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2335,
"subnet": "140.11.86.0/24",
"option-data": [
{
@@ -426572,6 +428907,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2336,
"subnet": "140.11.87.0/24",
"option-data": [
{
@@ -426749,6 +429085,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2337,
"subnet": "140.11.88.0/23",
"option-data": [
{
@@ -426924,6 +429261,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2338,
"subnet": "140.11.90.0/24",
"option-data": [
{
@@ -427101,6 +429439,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2339,
"subnet": "140.11.91.0/24",
"option-data": [
{
@@ -427278,6 +429617,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2340,
"subnet": "140.11.95.0/24",
"option-data": [
{
@@ -427455,6 +429795,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2341,
"subnet": "140.11.96.0/24",
"option-data": [
{
@@ -427632,6 +429973,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2342,
"subnet": "140.11.97.0/24",
"option-data": [
{
@@ -427809,6 +430151,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2343,
"subnet": "140.11.98.0/24",
"option-data": [
{
@@ -427986,6 +430329,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2344,
"subnet": "140.14.1.0/24",
"option-data": [
{
@@ -428163,6 +430507,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2345,
"subnet": "140.14.163.0/24",
"option-data": [
{
@@ -428340,6 +430685,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2346,
"subnet": "140.14.187.0/24",
"option-data": [
{
@@ -428517,6 +430863,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2347,
"subnet": "140.14.2.0/24",
"option-data": [
{
@@ -428694,6 +431041,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2348,
"subnet": "140.14.248.0/24",
"option-data": [
{
@@ -428871,6 +431219,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2349,
"subnet": "140.14.249.0/24",
"option-data": [
{
@@ -429048,6 +431397,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2350,
"subnet": "140.14.250.0/24",
"option-data": [
{
@@ -429225,6 +431575,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2351,
"subnet": "140.14.251.0/24",
"option-data": [
{
@@ -429402,6 +431753,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2352,
"subnet": "140.14.252.0/24",
"option-data": [
{
@@ -429579,6 +431931,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2353,
"subnet": "140.14.253.0/24",
"option-data": [
{
@@ -429756,6 +432109,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2354,
"subnet": "140.14.3.0/24",
"option-data": [
{
@@ -429933,6 +432287,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2355,
"subnet": "140.15.124.0/22",
"option-data": [
{
@@ -430093,6 +432448,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2356,
"subnet": "140.15.128.0/22",
"option-data": [
{
@@ -430253,6 +432609,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2357,
"subnet": "140.15.148.0/22",
"option-data": [
{
@@ -430413,6 +432770,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2358,
"subnet": "140.15.152.0/22",
"option-data": [
{
@@ -430573,6 +432931,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2359,
"subnet": "140.15.156.0/22",
"option-data": [
{
@@ -430733,6 +433092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2360,
"subnet": "140.15.160.0/22",
"option-data": [
{
@@ -430893,6 +433253,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2361,
"subnet": "140.15.174.0/24",
"option-data": [
{
@@ -431053,6 +433414,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2362,
"subnet": "140.15.252.0/24",
"option-data": [
{
@@ -431230,6 +433592,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 2363,
"subnet": "140.152.36.0/24",
"option-data": [
{
@@ -431407,6 +433770,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM48
{
+ "id": 2364,
"subnet": "140.152.40.0/24",
"option-data": [
{
@@ -431567,6 +433931,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2365,
"subnet": "140.26.20.0/22",
"option-data": [
{
@@ -431727,6 +434092,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2366,
"subnet": "140.26.70.0/24",
"option-data": [
{
@@ -431799,6 +434165,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM01
{
+ "id": 2367,
"subnet": "140.4.92.0/24",
"option-data": [
{
@@ -431976,6 +434343,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM62
{
+ "id": 2368,
"subnet": "140.60.158.0/24",
"option-data": [
{
@@ -432136,6 +434504,7 @@
#Automatisch erzeugte Konfiguration am 1237987025
# FFM80
{
+ "id": 2369,
"subnet": "181.20.16.0/24",
"option-data": [
{
@@ -432372,6 +434741,7 @@
#Automatisch erzeugte Konfiguration am 1239207172
# FFM80
{
+ "id": 2370,
"subnet": "140.11.9.0/24",
"option-data": [
{
@@ -432454,6 +434824,7 @@
#Automatisch erzeugte Konfiguration am 1240480253
# FFM80
{
+ "id": 2371,
"subnet": "140.11.62.0/24",
"option-data": [
{
@@ -432631,6 +435002,7 @@
#Automatisch erzeugte Konfiguration am 1244540871
# FFM80
{
+ "id": 2372,
"subnet": "140.11.7.0/24",
"option-data": [
{
@@ -432802,6 +435174,7 @@
#Automatisch erzeugte Konfiguration am 1245316104
# FFM80
{
+ "id": 2373,
"subnet": "140.26.72.0/24",
"option-data": [
{
diff --git a/keama/tests/ddnsupdstyle6.out b/keama/tests/ddnsupdstyle6.out
index 218cefc6..72dc08b6 100644
--- a/keama/tests/ddnsupdstyle6.out
+++ b/keama/tests/ddnsupdstyle6.out
@@ -14,6 +14,7 @@
"subnet6": [
# embedded in pool
{
+ "id": 1,
"subnet": "2001::/64",
"pools": [
{
diff --git a/keama/tests/dhcp3/kea.json b/keama/tests/dhcp3/kea.json
index ec1be468..e7b6b185 100644
--- a/keama/tests/dhcp3/kea.json
+++ b/keama/tests/dhcp3/kea.json
@@ -29,6 +29,7 @@
# 3600 is recommended
#Current OpeNMS server
{
+ "id": 1,
"subnet": "66.253.253.184/32",
"reservations": [
{
@@ -40,6 +41,7 @@
},
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 38,
"subnet": "50.30.208.64/27",
"option-data": [
{
@@ -106,6 +108,7 @@
},
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 174,
"subnet": "68.234.128.64/26",
"option-data": [
{
@@ -182,6 +185,7 @@
# WANIP for ilchbat not configured
#dhcpd-snmp=ilchbat-cust0,96.63.203.141-96.63.203.142
{
+ "id": 212,
"subnet": "96.63.203.136/29",
"option-data": [
{
@@ -250,6 +254,7 @@
# WANIP for ilchept not configured
#dhcpd-snmp=ilchept-cust0,66.253.181.205-66.253.181.206
{
+ "id": 213,
"subnet": "66.253.181.200/29",
"option-data": [
{
@@ -318,6 +323,7 @@
# WANIP for ilcucss_lrevdsl not configured
#dhcpd-snmp=ilcucss_lrevdsl-cust0,66.253.181.69-66.253.181.126
{
+ "id": 537,
"subnet": "66.253.181.64/26",
"option-data": [
{
@@ -401,6 +407,7 @@
# WANIP for ilcudow-free not configured
#dhcpd-snmp=ilcudow-free-cust0,68.180.82.21-68.180.82.254
{
+ "id": 540,
"subnet": "68.180.82.0/24",
"option-data": [
{
@@ -469,6 +476,7 @@
# WANIP for ilcudow-paid not configured
#dhcpd-snmp=ilcudow-paid-cust0,68.180.83.21-68.180.83.254
{
+ "id": 541,
"subnet": "68.180.83.0/24",
"option-data": [
{
@@ -537,6 +545,7 @@
# WANIP for ilurtrb not configured
#dhcpd-snmp=ilurtrb-cust0,173.230.8.157-173.230.8.158
{
+ "id": 603,
"subnet": "173.230.8.152/29",
"option-data": [
{
@@ -605,6 +614,7 @@
# WANIP for njsetra not configured
#dhcpd-snmp=njsetra-cust0,66.253.131.5-66.253.131.62
{
+ "id": 856,
"subnet": "66.253.131.0/26",
"option-data": [
{
@@ -687,6 +697,7 @@
# WANIP for njwehen not configured
#dhcpd-snmp=njwehen-cust0,68.253.247.21-68.253.247.126
{
+ "id": 857,
"subnet": "68.253.247.0/25",
"option-data": [
{
@@ -1016,6 +1027,7 @@
# WANIP for alaucre not configured
#dhcpd-snmp=alaucre-cust0,66.253.160.21-66.253.163.254
{
+ "id": 2,
"subnet": "66.253.160.0/22",
"option-data": [
{
@@ -1099,6 +1111,7 @@
},
#dhcpd-snmp=alaucre-cust1,74.223.30.3-74.223.31.254
{
+ "id": 3,
"subnet": "74.223.30.0/23",
// "config": [
// /// always-broadcast is not supported
@@ -1193,13 +1206,16 @@
]
},
{
+ "id": 4,
"subnet": "10.146.112.0/24"
},
{
+ "id": 5,
"subnet": "10.146.113.0/24"
},
#dhcpd-snmp=alaucre-ruckus,10.146.114.100-10.146.114.239
{
+ "id": 6,
"subnet": "10.146.114.0/24",
"option-data": [
{
@@ -1246,6 +1262,7 @@
# WANIP for albipie not configured
#dhcpd-snmp=albipie-cust0,68.180.118.21-68.180.119.254
{
+ "id": 7,
"subnet": "68.180.118.0/23",
"option-data": [
{
@@ -1320,6 +1337,7 @@
},
#dhcpd-snmp=albipie-cust1,216.171.45.3-216.171.45.254
{
+ "id": 8,
"subnet": "216.171.45.0/24",
"option-data": [
{
@@ -1385,13 +1403,16 @@
]
},
{
+ "id": 9,
"subnet": "10.149.8.0/24"
},
{
+ "id": 10,
"subnet": "10.149.9.0/24"
},
#dhcpd-snmp=albipie-ruckus,10.149.10.100-10.149.10.239
{
+ "id": 11,
"subnet": "10.149.10.0/24",
"option-data": [
{
@@ -1439,6 +1460,7 @@
# WANIP for aljajac not configured
#dhcpd-snmp=aljajac-cust0,76.10.34.21-76.10.35.254
{
+ "id": 12,
"subnet": "76.10.34.0/23",
"option-data": [
{
@@ -1518,13 +1540,16 @@
]
},
{
+ "id": 13,
"subnet": "10.149.56.0/24"
},
{
+ "id": 14,
"subnet": "10.149.57.0/24"
},
#dhcpd-snmp=aljajac-ruckus,10.149.58.100-10.149.58.239
{
+ "id": 15,
"subnet": "10.149.58.0/24",
"option-data": [
{
@@ -1571,6 +1596,7 @@
# WANIP for altrgro not configured
#dhcpd-snmp=altrgro-cust0,50.30.252.21-50.30.253.254
{
+ "id": 16,
"subnet": "50.30.252.0/23",
"option-data": [
{
@@ -1656,13 +1682,16 @@
]
},
{
+ "id": 17,
"subnet": "10.144.88.0/24"
},
{
+ "id": 18,
"subnet": "10.144.89.0/24"
},
#dhcpd-snmp=altrgro-ruckus,10.144.90.100-10.144.90.239
{
+ "id": 19,
"subnet": "10.144.90.0/24",
"option-data": [
{
@@ -1730,6 +1759,7 @@
# WANIP for altrtro not configured
#dhcpd-snmp=altrtro-cust0,76.10.32.21-76.10.33.254
{
+ "id": 20,
"subnet": "76.10.32.0/23",
"option-data": [
{
@@ -1796,6 +1826,7 @@
},
#dhcpd-snmp=altrtro-cust1,66.253.212.3-66.253.212.254
{
+ "id": 21,
"subnet": "66.253.212.0/24",
"option-data": [
{
@@ -1861,13 +1892,16 @@
]
},
{
+ "id": 22,
"subnet": "10.149.60.0/24"
},
{
+ "id": 23,
"subnet": "10.149.61.0/24"
},
#dhcpd-snmp=altrtro-ruckus,10.149.62.100-10.149.62.239
{
+ "id": 24,
"subnet": "10.149.62.0/24",
"option-data": [
{
@@ -1913,10 +1947,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 25,
"subnet": "98.172.7.138/32"
},
#dhcpd-snmp=arfahpl-cust0,68.180.64.21-68.180.67.254
{
+ "id": 26,
"subnet": "68.180.64.0/22",
"option-data": [
{
@@ -1996,13 +2032,16 @@
]
},
{
+ "id": 27,
"subnet": "10.149.120.0/24"
},
{
+ "id": 28,
"subnet": "10.149.121.0/24"
},
#dhcpd-snmp=arfahpl-ruckus,10.149.122.100-10.149.122.239
{
+ "id": 29,
"subnet": "10.149.122.0/24",
"option-data": [
{
@@ -2050,6 +2089,7 @@
# WANIP for arjogro not configured
#dhcpd-snmp=arjogro-cust0,50.30.250.21-50.30.251.254
{
+ "id": 30,
"subnet": "50.30.250.0/23",
"option-data": [
{
@@ -2135,13 +2175,16 @@
]
},
{
+ "id": 31,
"subnet": "10.144.84.0/24"
},
{
+ "id": 32,
"subnet": "10.144.85.0/24"
},
#dhcpd-snmp=arjogro-ruckus,10.144.86.100-10.144.86.239
{
+ "id": 33,
"subnet": "10.144.86.0/24",
"option-data": [
{
@@ -2196,6 +2239,7 @@
# WANIP for azchave not configured
#dhcpd-snmp=azchave-cust0,76.10.12.21-76.10.15.254
{
+ "id": 34,
"subnet": "76.10.12.0/22",
"option-data": [
{
@@ -6395,13 +6439,16 @@
},
# include "/etc/dhcp3/dhcp_hosts/azchave.hosts";
{
+ "id": 35,
"subnet": "10.153.12.0/24"
},
{
+ "id": 36,
"subnet": "10.153.13.0/24"
},
#dhcpd-snmp=azchave-ruckus,10.153.14.100-10.153.14.239
{
+ "id": 37,
"subnet": "10.153.14.0/24",
"option-data": [
{
@@ -6449,6 +6496,7 @@
# WANIP for azsursv not configured
#dhcpd-snmp=azsursv-cust0,96.63.220.21-96.63.223.254
{
+ "id": 39,
"subnet": "96.63.220.0/22",
"option-data": [
{
@@ -6514,13 +6562,16 @@
]
},
{
+ "id": 40,
"subnet": "10.152.36.0/24"
},
{
+ "id": 41,
"subnet": "10.152.37.0/24"
},
#dhcpd-snmp=azsursv-ruckus,10.152.38.100-10.152.38.239
{
+ "id": 42,
"subnet": "10.152.38.0/24",
"option-data": [
{
@@ -6568,6 +6619,7 @@
# WANIP for aztecom not configured
#dhcpd-snmp=aztecom-cust0,50.30.210.21-50.30.211.254
{
+ "id": 43,
"subnet": "50.30.210.0/23",
"option-data": [
{
@@ -6641,13 +6693,16 @@
]
},
{
+ "id": 44,
"subnet": "10.152.4.0/24"
},
{
+ "id": 45,
"subnet": "10.152.5.0/24"
},
#dhcpd-snmp=aztecom-ruckus,10.152.6.100-10.152.6.239
{
+ "id": 46,
"subnet": "10.152.6.0/24",
"option-data": [
{
@@ -6695,6 +6750,7 @@
# WANIP for aztecsr not configured
#dhcpd-snmp=aztecsr-cust0,50.30.224.21-50.30.231.254
{
+ "id": 47,
"subnet": "50.30.224.0/21",
"option-data": [
{
@@ -6768,13 +6824,16 @@
]
},
{
+ "id": 48,
"subnet": "10.152.40.0/24"
},
{
+ "id": 49,
"subnet": "10.152.41.0/24"
},
#dhcpd-snmp=aztecsr-ruckus,10.152.42.100-10.152.42.239
{
+ "id": 50,
"subnet": "10.152.42.0/24",
"option-data": [
{
@@ -6821,6 +6880,7 @@
# WANIP for aztedis not configured
#dhcpd-snmp=aztedis-cust0,76.10.8.21-76.10.11.254
{
+ "id": 51,
"subnet": "76.10.8.0/22",
"option-data": [
{
@@ -6895,6 +6955,7 @@
},
#dhcpd-snmp=aztedis-cust1,66.253.248.3-66.253.249.254
{
+ "id": 52,
"subnet": "66.253.248.0/23",
"option-data": [
{
@@ -6960,13 +7021,16 @@
]
},
{
+ "id": 53,
"subnet": "10.144.20.0/24"
},
{
+ "id": 54,
"subnet": "10.144.21.0/24"
},
#dhcpd-snmp=aztedis-ruckus,10.144.22.20-10.144.22.250
{
+ "id": 55,
"subnet": "10.144.22.0/24",
"option-data": [
{
@@ -7032,6 +7096,7 @@
# WANIP for aztegmo not configured
#dhcpd-snmp=aztegmo-cust0,50.30.216.21-50.30.219.254
{
+ "id": 56,
"subnet": "50.30.216.0/22",
"option-data": [
{
@@ -7098,6 +7163,7 @@
},
#dhcpd-snmp=aztegmo-cust1,50.30.214.3-50.30.215.254
{
+ "id": 57,
"subnet": "50.30.214.0/23",
"option-data": [
{
@@ -7172,6 +7238,7 @@
},
#dhcpd-snmp=aztegmo-cust2,50.30.244.3-50.30.244.254
{
+ "id": 58,
"subnet": "50.30.244.0/24",
"option-data": [
{
@@ -7237,13 +7304,16 @@
]
},
{
+ "id": 59,
"subnet": "10.152.8.0/24"
},
{
+ "id": 60,
"subnet": "10.152.9.0/24"
},
#dhcpd-snmp=aztegmo-ruckus,10.152.10.100-10.152.10.239
{
+ "id": 61,
"subnet": "10.152.10.0/24",
"option-data": [
{
@@ -7291,6 +7361,7 @@
# WANIP for aztevds not configured
#dhcpd-snmp=aztevds-cust0,66.253.167.21-66.253.167.254
{
+ "id": 62,
"subnet": "66.253.167.0/24",
"option-data": [
{
@@ -7357,6 +7428,7 @@
},
#dhcpd-snmp=aztevds-cust1,68.180.44.3-68.180.45.254
{
+ "id": 63,
"subnet": "68.180.44.0/23",
"option-data": [
{
@@ -7423,6 +7495,7 @@
},
#dhcpd-snmp=aztevds-cust2,68.180.46.3-68.180.47.254
{
+ "id": 64,
"subnet": "68.180.46.0/23",
"option-data": [
{
@@ -7489,6 +7562,7 @@
},
#dhcpd-snmp=aztevds-cust3,68.180.52.3-68.180.53.254
{
+ "id": 65,
"subnet": "68.180.52.0/23",
"option-data": [
{
@@ -7555,6 +7629,7 @@
},
#dhcpd-snmp=aztevds-cust4,68.180.54.3-68.180.55.254
{
+ "id": 66,
"subnet": "68.180.54.0/23",
"option-data": [
{
@@ -7620,10 +7695,12 @@
]
},
{
+ "id": 67,
"subnet": "10.153.16.0/24"
},
#dhcpd-snmp=aztevds-ruckus,10.153.17.20-10.153.17.254
{
+ "id": 68,
"subnet": "10.153.17.0/24",
"option-data": [
{
@@ -7661,6 +7738,7 @@
},
#dhcpd-snmp=aztevds-ruckus2,10.153.18.20-10.153.18.254
{
+ "id": 69,
"subnet": "10.153.18.0/24",
"option-data": [
{
@@ -7707,6 +7785,7 @@
# WANIP for aztevil not configured
#dhcpd-snmp=aztevil-cust0,50.30.160.21-50.30.161.223
{
+ "id": 70,
"subnet": "50.30.160.0/23",
"option-data": [
{
@@ -7773,6 +7852,7 @@
},
#dhcpd-snmp=aztevil-cust1,10.146.121.3-10.146.121.254
{
+ "id": 71,
"subnet": "10.146.121.0/24",
"option-data": [
{
@@ -7838,13 +7918,16 @@
]
},
{
+ "id": 72,
"subnet": "10.152.12.0/24"
},
{
+ "id": 73,
"subnet": "10.152.13.0/24"
},
#dhcpd-snmp=aztevil-cust2,10.146.123.3-10.146.123.254
{
+ "id": 74,
"subnet": "10.146.123.0/24",
"option-data": [
{
@@ -7911,6 +7994,7 @@
},
#dhcpd-snmp=aztevil-ruckus,10.152.14.100-10.152.14.239
{
+ "id": 75,
"subnet": "10.152.14.0/24",
"option-data": [
{
@@ -7958,6 +8042,7 @@
# WANIP for aztuert not configured
#dhcpd-snmp=aztuert-cust0,50.30.209.21-50.30.209.254
{
+ "id": 76,
"subnet": "50.30.209.0/24",
"option-data": [
{
@@ -8023,13 +8108,16 @@
]
},
{
+ "id": 77,
"subnet": "10.152.16.0/24"
},
{
+ "id": 78,
"subnet": "10.152.17.0/24"
},
#dhcpd-snmp=aztuert-ruckus,10.152.18.100-10.152.18.239
{
+ "id": 79,
"subnet": "10.152.18.0/24",
"option-data": [
{
@@ -8077,6 +8165,7 @@
# WANIP for aztueru not configured
#dhcpd-snmp=aztueru-cust0,50.30.212.21-50.30.213.254
{
+ "id": 80,
"subnet": "50.30.212.0/23",
"option-data": [
{
@@ -8142,13 +8231,16 @@
]
},
{
+ "id": 81,
"subnet": "10.152.20.0/24"
},
{
+ "id": 82,
"subnet": "10.152.21.0/24"
},
#dhcpd-snmp=aztueru-ruckus,10.152.22.100-10.152.22.239
{
+ "id": 83,
"subnet": "10.152.22.0/24",
"option-data": [
{
@@ -8196,6 +8288,7 @@
# WANIP for aztunpt not configured
#dhcpd-snmp=aztunpt-cust0,24.248.188.21-24.248.191.254
{
+ "id": 84,
"subnet": "24.248.188.0/22",
"option-data": [
{
@@ -8268,6 +8361,7 @@
},
#dhcpd-snmp=aztunpt-cust1,50.30.153.3-50.30.153.254
{
+ "id": 85,
"subnet": "50.30.153.0/24",
"option-data": [
{
@@ -8317,6 +8411,7 @@
},
#dhcpd-snmp=aztunpt-cust2,50.30.182.3-50.30.182.254
{
+ "id": 86,
"subnet": "50.30.182.0/24",
"option-data": [
{
@@ -8366,6 +8461,7 @@
},
#dhcpd-snmp=aztunpt-cust3,96.63.213.3-96.63.213.254
{
+ "id": 87,
"subnet": "96.63.213.0/24",
"option-data": [
{
@@ -8415,6 +8511,7 @@
},
#dhcpd-snmp=aztunpt-cust4,173.230.114.3-173.230.115.254
{
+ "id": 88,
"subnet": "173.230.114.0/23",
"option-data": [
{
@@ -8463,13 +8560,16 @@
]
},
{
+ "id": 89,
"subnet": "10.152.24.0/24"
},
{
+ "id": 90,
"subnet": "10.152.25.0/24"
},
#dhcpd-snmp=aztunpt-ruckus,10.152.26.100-10.152.26.239
{
+ "id": 91,
"subnet": "10.152.26.0/24",
"option-data": [
{
@@ -8516,6 +8616,7 @@
# WANIP for aztures not configured
#dhcpd-snmp=aztures-cust0,68.180.16.21-68.180.19.254
{
+ "id": 92,
"subnet": "68.180.16.0/22",
"option-data": [
{
@@ -8582,6 +8683,7 @@
},
#dhcpd-snmp=aztures-cust1,173.230.53.3-173.230.53.254
{
+ "id": 93,
"subnet": "173.230.53.0/24",
"option-data": [
{
@@ -8648,6 +8750,7 @@
},
#dhcpd-snmp=aztures-cust2,173.230.113.3-173.230.113.254
{
+ "id": 94,
"subnet": "173.230.113.0/24",
"option-data": [
{
@@ -8714,6 +8817,7 @@
},
#dhcpd-snmp=aztures-cust3,10.180.126.3-10.180.127.254
{
+ "id": 95,
"subnet": "10.180.126.0/23",
"option-data": [
{
@@ -8779,13 +8883,16 @@
]
},
{
+ "id": 96,
"subnet": "10.152.28.0/24"
},
{
+ "id": 97,
"subnet": "10.152.29.0/24"
},
#dhcpd-snmp=aztures-ruckus,10.152.30.100-10.152.30.239
{
+ "id": 98,
"subnet": "10.152.30.0/24",
"option-data": [
{
@@ -8851,6 +8958,7 @@
# WANIP for cafrjco not configured
#dhcpd-snmp=cafrjco-cust0,68.180.92.21-68.180.93.254
{
+ "id": 99,
"subnet": "68.180.92.0/23",
"option-data": [
{
@@ -8925,6 +9033,7 @@
},
#dhcpd-snmp=cafrjco-cust1,68.180.127.3-68.180.127.254
{
+ "id": 100,
"subnet": "68.180.127.0/24",
"option-data": [
{
@@ -8991,6 +9100,7 @@
},
#dhcpd-snmp=cafrjco-cust2,173.230.122.3-173.230.122.254
{
+ "id": 101,
"subnet": "173.230.122.0/24",
"option-data": [
{
@@ -9056,13 +9166,16 @@
]
},
{
+ "id": 102,
"subnet": "10.144.4.0/24"
},
{
+ "id": 103,
"subnet": "10.144.5.0/24"
},
#dhcpd-snmp=cafrjco-ruckus,10.144.6.100-10.144.6.239
{
+ "id": 104,
"subnet": "10.144.6.0/24",
"option-data": [
{
@@ -9107,13 +9220,16 @@
"name": "cagotro",
"subnet4": [
{
+ "id": 105,
"subnet": "216.171.49.1/32"
},
{
+ "id": 106,
"subnet": "10.144.36.0/24"
},
#dhcpd-snmp=cagotro-cam,10.144.37.5-10.144.37.254
{
+ "id": 107,
"subnet": "10.144.37.0/24",
"option-data": [
{
@@ -9176,6 +9292,7 @@
},
#dhcpd-snmp=cagotro-ruckus,10.144.38.80-10.144.38.239
{
+ "id": 108,
"subnet": "10.144.38.0/24",
"option-data": [
{
@@ -9241,6 +9358,7 @@
# WANIP for casaver not configured
#dhcpd-snmp=casaver-cust0,66.253.176.21-66.253.177.254
{
+ "id": 109,
"subnet": "66.253.176.0/23",
"option-data": [
{
@@ -9307,6 +9425,7 @@
},
#dhcpd-snmp=casaver-cust1,66.253.205.3-66.253.205.254
{
+ "id": 110,
"subnet": "66.253.205.0/24",
"option-data": [
{
@@ -9373,6 +9492,7 @@
},
#dhcpd-snmp=casaver-cust2,66.253.213.3-66.253.213.254
{
+ "id": 111,
"subnet": "66.253.213.0/24",
"option-data": [
{
@@ -9438,13 +9558,16 @@
]
},
{
+ "id": 112,
"subnet": "10.144.12.0/24"
},
{
+ "id": 113,
"subnet": "10.144.13.0/24"
},
#dhcpd-snmp=casaver-ruckus,10.144.14.100-10.144.14.239
{
+ "id": 114,
"subnet": "10.144.14.0/24",
"option-data": [
{
@@ -9510,6 +9633,7 @@
# WANIP for casdgra not configured
#dhcpd-snmp=casdgra-cust0,50.30.134.21-50.30.135.254
{
+ "id": 115,
"subnet": "50.30.134.0/23",
"option-data": [
{
@@ -9593,13 +9717,16 @@
]
},
{
+ "id": 116,
"subnet": "10.153.24.0/24"
},
{
+ "id": 117,
"subnet": "10.153.25.0/24"
},
#dhcpd-snmp=casdgra-ruckus,10.153.26.100-10.153.26.239
{
+ "id": 118,
"subnet": "10.153.26.0/24",
"option-data": [
{
@@ -9646,6 +9773,7 @@
# WANIP for cobouva not configured
#dhcpd-snmp=cobouva-cust0,76.10.29.21-76.10.29.254
{
+ "id": 119,
"subnet": "76.10.29.0/24",
"option-data": [
{
@@ -9712,6 +9840,7 @@
},
#dhcpd-snmp=cobouva-cust1,173.230.127.3-173.230.127.254
{
+ "id": 120,
"subnet": "173.230.127.0/24",
"option-data": [
{
@@ -9777,13 +9906,16 @@
]
},
{
+ "id": 121,
"subnet": "10.148.24.0/24"
},
{
+ "id": 122,
"subnet": "10.148.25.0/24"
},
#dhcpd-snmp=cobouva-ruckus,10.148.26.100-10.148.26.239
{
+ "id": 123,
"subnet": "10.148.26.0/24",
"option-data": [
{
@@ -9848,6 +9980,7 @@
# WANIP for cofcgro not configured
#dhcpd-snmp=cofcgro-cust0,68.234.148.21-68.234.151.254
{
+ "id": 124,
"subnet": "68.234.148.0/22",
"option-data": [
{
@@ -9913,13 +10046,16 @@
]
},
{
+ "id": 125,
"subnet": "10.153.8.0/24"
},
{
+ "id": 126,
"subnet": "10.153.9.0/24"
},
#dhcpd-snmp=cofcgro-ruckus,10.153.10.100-10.153.10.239
{
+ "id": 127,
"subnet": "10.153.10.0/24",
"option-data": [
{
@@ -9983,6 +10119,7 @@
"subnet4": [
#dhcpd-snmp=flgamel-cust0,66.253.132.21-66.253.135.254
{
+ "id": 128,
"subnet": "66.253.132.0/22",
"option-data": [
{
@@ -10056,13 +10193,16 @@
]
},
{
+ "id": 129,
"subnet": "10.148.8.0/24"
},
{
+ "id": 130,
"subnet": "10.148.9.0/24"
},
#dhcpd-snmp=flgamel-ruckus,10.148.10.100-10.148.10.239
{
+ "id": 131,
"subnet": "10.148.10.0/24",
"option-data": [
{
@@ -10117,6 +10257,7 @@
# WANIP for fljamel not configured
#dhcpd-snmp=fljamel-cust0,66.253.208.21-66.253.211.254
{
+ "id": 132,
"subnet": "66.253.208.0/22",
"option-data": [
{
@@ -10190,13 +10331,16 @@
]
},
{
+ "id": 133,
"subnet": "10.148.20.0/24"
},
{
+ "id": 134,
"subnet": "10.148.21.0/24"
},
#dhcpd-snmp=fljamel-ruckus,10.148.22.100-10.148.22.239
{
+ "id": 135,
"subnet": "10.148.22.0/24",
"option-data": [
{
@@ -10244,6 +10388,7 @@
# WANIP for floredg not configured
#dhcpd-snmp=floredg-cust0,66.253.244.21-66.253.245.254
{
+ "id": 136,
"subnet": "66.253.244.0/23",
"option-data": [
{
@@ -10310,6 +10455,7 @@
},
#dhcpd-snmp=floredg-cust1,66.253.254.3-66.253.255.254
{
+ "id": 137,
"subnet": "66.253.254.0/23",
"option-data": [
{
@@ -10376,6 +10522,7 @@
},
#dhcpd-snmp=floredg-cust2,66.253.156.3-66.253.156.254
{
+ "id": 138,
"subnet": "66.253.156.0/24",
"option-data": [
{
@@ -10441,13 +10588,16 @@
]
},
{
+ "id": 139,
"subnet": "10.148.64.0/24"
},
{
+ "id": 140,
"subnet": "10.148.65.0/24"
},
#dhcpd-snmp=floredg-ruckus,10.148.66.100-10.148.66.239
{
+ "id": 141,
"subnet": "10.148.66.0/24",
"option-data": [
{
@@ -10511,10 +10661,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 142,
"subnet": "66.158.229.26/32"
},
#dhcpd-snmp=florlof-cust0,10.16.4.20-10.16.7.200
{
+ "id": 143,
"subnet": "10.16.4.0/22",
"option-data": [
{
@@ -10573,6 +10725,7 @@
},
#dhcpd-snmp=florlof-ruckus,10.153.30.20-10.153.30.200
{
+ "id": 144,
"subnet": "10.153.30.0/24",
"option-data": [
{
@@ -10629,6 +10782,7 @@
# WANIP for fltacam not configured
#dhcpd-snmp=fltacam-cust0,68.234.136.21-68.234.139.254
{
+ "id": 145,
"subnet": "68.234.136.0/22",
"option-data": [
{
@@ -10691,6 +10845,7 @@
},
#dhcpd-snmp=fltacam-cust1,68.234.254.3-68.234.254.254
{
+ "id": 146,
"subnet": "68.234.254.0/24",
"option-data": [
{
@@ -10738,13 +10893,16 @@
]
},
{
+ "id": 147,
"subnet": "10.144.80.0/24"
},
{
+ "id": 148,
"subnet": "10.144.81.0/24"
},
#dhcpd-snmp=fltacam-ruckus,10.144.82.100-10.144.82.239
{
+ "id": 149,
"subnet": "10.144.82.0/24",
"option-data": [
{
@@ -13708,6 +13866,7 @@
# WANIP for fltagnd not configured
#dhcpd-snmp=fltagnd-cust0,173.230.118.21-173.230.119.254
{
+ "id": 150,
"subnet": "173.230.118.0/23",
"option-data": [
{
@@ -13782,6 +13941,7 @@
},
#dhcpd-snmp=fltagnd-cust1,173.230.121.3-173.230.121.254
{
+ "id": 151,
"subnet": "173.230.121.0/24",
"option-data": [
{
@@ -13848,6 +14008,7 @@
},
#dhcpd-snmp=fltagnd-cust2,50.30.139.3-50.30.139.254
{
+ "id": 152,
"subnet": "50.30.139.0/24",
"option-data": [
{
@@ -13913,13 +14074,16 @@
]
},
{
+ "id": 153,
"subnet": "10.144.76.0/24"
},
{
+ "id": 154,
"subnet": "10.144.77.0/24"
},
#dhcpd-snmp=fltagnd-ruckus,10.144.78.100-10.144.78.239
{
+ "id": 155,
"subnet": "10.144.78.0/24",
"option-data": [
{
@@ -13966,6 +14130,7 @@
# WANIP for fltalux not configured
#dhcpd-snmp=fltalux-cust0,173.230.92.21-173.230.95.254
{
+ "id": 156,
"subnet": "173.230.92.0/22",
"option-data": [
{
@@ -14031,13 +14196,16 @@
]
},
{
+ "id": 157,
"subnet": "10.145.4.0/24"
},
{
+ "id": 158,
"subnet": "10.145.5.0/24"
},
#dhcpd-snmp=fltalux-ruckus,10.145.6.100-10.145.6.239
{
+ "id": 159,
"subnet": "10.145.6.0/24",
"option-data": [
{
@@ -14101,10 +14269,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 160,
"subnet": "199.44.252.90/32"
},
#dhcpd-snmp=fltavth-cust0,68.234.200.21-68.234.207.254
{
+ "id": 161,
"subnet": "68.234.200.0/21",
"option-data": [
{
@@ -14153,13 +14323,16 @@
]
},
{
+ "id": 162,
"subnet": "10.148.56.0/24"
},
{
+ "id": 163,
"subnet": "10.148.57.0/24"
},
#dhcpd-snmp=fltavth-ruckus,10.148.58.100-10.148.58.239
{
+ "id": 164,
"subnet": "10.148.58.0/24",
"option-data": [
{
@@ -14207,6 +14380,7 @@
# WANIP for fltbhla not configured
#dhcpd-snmp=fltbhla-cust0,67.79.132.21-67.79.133.254
{
+ "id": 165,
"subnet": "67.79.132.0/23",
"option-data": [
{
@@ -14272,13 +14446,16 @@
]
},
{
+ "id": 166,
"subnet": "10.149.104.0/24"
},
{
+ "id": 167,
"subnet": "10.149.105.0/24"
},
#dhcpd-snmp=fltbhla-ruckus,10.149.106.100-10.149.106.239
{
+ "id": 168,
"subnet": "10.149.106.0/24",
"option-data": [
{
@@ -14325,6 +14502,7 @@
# WANIP for gaanriv not configured
#dhcpd-snmp=gaanriv-cust0,66.253.220.21-66.253.223.254
{
+ "id": 169,
"subnet": "66.253.220.0/22",
"option-data": [
{
@@ -14390,16 +14568,20 @@
]
},
{
+ "id": 170,
"subnet": "10.144.108.0/24"
},
{
+ "id": 171,
"subnet": "10.144.109.0/24"
},
{
+ "id": 172,
"subnet": "10.51.145.96/30"
},
#dhcpd-snmp=gaanriv-ruckus,10.144.110.100-10.144.110.239
{
+ "id": 173,
"subnet": "10.144.110.0/24",
"option-data": [
{
@@ -14447,6 +14629,7 @@
# WANIP for gadusav not configured
#dhcpd-snmp=gadusav-cust0,68.234.130.21-68.234.130.254
{
+ "id": 175,
"subnet": "68.234.130.0/24",
"option-data": [
{
@@ -14512,13 +14695,16 @@
]
},
{
+ "id": 176,
"subnet": "10.147.16.0/24"
},
{
+ "id": 177,
"subnet": "10.147.17.0/24"
},
#dhcpd-snmp=gadusav-ruckus,10.147.18.100-10.147.18.239
{
+ "id": 178,
"subnet": "10.147.18.0/24",
"option-data": [
{
@@ -14566,6 +14752,7 @@
# WANIP for gahicol not configured
#dhcpd-snmp=gahicol-cust0,96.63.214.21-96.63.215.254
{
+ "id": 179,
"subnet": "96.63.214.0/23",
"option-data": [
{
@@ -14632,6 +14819,7 @@
},
#dhcpd-snmp=gahicol-ruckus,10.147.20.100-10.147.20.239
{
+ "id": 180,
"subnet": "10.147.20.0/24",
"option-data": [
{
@@ -14678,6 +14866,7 @@
# WANIP for gakeucf not configured
#dhcpd-snmp=gakeucf-cust0,66.253.144.21-66.253.147.223
{
+ "id": 181,
"subnet": "66.253.144.0/22",
"option-data": [
{
@@ -14744,6 +14933,7 @@
},
#dhcpd-snmp=gakeucf-cust1,10.144.152.3-10.144.153.254
{
+ "id": 182,
"subnet": "10.144.152.0/23",
"option-data": [
{
@@ -14810,6 +15000,7 @@
},
#dhcpd-snmp=gakeucf-cust2,10.144.154.3-10.144.155.254
{
+ "id": 183,
"subnet": "10.144.154.0/23",
"option-data": [
{
@@ -14875,13 +15066,16 @@
]
},
{
+ "id": 184,
"subnet": "10.144.112.0/24"
},
{
+ "id": 185,
"subnet": "10.144.113.0/24"
},
#dhcpd-snmp=gakeucf-ruckus,10.144.114.50-10.144.114.239
{
+ "id": 186,
"subnet": "10.144.114.0/24",
"option-data": [
{
@@ -14947,6 +15141,7 @@
# WANIP for gamamac not configured
#dhcpd-snmp=gamamac-cust0,76.10.38.21-76.10.39.254
{
+ "id": 187,
"subnet": "76.10.38.0/23",
"option-data": [
{
@@ -15020,13 +15215,16 @@
]
},
{
+ "id": 188,
"subnet": "10.147.132.0/24"
},
{
+ "id": 189,
"subnet": "10.147.133.0/24"
},
#dhcpd-snmp=gamamac-ruckus,10.147.134.100-10.147.134.239
{
+ "id": 190,
"subnet": "10.147.134.0/24",
"option-data": [
{
@@ -15074,6 +15272,7 @@
# WANIP for gamibel not configured
#dhcpd-snmp=gamibel-cust0,50.30.176.21-50.30.179.254
{
+ "id": 191,
"subnet": "50.30.176.0/22",
"option-data": [
{
@@ -15147,13 +15346,16 @@
]
},
{
+ "id": 192,
"subnet": "10.149.152.0/24"
},
{
+ "id": 193,
"subnet": "10.149.153.0/24"
},
#dhcpd-snmp=gamibel-ruckus,10.149.154.100-10.149.154.239
{
+ "id": 194,
"subnet": "10.149.154.0/24",
"option-data": [
{
@@ -15201,6 +15403,7 @@
# WANIP for gasmspg not configured
#dhcpd-snmp=gasmspg-cust0,68.234.224.21-68.234.231.254
{
+ "id": 195,
"subnet": "68.234.224.0/21",
"option-data": [
{
@@ -15266,13 +15469,16 @@
]
},
{
+ "id": 196,
"subnet": "10.147.28.0/24"
},
{
+ "id": 197,
"subnet": "10.147.29.0/24"
},
#dhcpd-snmp=gasmspg-ruckus,10.147.30.100-10.147.30.239
{
+ "id": 198,
"subnet": "10.147.30.0/24",
"option-data": [
{
@@ -15320,6 +15526,7 @@
# WANIP for gaststa not configured
#dhcpd-snmp=gaststa-cust0,76.10.56.21-76.10.57.254
{
+ "id": 199,
"subnet": "76.10.56.0/23",
"option-data": [
{
@@ -15392,13 +15599,16 @@
]
},
{
+ "id": 200,
"subnet": "10.147.52.0/24"
},
{
+ "id": 201,
"subnet": "10.147.53.0/24"
},
#dhcpd-snmp=gaststa-ruckus,10.147.54.100-10.147.54.239
{
+ "id": 202,
"subnet": "10.147.54.0/24",
"option-data": [
{
@@ -15446,6 +15656,7 @@
# WANIP for gastupi not configured
#dhcpd-snmp=gastupi-cust0,68.180.4.21-68.180.5.254
{
+ "id": 203,
"subnet": "68.180.4.0/23",
"option-data": [
{
@@ -15512,6 +15723,7 @@
},
#dhcpd-snmp=gastupi-cust1,68.180.38.3-68.180.39.254
{
+ "id": 204,
"subnet": "68.180.38.0/23",
"option-data": [
{
@@ -15577,13 +15789,16 @@
]
},
{
+ "id": 205,
"subnet": "10.147.56.0/24"
},
{
+ "id": 206,
"subnet": "10.147.57.0/24"
},
#dhcpd-snmp=gastupi-ruckus,10.147.58.100-10.147.58.239
{
+ "id": 207,
"subnet": "10.147.58.0/24",
"option-data": [
{
@@ -15630,6 +15845,7 @@
# WANIP for ilcapsi not configured
#dhcpd-snmp=ilcapsi-cust0,68.234.188.21-68.234.191.254
{
+ "id": 208,
"subnet": "68.234.188.0/22",
"option-data": [
{
@@ -15685,13 +15901,16 @@
]
},
{
+ "id": 209,
"subnet": "10.151.24.0/24"
},
{
+ "id": 210,
"subnet": "10.151.25.0/24"
},
#dhcpd-snmp=ilcapsi-ruckus,10.151.26.100-10.151.26.239
{
+ "id": 211,
"subnet": "10.151.26.0/24",
"option-data": [
{
@@ -15736,10 +15955,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 214,
"subnet": "96.63.192.77/32"
},
#dhcpd-snmp=ilcu1001clrk-cust0,173.230.14.229-173.230.14.254
{
+ "id": 215,
"subnet": "173.230.14.224/27",
"option-data": [
{
@@ -15788,6 +16009,7 @@
},
#dhcpd-snmp=ilcu1001clrk-ruckus,10.159.189.100-10.159.189.239
{
+ "id": 216,
"subnet": "10.159.189.0/24",
"option-data": [
{
@@ -15834,6 +16056,7 @@
# WANIP for ilcu1004sloc not configured
#dhcpd-snmp=ilcu1004sloc-cust0,96.63.205.133-96.63.205.190
{
+ "id": 217,
"subnet": "96.63.205.128/26",
"option-data": [
{
@@ -15900,6 +16123,7 @@
},
#dhcpd-snmp=ilcu1004sloc-ruckus,10.159.11.100-10.159.11.239
{
+ "id": 218,
"subnet": "10.159.11.0/24",
"option-data": [
{
@@ -15945,10 +16169,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 219,
"subnet": "96.63.204.13/32"
},
#dhcpd-snmp=ilcu1004sto-cust0,173.230.10.37-173.230.10.62
{
+ "id": 220,
"subnet": "173.230.10.32/27",
"option-data": [
{
@@ -15997,6 +16223,7 @@
},
#dhcpd-snmp=ilcu1004sto-ruckus,10.159.221.100-10.159.221.239
{
+ "id": 221,
"subnet": "10.159.221.0/24",
"option-data": [
{
@@ -16041,10 +16268,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 222,
"subnet": "96.63.195.14/32"
},
#dhcpd-snmp=ilcu1005sec-cust0,173.230.16.133-173.230.16.190
{
+ "id": 223,
"subnet": "173.230.16.128/26",
"option-data": [
{
@@ -16093,6 +16322,7 @@
},
#dhcpd-snmp=ilcu1005sec-ruckus,10.159.121.100-10.159.121.239
{
+ "id": 224,
"subnet": "10.159.121.0/24",
"option-data": [
{
@@ -16139,6 +16369,7 @@
# WANIP for ilcu1006sthi not configured
#dhcpd-snmp=ilcu1006sthi-cust0,173.230.28.197-173.230.28.222
{
+ "id": 225,
"subnet": "173.230.28.192/27",
"option-data": [
{
@@ -16205,6 +16436,7 @@
},
#dhcpd-snmp=ilcu1006sthi-ruckus,10.159.171.100-10.159.171.239
{
+ "id": 226,
"subnet": "10.159.171.0/24",
"option-data": [
{
@@ -16252,6 +16484,7 @@
# WANIP for ilcu1006sto not configured
#dhcpd-snmp=ilcu1006sto-cust0,173.230.18.37-173.230.18.62
{
+ "id": 227,
"subnet": "173.230.18.32/27",
"option-data": [
{
@@ -16318,6 +16551,7 @@
},
#dhcpd-snmp=ilcu1006sto-ruckus,10.159.222.100-10.159.222.239
{
+ "id": 228,
"subnet": "10.159.222.0/24",
"option-data": [
{
@@ -16363,10 +16597,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 229,
"subnet": "96.63.195.20/32"
},
#dhcpd-snmp=ilcu1007sfir-cust0,173.230.16.197-173.230.16.254
{
+ "id": 230,
"subnet": "173.230.16.192/26",
"option-data": [
{
@@ -16415,6 +16651,7 @@
},
#dhcpd-snmp=ilcu1007sfir-ruckus,10.159.133.100-10.159.133.239
{
+ "id": 231,
"subnet": "10.159.133.0/24",
"option-data": [
{
@@ -16459,11 +16696,13 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 232,
"subnet": "66.253.150.110/32"
},
# WANIP for ilcu1009wcla not configured
#dhcpd-snmp=ilcu1009wcla-cust0,96.63.200.69-96.63.200.94
{
+ "id": 233,
"subnet": "96.63.200.64/27",
"option-data": [
{
@@ -16530,6 +16769,7 @@
},
#dhcpd-snmp=ilcu1009wcla-ruckus,10.159.17.100-10.159.17.239
{
+ "id": 234,
"subnet": "10.159.17.0/24",
"option-data": [
{
@@ -16577,6 +16817,7 @@
# WANIP for ilcu1010wcla not configured
#dhcpd-snmp=ilcu1010wcla-cust0,216.171.3.197-216.171.3.254
{
+ "id": 235,
"subnet": "216.171.3.192/26",
"option-data": [
{
@@ -16643,6 +16884,7 @@
},
#dhcpd-snmp=ilcu1010wcla-ruckus,10.159.18.100-10.159.18.239
{
+ "id": 236,
"subnet": "10.159.18.0/24",
"option-data": [
{
@@ -16690,6 +16932,7 @@
# WANIP for ilcu1012wcla not configured
#dhcpd-snmp=ilcu1012wcla-cust0,96.63.200.101-96.63.200.126
{
+ "id": 237,
"subnet": "96.63.200.96/27",
"option-data": [
{
@@ -16756,6 +16999,7 @@
},
#dhcpd-snmp=ilcu1012wcla-cust1,173.230.11.67-173.230.11.94
{
+ "id": 238,
"subnet": "173.230.11.64/27",
"option-data": [
{
@@ -16822,6 +17066,7 @@
},
#dhcpd-snmp=ilcu1012wcla-ruckus,10.159.19.100-10.159.19.239
{
+ "id": 239,
"subnet": "10.159.19.0/24",
"option-data": [
{
@@ -16867,10 +17112,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 240,
"subnet": "96.63.195.78/32"
},
#dhcpd-snmp=ilcu102greg-cust0,173.230.11.5-173.230.11.30
{
+ "id": 241,
"subnet": "173.230.11.0/27",
"option-data": [
{
@@ -16928,6 +17175,7 @@
},
#dhcpd-snmp=ilcu102greg-ruckus,10.159.214.100-10.159.214.239
{
+ "id": 242,
"subnet": "10.159.214.0/24",
"option-data": [
{
@@ -16974,6 +17222,7 @@
# WANIP for ilcu103s not configured
#dhcpd-snmp=ilcu103s-cust0,66.253.172.133-66.253.172.158
{
+ "id": 243,
"subnet": "66.253.172.128/27",
"option-data": [
{
@@ -17040,6 +17289,7 @@
},
#dhcpd-snmp=ilcu103s-cust1,66.253.172.195-66.253.172.222
{
+ "id": 244,
"subnet": "66.253.172.192/27",
"option-data": [
{
@@ -17106,6 +17356,7 @@
},
#dhcpd-snmp=ilcu103s-ruckus,10.159.26.100-10.159.26.239
{
+ "id": 245,
"subnet": "10.159.26.0/24",
"option-data": [
{
@@ -17151,10 +17402,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 246,
"subnet": "96.63.195.19/32"
},
#dhcpd-snmp=ilcu104earm-cust0,173.230.17.5-173.230.17.30
{
+ "id": 247,
"subnet": "173.230.17.0/27",
"option-data": [
{
@@ -17203,6 +17456,7 @@
},
#dhcpd-snmp=ilcu104earm-ruckus,10.159.122.100-10.159.122.239
{
+ "id": 248,
"subnet": "10.159.122.0/24",
"option-data": [
{
@@ -17249,6 +17503,7 @@
# WANIP for ilcu105edan not configured
#dhcpd-snmp=ilcu105edan-cust0,173.230.17.133-173.230.17.190
{
+ "id": 249,
"subnet": "173.230.17.128/26",
"option-data": [
{
@@ -17315,6 +17570,7 @@
},
#dhcpd-snmp=ilcu105edan-ruckus,10.159.134.100-10.159.134.239
{
+ "id": 250,
"subnet": "10.159.134.0/24",
"option-data": [
{
@@ -17362,6 +17618,7 @@
# WANIP for ilcu105egrn not configured
#dhcpd-snmp=ilcu105egrn-cust0,173.230.13.37-173.230.13.62
{
+ "id": 251,
"subnet": "173.230.13.32/27",
"option-data": [
{
@@ -17428,6 +17685,7 @@
},
#dhcpd-snmp=ilcu105egrn-cust1,173.230.19.163-173.230.19.190
{
+ "id": 252,
"subnet": "173.230.19.160/27",
"option-data": [
{
@@ -17494,6 +17752,7 @@
},
#dhcpd-snmp=ilcu105egrn-ruckus,10.159.157.100-10.159.157.239
{
+ "id": 253,
"subnet": "10.159.157.0/24",
"option-data": [
{
@@ -17539,10 +17798,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 254,
"subnet": "96.63.202.13/32"
},
#dhcpd-snmp=ilcu105four-cust0,173.230.17.69-173.230.17.126
{
+ "id": 255,
"subnet": "173.230.17.64/26",
"option-data": [
{
@@ -17591,6 +17852,7 @@
},
#dhcpd-snmp=ilcu105four-ruckus,10.159.115.100-10.159.115.239
{
+ "id": 256,
"subnet": "10.159.115.0/24",
"option-data": [
{
@@ -17635,10 +17897,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 257,
"subnet": "96.63.195.23/32"
},
#dhcpd-snmp=ilcu105john-cust0,173.230.25.101-173.230.25.126
{
+ "id": 258,
"subnet": "173.230.25.96/27",
"option-data": [
{
@@ -17687,6 +17951,7 @@
},
#dhcpd-snmp=ilcu105john-ruckus,10.159.165.100-10.159.165.239
{
+ "id": 259,
"subnet": "10.159.165.0/24",
"option-data": [
{
@@ -17733,6 +17998,7 @@
# WANIP for ilcu106dan not configured
#dhcpd-snmp=ilcu106dan-cust0,173.230.8.69-173.230.8.94
{
+ "id": 260,
"subnet": "173.230.8.64/27",
"option-data": [
{
@@ -17799,6 +18065,7 @@
},
#dhcpd-snmp=ilcu106dan-cust1,173.230.18.3-173.230.18.30
{
+ "id": 261,
"subnet": "173.230.18.0/27",
"option-data": [
{
@@ -17865,6 +18132,7 @@
},
#dhcpd-snmp=ilcu106dan-ruckus,10.159.120.100-10.159.120.239
{
+ "id": 262,
"subnet": "10.159.120.0/24",
"option-data": [
{
@@ -17912,6 +18180,7 @@
# WANIP for ilcu108chl not configured
#dhcpd-snmp=ilcu108chl-cust0,173.230.18.69-173.230.18.126
{
+ "id": 263,
"subnet": "173.230.18.64/26",
"option-data": [
{
@@ -17961,6 +18230,7 @@
},
#dhcpd-snmp=ilcu108chl-ruckus,10.159.102.100-10.159.102.239
{
+ "id": 264,
"subnet": "10.159.102.0/24",
"option-data": [
{
@@ -18006,10 +18276,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 265,
"subnet": "96.63.195.76/32"
},
#dhcpd-snmp=ilcu1103euc-cust0,173.230.23.101-173.230.23.126
{
+ "id": 266,
"subnet": "173.230.23.96/27",
"option-data": [
{
@@ -18058,6 +18330,7 @@
},
#dhcpd-snmp=ilcu1103euc-ruckus,10.159.162.100-10.159.162.239
{
+ "id": 267,
"subnet": "10.159.162.0/24",
"option-data": [
{
@@ -18102,10 +18375,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 268,
"subnet": "96.63.196.19/32"
},
#dhcpd-snmp=ilcu1106sto-cust0,173.230.14.101-173.230.14.126
{
+ "id": 269,
"subnet": "173.230.14.96/27",
"option-data": [
{
@@ -18154,6 +18429,7 @@
},
#dhcpd-snmp=ilcu1106sto-ruckus,10.159.16.100-10.159.16.239
{
+ "id": 270,
"subnet": "10.159.16.0/24",
"option-data": [
{
@@ -18200,6 +18476,7 @@
# WANIP for ilcu11074th not configured
#dhcpd-snmp=ilcu11074th-cust0,173.230.24.101-173.230.24.126
{
+ "id": 271,
"subnet": "173.230.24.96/27",
"option-data": [
{
@@ -18266,6 +18543,7 @@
},
#dhcpd-snmp=ilcu11074th-ruckus,10.159.163.100-10.159.163.239
{
+ "id": 272,
"subnet": "10.159.163.0/24",
"option-data": [
{
@@ -18313,6 +18591,7 @@
# WANIP for ilcu1107ssec not configured
#dhcpd-snmp=ilcu1107ssec-cust0,96.63.206.21-96.63.206.254
{
+ "id": 273,
"subnet": "96.63.206.0/24",
"option-data": [
{
@@ -18379,6 +18658,7 @@
},
#dhcpd-snmp=ilcu1107ssec-ruckus,10.151.108.100-10.151.108.239
{
+ "id": 274,
"subnet": "10.151.108.0/24",
"option-data": [
{
@@ -18424,10 +18704,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 275,
"subnet": "96.63.204.15/32"
},
#dhcpd-snmp=ilcu1109sto-cust0,173.230.14.197-173.230.14.222
{
+ "id": 276,
"subnet": "173.230.14.192/27",
"option-data": [
{
@@ -18476,6 +18758,7 @@
},
#dhcpd-snmp=ilcu1109sto-ruckus,10.159.13.100-10.159.13.239
{
+ "id": 277,
"subnet": "10.159.13.0/24",
"option-data": [
{
@@ -18522,6 +18805,7 @@
# WANIP for ilcu110ejohn not configured
#dhcpd-snmp=ilcu110ejohn-cust0,173.230.8.133-173.230.8.142
{
+ "id": 278,
"subnet": "173.230.8.128/28",
"option-data": [
{
@@ -18588,6 +18872,7 @@
},
#dhcpd-snmp=ilcu110ejohn-cust1,96.63.203.147-96.63.203.158
{
+ "id": 279,
"subnet": "96.63.203.144/28",
"option-data": [
{
@@ -18654,6 +18939,7 @@
},
#dhcpd-snmp=ilcu110ejohn-ruckus,10.159.236.100-10.159.236.239
{
+ "id": 280,
"subnet": "10.159.236.0/24",
"option-data": [
{
@@ -18699,10 +18985,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 281,
"subnet": "96.63.195.79/32"
},
#dhcpd-snmp=ilcu1112sec-cust0,173.230.10.229-173.230.10.254
{
+ "id": 282,
"subnet": "173.230.10.224/27",
"option-data": [
{
@@ -18751,6 +19039,7 @@
},
#dhcpd-snmp=ilcu1112sec-ruckus,10.159.217.100-10.159.217.239
{
+ "id": 283,
"subnet": "10.159.217.0/24",
"option-data": [
{
@@ -18797,6 +19086,7 @@
# WANIP for ilcu111echa not configured
#dhcpd-snmp=ilcu111echa-cust0,173.230.27.37-173.230.27.62
{
+ "id": 284,
"subnet": "173.230.27.32/27",
"option-data": [
{
@@ -18863,6 +19153,7 @@
},
#dhcpd-snmp=ilcu111echa-ruckus,10.159.166.100-10.159.166.239
{
+ "id": 285,
"subnet": "10.159.166.0/24",
"option-data": [
{
@@ -18910,6 +19201,7 @@
# WANIP for ilcu111eh not configured
#dhcpd-snmp=ilcu111eh-cust0,66.253.172.69-66.253.172.94
{
+ "id": 286,
"subnet": "66.253.172.64/27",
"option-data": [
{
@@ -18976,6 +19268,7 @@
},
#dhcpd-snmp=ilcu111eh-ruckus,10.159.24.100-10.159.24.239
{
+ "id": 287,
"subnet": "10.159.24.0/24",
"option-data": [
{
@@ -19021,10 +19314,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 288,
"subnet": "96.63.195.15/32"
},
#dhcpd-snmp=ilcu201arm-cust0,173.230.14.37-173.230.14.62
{
+ "id": 289,
"subnet": "173.230.14.32/27",
"option-data": [
{
@@ -19073,6 +19368,7 @@
},
#dhcpd-snmp=ilcu201arm-ruckus,10.159.191.100-10.159.191.239
{
+ "id": 290,
"subnet": "10.159.191.0/24",
"option-data": [
{
@@ -19119,6 +19415,7 @@
# WANIP for ilcu202john not configured
#dhcpd-snmp=ilcu202john-cust0,96.63.207.5-96.63.207.62
{
+ "id": 291,
"subnet": "96.63.207.0/26",
"option-data": [
{
@@ -19185,6 +19482,7 @@
},
#dhcpd-snmp=ilcu202john-ruckus,10.159.116.100-10.159.116.239
{
+ "id": 292,
"subnet": "10.159.116.0/24",
"option-data": [
{
@@ -19232,6 +19530,7 @@
# WANIP for ilcu203hea not configured
#dhcpd-snmp=ilcu203hea-cust0,173.230.27.5-173.230.27.30
{
+ "id": 293,
"subnet": "173.230.27.0/27",
"option-data": [
{
@@ -19298,6 +19597,7 @@
},
#dhcpd-snmp=ilcu203hea-ruckus,10.159.154.100-10.159.154.239
{
+ "id": 294,
"subnet": "10.159.154.0/24",
"option-data": [
{
@@ -19345,6 +19645,7 @@
# WANIP for ilcu203s6th not configured
#dhcpd-snmp=ilcu203s6th-cust0,173.230.20.69-173.230.20.94
{
+ "id": 295,
"subnet": "173.230.20.64/27",
"option-data": [
{
@@ -19411,6 +19712,7 @@
},
#dhcpd-snmp=ilcu203s6th-cust1,173.230.17.227-173.230.17.254
{
+ "id": 296,
"subnet": "173.230.17.224/27",
"option-data": [
{
@@ -19477,6 +19779,7 @@
},
#dhcpd-snmp=ilcu203s6th-ruckus,10.159.148.100-10.159.148.239
{
+ "id": 297,
"subnet": "10.159.148.0/24",
"option-data": [
{
@@ -19522,10 +19825,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 298,
"subnet": "66.253.150.118/32"
},
#dhcpd-snmp=ilcu208nha-cust0,173.230.14.165-173.230.14.190
{
+ "id": 299,
"subnet": "173.230.14.160/27",
"option-data": [
{
@@ -19574,6 +19879,7 @@
},
#dhcpd-snmp=ilcu208nha-ruckus,10.159.14.100-10.159.14.239
{
+ "id": 300,
"subnet": "10.159.14.0/24",
"option-data": [
{
@@ -19618,10 +19924,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 301,
"subnet": "96.63.194.82/32"
},
#dhcpd-snmp=ilcu208whi-cust0,173.230.19.197-173.230.19.254
{
+ "id": 302,
"subnet": "173.230.19.192/26",
"option-data": [
{
@@ -19670,6 +19978,7 @@
},
#dhcpd-snmp=ilcu208whi-ruckus,10.159.112.100-10.159.112.239
{
+ "id": 303,
"subnet": "10.159.112.0/24",
"option-data": [
{
@@ -19714,10 +20023,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 304,
"subnet": "96.63.194.101/32"
},
#dhcpd-snmp=ilcu209clar-cust0,173.230.29.69-173.230.29.94
{
+ "id": 305,
"subnet": "173.230.29.64/27",
"option-data": [
{
@@ -19766,6 +20077,7 @@
},
#dhcpd-snmp=ilcu209clar-ruckus,10.159.175.100-10.159.175.239
{
+ "id": 306,
"subnet": "10.159.175.0/24",
"option-data": [
{
@@ -19810,10 +20122,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 307,
"subnet": "96.63.202.142/32"
},
#dhcpd-snmp=ilcu210whi-cust0,173.230.20.5-173.230.20.30
{
+ "id": 308,
"subnet": "173.230.20.0/27",
"option-data": [
{
@@ -19862,6 +20176,7 @@
},
#dhcpd-snmp=ilcu210whi-ruckus,10.159.113.100-10.159.113.239
{
+ "id": 309,
"subnet": "10.159.113.0/24",
"option-data": [
{
@@ -19906,10 +20221,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 310,
"subnet": "96.63.194.91/32"
},
#dhcpd-snmp=ilcu211clark-cust0,173.230.19.5-173.230.19.30
{
+ "id": 311,
"subnet": "173.230.19.0/27",
"option-data": [
{
@@ -19958,6 +20275,7 @@
},
#dhcpd-snmp=ilcu211clark-ruckus,10.159.142.100-10.159.142.239
{
+ "id": 312,
"subnet": "10.159.142.0/24",
"option-data": [
{
@@ -20002,10 +20320,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 313,
"subnet": "96.63.194.97/32"
},
#dhcpd-snmp=ilcu211john-cust0,173.230.15.69-173.230.15.94
{
+ "id": 314,
"subnet": "173.230.15.64/27",
"option-data": [
{
@@ -20054,6 +20374,7 @@
},
#dhcpd-snmp=ilcu211john-ruckus,10.159.186.100-10.159.186.239
{
+ "id": 315,
"subnet": "10.159.186.0/24",
"option-data": [
{
@@ -20100,6 +20421,7 @@
# WANIP for ilcu3024th not configured
#dhcpd-snmp=ilcu3024th-cust0,173.230.8.37-173.230.8.62
{
+ "id": 316,
"subnet": "173.230.8.32/27",
"option-data": [
{
@@ -20166,6 +20488,7 @@
},
#dhcpd-snmp=ilcu3024th-cust1,173.230.9.227-173.230.9.254
{
+ "id": 317,
"subnet": "173.230.9.224/27",
"option-data": [
{
@@ -20232,6 +20555,7 @@
},
#dhcpd-snmp=ilcu3024th-ruckus,10.159.4.100-10.159.4.239
{
+ "id": 318,
"subnet": "10.159.4.0/24",
"option-data": [
{
@@ -20279,6 +20603,7 @@
# WANIP for ilcu303egrn not configured
#dhcpd-snmp=ilcu303egrn-cust0,173.230.112.37-173.230.112.62
{
+ "id": 319,
"subnet": "173.230.112.32/27",
"option-data": [
{
@@ -20328,6 +20653,7 @@
},
#dhcpd-snmp=ilcu303egrn-ruckus,10.159.250.100-10.159.250.239
{
+ "id": 320,
"subnet": "10.159.250.0/24",
"option-data": [
{
@@ -20373,10 +20699,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 321,
"subnet": "96.63.192.83/32"
},
#dhcpd-snmp=ilcu303sbus-cust0,173.230.14.133-173.230.14.158
{
+ "id": 322,
"subnet": "173.230.14.128/27",
"option-data": [
{
@@ -20425,6 +20753,7 @@
},
#dhcpd-snmp=ilcu303sbus-ruckus,10.159.15.100-10.159.15.239
{
+ "id": 323,
"subnet": "10.159.15.0/24",
"option-data": [
{
@@ -20471,6 +20800,7 @@
# WANIP for ilcu303wgrn not configured
#dhcpd-snmp=ilcu303wgrn-cust0,96.63.203.21-96.63.203.126
{
+ "id": 324,
"subnet": "96.63.203.0/25",
"option-data": [
{
@@ -20537,6 +20867,7 @@
},
#dhcpd-snmp=ilcu303wgrn-ruckus,10.159.10.100-10.159.10.239
{
+ "id": 325,
"subnet": "10.159.10.0/24",
"option-data": [
{
@@ -20582,10 +20913,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 326,
"subnet": "96.63.192.143/32"
},
#dhcpd-snmp=ilcu306arm-cust0,173.230.29.197-173.230.29.222
{
+ "id": 327,
"subnet": "173.230.29.192/27",
"option-data": [
{
@@ -20634,6 +20967,7 @@
},
#dhcpd-snmp=ilcu306arm-ruckus,10.159.179.100-10.159.179.239
{
+ "id": 328,
"subnet": "10.159.179.0/24",
"option-data": [
{
@@ -20678,10 +21012,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 329,
"subnet": "96.63.202.141/32"
},
#dhcpd-snmp=ilcu306clrk-cust0,173.230.9.197-173.230.9.222
{
+ "id": 330,
"subnet": "173.230.9.192/27",
"option-data": [
{
@@ -20730,6 +21066,7 @@
},
#dhcpd-snmp=ilcu306clrk-ruckus,10.159.225.100-10.159.225.239
{
+ "id": 331,
"subnet": "10.159.225.0/24",
"option-data": [
{
@@ -20774,10 +21111,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 332,
"subnet": "96.63.202.78/32"
},
#dhcpd-snmp=ilcu306whit-cust0,173.230.9.101-173.230.9.126
{
+ "id": 333,
"subnet": "173.230.9.96/27",
"option-data": [
{
@@ -20826,6 +21165,7 @@
},
#dhcpd-snmp=ilcu306whit-ruckus,10.159.230.100-10.159.230.239
{
+ "id": 334,
"subnet": "10.159.230.0/24",
"option-data": [
{
@@ -20872,6 +21212,7 @@
# WANIP for ilcu307arm not configured
#dhcpd-snmp=ilcu307arm-cust0,173.230.21.5-173.230.21.62
{
+ "id": 335,
"subnet": "173.230.21.0/26",
"option-data": [
{
@@ -20938,6 +21279,7 @@
},
#dhcpd-snmp=ilcu307arm-ruckus,10.159.108.100-10.159.108.239
{
+ "id": 336,
"subnet": "10.159.108.0/24",
"option-data": [
{
@@ -20985,6 +21327,7 @@
# WANIP for ilcu307clk not configured
#dhcpd-snmp=ilcu307clk-cust0,173.230.16.5-173.230.16.30
{
+ "id": 337,
"subnet": "173.230.16.0/27",
"option-data": [
{
@@ -21051,6 +21394,7 @@
},
#dhcpd-snmp=ilcu307clk-ruckus,10.159.8.100-10.159.8.239
{
+ "id": 338,
"subnet": "10.159.8.0/24",
"option-data": [
{
@@ -21096,10 +21440,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 339,
"subnet": "96.63.194.145/32"
},
#dhcpd-snmp=ilcu307egre-cust0,173.230.12.197-173.230.12.222
{
+ "id": 340,
"subnet": "173.230.12.192/27",
"option-data": [
{
@@ -21148,6 +21494,7 @@
},
#dhcpd-snmp=ilcu307egre-ruckus,10.159.201.100-10.159.201.239
{
+ "id": 341,
"subnet": "10.159.201.0/24",
"option-data": [
{
@@ -21194,6 +21541,7 @@
# WANIP for ilcu307white not configured
#dhcpd-snmp=ilcu307white-cust0,173.230.21.133-173.230.21.158
{
+ "id": 342,
"subnet": "173.230.21.128/27",
"option-data": [
{
@@ -21260,6 +21608,7 @@
},
#dhcpd-snmp=ilcu307white-ruckus,10.159.127.100-10.159.127.239
{
+ "id": 343,
"subnet": "10.159.127.0/24",
"option-data": [
{
@@ -21323,10 +21672,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 344,
"subnet": "96.63.192.144/32"
},
#dhcpd-snmp=ilcu308earm-cust0,173.230.29.229-173.230.29.254
{
+ "id": 345,
"subnet": "173.230.29.224/27",
"option-data": [
{
@@ -21375,6 +21726,7 @@
},
#dhcpd-snmp=ilcu308earm-ruckus,10.159.180.100-10.159.180.239
{
+ "id": 346,
"subnet": "10.159.180.0/24",
"option-data": [
{
@@ -21419,10 +21771,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 347,
"subnet": "96.63.202.79/32"
},
#dhcpd-snmp=ilcu308whit-cust0,173.230.9.69-173.230.9.94
{
+ "id": 348,
"subnet": "173.230.9.64/27",
"option-data": [
{
@@ -21471,6 +21825,7 @@
},
#dhcpd-snmp=ilcu308whit-ruckus,10.159.231.100-10.159.231.239
{
+ "id": 349,
"subnet": "10.159.231.0/24",
"option-data": [
{
@@ -21517,6 +21872,7 @@
# WANIP for ilcu309cla not configured
#dhcpd-snmp=ilcu309cla-cust0,173.230.16.37-173.230.16.62
{
+ "id": 350,
"subnet": "173.230.16.32/27",
"option-data": [
{
@@ -21583,6 +21939,7 @@
},
#dhcpd-snmp=ilcu309cla-ruckus,10.159.227.100-10.159.227.239
{
+ "id": 351,
"subnet": "10.159.227.0/24",
"option-data": [
{
@@ -21629,6 +21986,7 @@
# WANIP for ilcu309egrn not configured
#dhcpd-snmp=ilcu309egrn-cust0,68.234.168.21-68.234.171.254
{
+ "id": 352,
"subnet": "68.234.168.0/22",
"option-data": [
{
@@ -21708,13 +22066,16 @@
]
},
{
+ "id": 353,
"subnet": "10.145.8.0/24"
},
{
+ "id": 354,
"subnet": "10.145.9.0/24"
},
#dhcpd-snmp=ilcu309egrn-ruckus,10.145.10.100-10.145.10.239
{
+ "id": 355,
"subnet": "10.145.10.0/24",
"option-data": [
{
@@ -21780,6 +22141,7 @@
# WANIP for ilcu309heal not configured
#dhcpd-snmp=ilcu309heal-cust0,173.230.21.197-173.230.21.254
{
+ "id": 356,
"subnet": "173.230.21.192/26",
"option-data": [
{
@@ -21846,6 +22208,7 @@
},
#dhcpd-snmp=ilcu309heal-ruckus,10.159.125.100-10.159.125.239
{
+ "id": 357,
"subnet": "10.159.125.0/24",
"option-data": [
{
@@ -21891,10 +22254,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 358,
"subnet": "96.63.192.16/32"
},
#dhcpd-snmp=ilcu309s1st-cust0,173.230.20.101-173.230.20.126
{
+ "id": 359,
"subnet": "173.230.20.96/27",
"option-data": [
{
@@ -21943,6 +22308,7 @@
},
#dhcpd-snmp=ilcu309s1st-ruckus,10.159.158.100-10.159.158.239
{
+ "id": 360,
"subnet": "10.159.158.0/24",
"option-data": [
{
@@ -21989,6 +22355,7 @@
# WANIP for ilcu309white not configured
#dhcpd-snmp=ilcu309white-cust0,173.230.23.37-173.230.23.62
{
+ "id": 361,
"subnet": "173.230.23.32/27",
"option-data": [
{
@@ -22047,6 +22414,7 @@
},
#dhcpd-snmp=ilcu309white-ruckus,10.159.155.100-10.159.155.239
{
+ "id": 362,
"subnet": "10.159.155.0/24",
"option-data": [
{
@@ -22092,10 +22460,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 363,
"subnet": "96.63.194.79/32"
},
#dhcpd-snmp=ilcu310clar-cust0,173.230.9.165-173.230.9.190
{
+ "id": 364,
"subnet": "173.230.9.160/27",
"option-data": [
{
@@ -22144,6 +22514,7 @@
},
#dhcpd-snmp=ilcu310clar-ruckus,10.159.226.100-10.159.226.239
{
+ "id": 365,
"subnet": "10.159.226.0/24",
"option-data": [
{
@@ -22188,10 +22559,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 366,
"subnet": "96.63.202.76/32"
},
#dhcpd-snmp=ilcu310whi-cust0,173.230.19.101-173.230.19.126
{
+ "id": 367,
"subnet": "173.230.19.96/27",
"option-data": [
{
@@ -22240,6 +22613,7 @@
},
#dhcpd-snmp=ilcu310whi-ruckus,10.159.229.100-10.159.229.239
{
+ "id": 368,
"subnet": "10.159.229.0/24",
"option-data": [
{
@@ -22284,10 +22658,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 369,
"subnet": "96.63.194.95/32"
},
#dhcpd-snmp=ilcu311white-cust0,173.230.15.229-173.230.15.254
{
+ "id": 370,
"subnet": "173.230.15.224/27",
"option-data": [
{
@@ -22336,6 +22712,7 @@
},
#dhcpd-snmp=ilcu311white-ruckus,10.159.172.100-10.159.172.239
{
+ "id": 371,
"subnet": "10.159.172.0/24",
"option-data": [
{
@@ -22380,10 +22757,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 372,
"subnet": "96.63.202.77/32"
},
#dhcpd-snmp=ilcu312whit-cust0,173.230.16.69-173.230.16.94
{
+ "id": 373,
"subnet": "173.230.16.64/27",
"option-data": [
{
@@ -22432,6 +22811,7 @@
},
#dhcpd-snmp=ilcu312whit-ruckus,10.159.228.100-10.159.228.239
{
+ "id": 374,
"subnet": "10.159.228.0/24",
"option-data": [
{
@@ -22478,6 +22858,7 @@
# WANIP for ilcu3rd not configured
#dhcpd-snmp=ilcu3rd-cust0,216.171.8.21-216.171.9.223
{
+ "id": 375,
"subnet": "216.171.8.0/23",
"option-data": [
{
@@ -22564,6 +22945,7 @@
},
#dhcp=snmp=ilcu3rd-cust2,66.253.193.2-66.253.193.254
{
+ "id": 376,
"subnet": "66.253.193.0/24",
"option-data": [
{
@@ -22630,6 +23012,7 @@
},
#dhcp=snmp=ilcu3rd-cust3,216.171.27.2-216.171.27.254
{
+ "id": 377,
"subnet": "216.171.27.0/24",
"option-data": [
{
@@ -22696,6 +23079,7 @@
},
#dhcpd-snmp=ilcu3rd-ruckus,10.151.10.100-10.151.10.239
{
+ "id": 378,
"subnet": "10.151.10.0/24",
"option-data": [
{
@@ -22741,10 +23125,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 379,
"subnet": "96.63.196.205/32"
},
#dhcpd-snmp=ilcu403grn-cust0,173.230.22.5-173.230.22.30
{
+ "id": 380,
"subnet": "173.230.22.0/27",
"option-data": [
{
@@ -22793,6 +23179,7 @@
},
#dhcpd-snmp=ilcu403grn-ruckus,10.159.128.100-10.159.128.239
{
+ "id": 381,
"subnet": "10.159.128.0/24",
"option-data": [
{
@@ -22837,10 +23224,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 382,
"subnet": "96.63.192.14/32"
},
#dhcpd-snmp=ilcu403whit-cust0,173.230.29.101-173.230.29.126
{
+ "id": 383,
"subnet": "173.230.29.96/27",
"option-data": [
{
@@ -22889,6 +23278,7 @@
},
#dhcpd-snmp=ilcu403whit-ruckus,10.159.176.100-10.159.176.239
{
+ "id": 384,
"subnet": "10.159.176.0/24",
"option-data": [
{
@@ -22935,6 +23325,7 @@
# WANIP for ilcu405whit not configured
#dhcpd-snmp=ilcu405whit-cust0,173.230.29.133-173.230.29.158
{
+ "id": 385,
"subnet": "173.230.29.128/27",
"option-data": [
{
@@ -23001,6 +23392,7 @@
},
#dhcpd-snmp=ilcu405whit-ruckus,10.159.177.100-10.159.177.239
{
+ "id": 386,
"subnet": "10.159.177.0/24",
"option-data": [
{
@@ -23048,6 +23440,7 @@
# WANIP for ilcu406grn not configured
#dhcpd-snmp=ilcu406grn-cust0,173.230.8.165-173.230.8.190
{
+ "id": 387,
"subnet": "173.230.8.160/27",
"option-data": [
{
@@ -23114,6 +23507,7 @@
},
#dhcpd-snmp=ilcu406grn-ruckus,10.159.118.100-10.159.118.239
{
+ "id": 388,
"subnet": "10.159.118.0/24",
"option-data": [
{
@@ -23159,10 +23553,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 389,
"subnet": "96.63.194.100/32"
},
#dhcpd-snmp=ilcu408grn-cust0,173.230.23.69-173.230.23.94
{
+ "id": 390,
"subnet": "173.230.23.64/27",
"option-data": [
{
@@ -23211,6 +23607,7 @@
},
#dhcpd-snmp=ilcu408grn-ruckus,10.159.156.100-10.159.156.239
{
+ "id": 391,
"subnet": "10.159.156.0/24",
"option-data": [
{
@@ -23257,6 +23654,7 @@
# WANIP for ilcu410grn not configured
#dhcpd-snmp=ilcu410grn-cust0,173.230.22.197-173.230.22.254
{
+ "id": 392,
"subnet": "173.230.22.192/26",
"option-data": [
{
@@ -23337,6 +23735,7 @@
},
#dhcpd-snmp=ilcu410grn-ruckus,10.159.126.100-10.159.126.239
{
+ "id": 393,
"subnet": "10.159.126.0/24",
"option-data": [
{
@@ -23383,6 +23782,7 @@
# WANIP for ilcu411heal not configured
#dhcpd-snmp=ilcu411heal-cust0,173.230.15.197-173.230.15.222
{
+ "id": 394,
"subnet": "173.230.15.192/27",
"option-data": [
{
@@ -23449,6 +23849,7 @@
},
#dhcpd-snmp=ilcu411heal-ruckus,10.159.182.100-10.159.182.239
{
+ "id": 395,
"subnet": "10.159.182.0/24",
"option-data": [
{
@@ -23512,10 +23913,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 396,
"subnet": "96.63.201.208/32"
},
#dhcpd-snmp=ilcu501heal-cust0,173.230.10.5-173.230.10.30
{
+ "id": 397,
"subnet": "173.230.10.0/27",
"option-data": [
{
@@ -23564,6 +23967,7 @@
},
#dhcpd-snmp=ilcu501heal-ruckus,10.159.198.100-10.159.198.239
{
+ "id": 398,
"subnet": "10.159.198.0/24",
"option-data": [
{
@@ -23608,10 +24012,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 399,
"subnet": "96.63.201.203/32"
},
#dhcpd-snmp=ilcu502heal-cust0,173.230.12.37-173.230.12.62
{
+ "id": 400,
"subnet": "173.230.12.32/27",
"option-data": [
{
@@ -23660,6 +24066,7 @@
},
#dhcpd-snmp=ilcu502heal-ruckus,10.159.193.100-10.159.193.239
{
+ "id": 401,
"subnet": "10.159.193.0/24",
"option-data": [
{
@@ -23704,10 +24111,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 402,
"subnet": "96.63.199.147/32"
},
#dhcpd-snmp=ilcu503whi-cust0,173.230.20.165-173.230.20.190
{
+ "id": 403,
"subnet": "173.230.20.160/27",
"option-data": [
{
@@ -23756,6 +24165,7 @@
},
#dhcpd-snmp=ilcu503whi-ruckus,10.159.151.100-10.159.151.239
{
+ "id": 404,
"subnet": "10.159.151.0/24",
"option-data": [
{
@@ -23802,6 +24212,7 @@
# WANIP for ilcu5054th not configured
#dhcpd-snmp=ilcu5054th-cust0,173.230.15.165-173.230.15.190
{
+ "id": 405,
"subnet": "173.230.15.160/27",
"option-data": [
{
@@ -23868,6 +24279,7 @@
},
#dhcpd-snmp=ilcu5054th-ruckus,10.159.183.100-10.159.183.239
{
+ "id": 406,
"subnet": "10.159.183.0/24",
"option-data": [
{
@@ -23915,6 +24327,7 @@
# WANIP for ilcu505buse not configured
#dhcpd-snmp=ilcu505buse-cust0,173.230.12.101-173.230.12.126
{
+ "id": 407,
"subnet": "173.230.12.96/27",
"option-data": [
{
@@ -23981,6 +24394,7 @@
},
#dhcpd-snmp=ilcu505buse-ruckus,10.159.203.100-10.159.203.239
{
+ "id": 408,
"subnet": "10.159.203.0/24",
"option-data": [
{
@@ -24017,6 +24431,7 @@
]
},
{
+ "id": 409,
"subnet": "96.63.204.76/32"
}
]
@@ -24029,10 +24444,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 410,
"subnet": "96.63.201.204/32"
},
#dhcpd-snmp=ilcu505heal-cust0,173.230.12.69-173.230.12.94
{
+ "id": 411,
"subnet": "173.230.12.64/27",
"option-data": [
{
@@ -24081,6 +24498,7 @@
},
#dhcpd-snmp=ilcu505heal-ruckus,10.159.194.100-10.159.194.239
{
+ "id": 412,
"subnet": "10.159.194.0/24",
"option-data": [
{
@@ -24127,6 +24545,7 @@
# WANIP for ilcu505whi not configured
#dhcpd-snmp=ilcu505whi-cust0,173.230.20.133-173.230.20.158
{
+ "id": 413,
"subnet": "173.230.20.128/27",
"option-data": [
{
@@ -24193,6 +24612,7 @@
},
#dhcpd-snmp=ilcu505whi-ruckus,10.159.150.100-10.159.150.239
{
+ "id": 414,
"subnet": "10.159.150.0/24",
"option-data": [
{
@@ -24238,10 +24658,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 415,
"subnet": "96.63.199.140/32"
},
#dhcpd-snmp=ilcu506st-cust0,173.230.19.37-173.230.19.62
{
+ "id": 416,
"subnet": "173.230.19.32/27",
"option-data": [
{
@@ -24290,6 +24712,7 @@
},
#dhcpd-snmp=ilcu506st-ruckus,10.159.144.100-10.159.144.239
{
+ "id": 417,
"subnet": "10.159.144.0/24",
"option-data": [
{
@@ -24336,6 +24759,7 @@
# WANIP for ilcu507wchu not configured
#dhcpd-snmp=ilcu507wchu-cust0,96.63.203.165-96.63.203.190
{
+ "id": 418,
"subnet": "96.63.203.160/27",
"option-data": [
{
@@ -24402,6 +24826,7 @@
},
#dhcpd-snmp=ilcu507wchu-ruckus,10.159.3.100-10.159.3.239
{
+ "id": 419,
"subnet": "10.159.3.0/24",
"option-data": [
{
@@ -24449,6 +24874,7 @@
# WANIP for ilcu508clrk not configured
#dhcpd-snmp=ilcu508clrk-cust0,173.230.13.229-173.230.13.254
{
+ "id": 420,
"subnet": "173.230.13.224/27",
"option-data": [
{
@@ -24515,6 +24941,7 @@
},
#dhcpd-snmp=ilcu508clrk-ruckus,10.159.22.100-10.159.22.239
{
+ "id": 421,
"subnet": "10.159.22.0/24",
"option-data": [
{
@@ -24562,6 +24989,7 @@
# WANIP for ilcu508ew not configured
#dhcpd-snmp=ilcu508ew-cust0,66.253.172.5-66.253.172.30
{
+ "id": 422,
"subnet": "66.253.172.0/27",
"option-data": [
{
@@ -24628,6 +25056,7 @@
},
#dhcpd-snmp=ilcu508ew-ruckus,10.159.242.100-10.159.242.239
{
+ "id": 423,
"subnet": "10.159.242.0/24",
"option-data": [
{
@@ -24675,6 +25104,7 @@
# WANIP for ilcu508heal not configured
#dhcpd-snmp=ilcu508heal-cust0,216.171.3.165-216.171.3.190
{
+ "id": 424,
"subnet": "216.171.3.160/27",
"option-data": [
{
@@ -24741,6 +25171,7 @@
},
#dhcpd-snmp=ilcu508heal-ruckus,10.159.192.100-10.159.192.239
{
+ "id": 425,
"subnet": "10.159.192.0/24",
"option-data": [
{
@@ -24806,6 +25237,7 @@
# WANIP for ilcu508sfir not configured
#dhcpd-snmp=ilcu508sfir-cust0,173.230.23.197-173.230.23.222
{
+ "id": 426,
"subnet": "173.230.23.192/27",
"option-data": [
{
@@ -24872,6 +25304,7 @@
},
#dhcpd-snmp=ilcu508sfir-ruckus,10.159.110.100-10.159.110.239
{
+ "id": 427,
"subnet": "10.159.110.0/24",
"option-data": [
{
@@ -24917,10 +25350,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 428,
"subnet": "96.63.201.206/32"
},
#dhcpd-snmp=ilcu5095th-cust0,173.230.10.69-173.230.10.94
{
+ "id": 429,
"subnet": "173.230.10.64/27",
"option-data": [
{
@@ -24969,6 +25404,7 @@
},
#dhcpd-snmp=ilcu5095th-ruckus,10.159.196.100-10.159.196.239
{
+ "id": 430,
"subnet": "10.159.196.0/24",
"option-data": [
{
@@ -25013,10 +25449,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 431,
"subnet": "96.63.201.13/32"
},
#dhcpd-snmp=ilcu509bash-cust0,173.230.10.197-173.230.10.222
{
+ "id": 432,
"subnet": "173.230.10.192/27",
"option-data": [
{
@@ -25065,6 +25503,7 @@
},
#dhcpd-snmp=ilcu509bash-ruckus,10.159.216.100-10.159.216.239
{
+ "id": 433,
"subnet": "10.159.216.0/24",
"option-data": [
{
@@ -25109,10 +25548,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 434,
"subnet": "96.63.196.18/32"
},
#dhcpd-snmp=ilcu509clk-cust0,173.230.27.197-173.230.27.222
{
+ "id": 435,
"subnet": "173.230.27.192/27",
"option-data": [
{
@@ -25161,6 +25602,7 @@
},
#dhcpd-snmp=ilcu509clk-ruckus,10.159.167.100-10.159.167.239
{
+ "id": 436,
"subnet": "10.159.167.0/24",
"option-data": [
{
@@ -25205,10 +25647,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 437,
"subnet": "96.63.196.14/32"
},
#dhcpd-snmp=ilcu509stou-cust0,173.230.16.101-173.230.16.126
{
+ "id": 438,
"subnet": "173.230.16.96/27",
"option-data": [
{
@@ -25257,6 +25701,7 @@
},
#dhcpd-snmp=ilcu509stou-ruckus,10.159.5.100-10.159.5.239
{
+ "id": 439,
"subnet": "10.159.5.0/24",
"option-data": [
{
@@ -25301,10 +25746,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 440,
"subnet": "96.63.204.207/32"
},
#dhcpd-snmp=ilcu509whi-cust0,173.230.24.5-173.230.24.30
{
+ "id": 441,
"subnet": "173.230.24.0/27",
"option-data": [
{
@@ -25353,6 +25800,7 @@
},
#dhcpd-snmp=ilcu509whi-ruckus,10.159.117.100-10.159.117.239
{
+ "id": 442,
"subnet": "10.159.117.0/24",
"option-data": [
{
@@ -25397,10 +25845,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 443,
"subnet": "96.63.199.145/32"
},
#dhcpd-snmp=ilcu510clrk-cust0,173.230.15.133-173.230.15.158
{
+ "id": 444,
"subnet": "173.230.15.128/27",
"option-data": [
{
@@ -25449,6 +25899,7 @@
},
#dhcpd-snmp=ilcu510clrk-ruckus,10.159.184.100-10.159.184.239
{
+ "id": 445,
"subnet": "10.159.184.0/24",
"option-data": [
{
@@ -25493,10 +25944,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 446,
"subnet": "96.63.199.143/32"
},
#dhcpd-snmp=ilcu510esto-cust0,173.230.19.133-173.230.19.158
{
+ "id": 447,
"subnet": "173.230.19.128/27",
"option-data": [
{
@@ -25545,6 +25998,7 @@
},
#dhcpd-snmp=ilcu510esto-ruckus,10.159.147.100-10.159.147.239
{
+ "id": 448,
"subnet": "10.159.147.0/24",
"option-data": [
{
@@ -25591,6 +26045,7 @@
# WANIP for ilcu511wchu not configured
#dhcpd-snmp=ilcu511wchu-cust0,96.63.200.165-96.63.200.190
{
+ "id": 449,
"subnet": "96.63.200.160/27",
"option-data": [
{
@@ -25657,6 +26112,7 @@
},
#dhcpd-snmp=ilcu511wchu-ruckus,10.159.7.100-10.159.7.239
{
+ "id": 450,
"subnet": "10.159.7.0/24",
"option-data": [
{
@@ -25704,6 +26160,7 @@
# WANIP for ilcu512sto not configured
#dhcpd-snmp=ilcu512sto-cust0,173.230.18.133-173.230.18.158
{
+ "id": 451,
"subnet": "173.230.18.128/27",
"option-data": [
{
@@ -25770,6 +26227,7 @@
},
#dhcpd-snmp=ilcu512sto-ruckus,10.159.152.100-10.159.152.239
{
+ "id": 452,
"subnet": "10.159.152.0/24",
"option-data": [
{
@@ -25817,6 +26275,7 @@
# WANIP for ilcu52g not configured
#dhcpd-snmp=ilcu52g-cust0,173.230.12.229-173.230.12.254
{
+ "id": 453,
"subnet": "173.230.12.224/27",
"option-data": [
{
@@ -25883,6 +26342,7 @@
},
#dhcpd-snmp=ilcu52g-ruckus,10.159.200.100-10.159.200.239
{
+ "id": 454,
"subnet": "10.159.200.0/24",
"option-data": [
{
@@ -25930,6 +26390,7 @@
# WANIP for ilcu55heal not configured
#dhcpd-snmp=ilcu55heal-cust0,173.230.24.133-173.230.24.190
{
+ "id": 455,
"subnet": "173.230.24.128/26",
"option-data": [
{
@@ -25996,6 +26457,7 @@
},
#dhcpd-snmp=ilcu55heal-ruckus,10.159.109.100-10.159.109.239
{
+ "id": 456,
"subnet": "10.159.109.0/24",
"option-data": [
{
@@ -26041,10 +26503,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 457,
"subnet": "96.63.194.77/32"
},
#dhcpd-snmp=ilcu565egre-cust0,173.230.24.37-173.230.24.62
{
+ "id": 458,
"subnet": "173.230.24.32/27",
"option-data": [
{
@@ -26093,6 +26557,7 @@
},
#dhcpd-snmp=ilcu565egre-ruckus,10.159.223.100-10.159.223.239
{
+ "id": 459,
"subnet": "10.159.223.0/24",
"option-data": [
{
@@ -26137,10 +26602,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 460,
"subnet": "96.63.192.210/32"
},
#dhcpd-snmp=ilcu585gre-cust0,173.230.29.37-173.230.29.62
{
+ "id": 461,
"subnet": "173.230.29.32/27",
"option-data": [
{
@@ -26189,6 +26656,7 @@
},
#dhcpd-snmp=ilcu585gre-ruckus,10.159.174.100-10.159.174.239
{
+ "id": 462,
"subnet": "10.159.174.0/24",
"option-data": [
{
@@ -26235,6 +26703,7 @@
# WANIP for ilcu58earm not configured
#dhcpd-snmp=ilcu58earm-cust0,96.63.200.133-96.63.200.158
{
+ "id": 463,
"subnet": "96.63.200.128/27",
"option-data": [
{
@@ -26301,6 +26770,7 @@
},
#dhcpd-snmp=ilcu58earm-cust1,173.230.8.3-173.230.8.30
{
+ "id": 464,
"subnet": "173.230.8.0/27",
"option-data": [
{
@@ -26367,6 +26837,7 @@
},
#dhcpd-snmp=ilcu58earm-ruckus,10.159.12.100-10.159.12.239
{
+ "id": 465,
"subnet": "10.159.12.0/24",
"option-data": [
{
@@ -26412,10 +26883,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 466,
"subnet": "96.63.192.209/32"
},
#dhcpd-snmp=ilcu58gre-cust0,173.230.29.5-173.230.29.30
{
+ "id": 467,
"subnet": "173.230.29.0/27",
"option-data": [
{
@@ -26464,6 +26937,7 @@
},
#dhcpd-snmp=ilcu58gre-ruckus,10.159.173.100-10.159.173.239
{
+ "id": 468,
"subnet": "10.159.173.0/24",
"option-data": [
{
@@ -26508,10 +26982,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 469,
"subnet": "96.63.194.142/32"
},
#dhcpd-snmp=ilcu58john-cust0,173.230.25.5-173.230.25.62
{
+ "id": 470,
"subnet": "173.230.25.0/26",
"option-data": [
{
@@ -26560,6 +27036,7 @@
},
#dhcpd-snmp=ilcu58john-ruckus,10.159.107.100-10.159.107.239
{
+ "id": 471,
"subnet": "10.159.107.0/24",
"option-data": [
{
@@ -26606,6 +27083,7 @@
# WANIP for ilcu5st not configured
#dhcpd-snmp=ilcu5st-cust0,173.230.19.69-173.230.19.94
{
+ "id": 472,
"subnet": "173.230.19.64/27",
"option-data": [
{
@@ -26672,6 +27150,7 @@
},
#dhcpd-snmp=ilcu5st-ruckus,10.159.145.100-10.159.145.239
{
+ "id": 473,
"subnet": "10.159.145.0/24",
"option-data": [
{
@@ -26719,6 +27198,7 @@
# WANIP for ilcu601clark not configured
#dhcpd-snmp=ilcu601clark-cust0,173.230.10.165-173.230.10.190
{
+ "id": 474,
"subnet": "173.230.10.160/27",
"option-data": [
{
@@ -26785,6 +27265,7 @@
},
#dhcpd-snmp=ilcu601clark-ruckus,10.159.218.100-10.159.218.239
{
+ "id": 475,
"subnet": "10.159.218.0/24",
"option-data": [
{
@@ -26850,6 +27331,7 @@
# WANIP for ilcu602s not configured
#dhcpd-snmp=ilcu602s-cust0,66.253.172.37-66.253.172.62
{
+ "id": 476,
"subnet": "66.253.172.32/27",
"option-data": [
{
@@ -26916,6 +27398,7 @@
},
#dhcpd-snmp=ilcu602s-ruckus,10.159.241.100-10.159.241.239
{
+ "id": 477,
"subnet": "10.159.241.0/24",
"option-data": [
{
@@ -26961,10 +27444,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 478,
"subnet": "96.63.204.209/32"
},
#dhcpd-snmp=ilcu603eclark-cust0,173.230.10.133-173.230.10.158
{
+ "id": 479,
"subnet": "173.230.10.128/27",
"option-data": [
{
@@ -27013,6 +27498,7 @@
},
#dhcpd-snmp=ilcu603eclark-ruckus,10.159.219.100-10.159.219.239
{
+ "id": 480,
"subnet": "10.159.219.0/24",
"option-data": [
{
@@ -27059,6 +27545,7 @@
# WANIP for ilcu604whi not configured
#dhcpd-snmp=ilcu604whi-cust0,173.230.10.101-173.230.10.126
{
+ "id": 481,
"subnet": "173.230.10.96/27",
"option-data": [
{
@@ -27125,6 +27612,7 @@
},
#dhcpd-snmp=ilcu604whi-ruckus,10.159.220.100-10.159.220.239
{
+ "id": 482,
"subnet": "10.159.220.0/24",
"option-data": [
{
@@ -27172,6 +27660,7 @@
# WANIP for ilcu604wsto not configured
#dhcpd-snmp=ilcu604wsto-cust0,173.230.13.5-173.230.13.14
{
+ "id": 483,
"subnet": "173.230.13.0/28",
"option-data": [
{
@@ -27238,6 +27727,7 @@
},
#dhcpd-snmp=ilcu604wsto-ruckus,10.159.161.100-10.159.161.239
{
+ "id": 484,
"subnet": "10.159.161.0/24",
"option-data": [
{
@@ -27283,10 +27773,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 485,
"subnet": "96.63.201.207/32"
},
#dhcpd-snmp=ilcu605fifth-cust0,173.230.12.165-173.230.12.190
{
+ "id": 486,
"subnet": "173.230.12.160/27",
"option-data": [
{
@@ -27335,6 +27827,7 @@
},
#dhcpd-snmp=ilcu605fifth-ruckus,10.159.197.100-10.159.197.239
{
+ "id": 487,
"subnet": "10.159.197.0/24",
"option-data": [
{
@@ -27379,10 +27872,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 488,
"subnet": "96.63.194.96/32"
},
#dhcpd-snmp=ilcu605sfir-cust0,173.230.24.69-173.230.24.94
{
+ "id": 489,
"subnet": "173.230.24.64/27",
"option-data": [
{
@@ -27431,6 +27926,7 @@
},
#dhcpd-snmp=ilcu605sfir-ruckus,10.159.160.100-10.159.160.239
{
+ "id": 490,
"subnet": "10.159.160.0/24",
"option-data": [
{
@@ -27475,10 +27971,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 491,
"subnet": "96.63.194.98/32"
},
#dhcpd-snmp=ilcu607s1-cust0,173.230.24.197-173.230.24.222
{
+ "id": 492,
"subnet": "173.230.24.192/27",
"option-data": [
{
@@ -27527,6 +28025,7 @@
},
#dhcpd-snmp=ilcu607s1-ruckus,10.159.149.100-10.159.149.239
{
+ "id": 493,
"subnet": "10.159.149.0/24",
"option-data": [
{
@@ -27571,10 +28070,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 494,
"subnet": "96.63.194.144/32"
},
#dhcpd-snmp=ilcu608stat-cust0,173.230.24.229-173.230.24.254
{
+ "id": 495,
"subnet": "173.230.24.224/27",
"option-data": [
{
@@ -27623,6 +28124,7 @@
},
#dhcpd-snmp=ilcu608stat-ruckus,10.159.153.100-10.159.153.239
{
+ "id": 496,
"subnet": "10.159.153.0/24",
"option-data": [
{
@@ -27669,6 +28171,7 @@
# WANIP for ilcu609wmai not configured
#dhcpd-snmp=ilcu609wmai-cust0,173.230.25.197-173.230.25.222
{
+ "id": 497,
"subnet": "173.230.25.192/27",
"option-data": [
{
@@ -27735,6 +28238,7 @@
},
#dhcpd-snmp=ilcu609wmai-ruckus,10.159.130.100-10.159.130.239
{
+ "id": 498,
"subnet": "10.159.130.0/24",
"option-data": [
{
@@ -27780,10 +28284,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 499,
"subnet": "96.63.196.190/32"
},
#dhcpd-snmp=ilcu621grn-cust0,173.230.26.133-173.230.26.190
{
+ "id": 500,
"subnet": "173.230.26.128/26",
"option-data": [
{
@@ -27832,6 +28338,7 @@
},
#dhcpd-snmp=ilcu621grn-ruckus,10.159.124.100-10.159.124.239
{
+ "id": 501,
"subnet": "10.159.124.0/24",
"option-data": [
{
@@ -27876,10 +28383,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 502,
"subnet": "96.63.204.78/32"
},
#dhcpd-snmp=ilcu701wel-cust0,173.230.9.37-173.230.9.62
{
+ "id": 503,
"subnet": "173.230.9.32/27",
"option-data": [
{
@@ -27928,6 +28437,7 @@
},
#dhcpd-snmp=ilcu701wel-ruckus,10.159.205.100-10.159.205.239
{
+ "id": 504,
"subnet": "10.159.205.0/24",
"option-data": [
{
@@ -27974,6 +28484,7 @@
# WANIP for ilcu705wel not configured
#dhcpd-snmp=ilcu705wel-cust0,173.230.12.5-173.230.12.30
{
+ "id": 505,
"subnet": "173.230.12.0/27",
"option-data": [
{
@@ -28040,6 +28551,7 @@
},
#dhcpd-snmp=ilcu705wel-ruckus,10.159.206.100-10.159.206.239
{
+ "id": 506,
"subnet": "10.159.206.0/24",
"option-data": [
{
@@ -28087,6 +28599,7 @@
# WANIP for ilcu706sfir not configured
#dhcpd-snmp=ilcu706sfir-cust0,173.230.26.197-173.230.26.222
{
+ "id": 507,
"subnet": "173.230.26.192/27",
"option-data": [
{
@@ -28153,6 +28666,7 @@
},
#dhcpd-snmp=ilcu706sfir-ruckus,10.159.114.100-10.159.114.239
{
+ "id": 508,
"subnet": "10.159.114.0/24",
"option-data": [
{
@@ -28198,10 +28712,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 509,
"subnet": "66.253.150.115/32"
},
#dhcpd-snmp=ilcu711elm-cust0,173.230.11.197-173.230.11.222
{
+ "id": 510,
"subnet": "173.230.11.192/27",
"option-data": [
{
@@ -28250,6 +28766,7 @@
},
#dhcpd-snmp=ilcu711elm-ruckus,10.159.208.100-10.159.208.239
{
+ "id": 511,
"subnet": "10.159.208.0/24",
"option-data": [
{
@@ -28294,10 +28811,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 512,
"subnet": "96.63.194.140/32"
},
#dhcpd-snmp=ilcu713ran-cust0,173.230.27.69-173.230.27.126
{
+ "id": 513,
"subnet": "173.230.27.64/26",
"option-data": [
{
@@ -28346,6 +28865,7 @@
},
#dhcpd-snmp=ilcu713ran-ruckus,10.159.105.100-10.159.105.239
{
+ "id": 514,
"subnet": "10.159.105.0/24",
"option-data": [
{
@@ -28390,10 +28910,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 515,
"subnet": "96.63.196.210/32"
},
#dhcpd-snmp=ilcu713s6-cust0,173.230.27.229-173.230.27.254
{
+ "id": 516,
"subnet": "173.230.27.224/27",
"option-data": [
{
@@ -28442,6 +28964,7 @@
},
#dhcpd-snmp=ilcu713s6-ruckus,10.159.168.100-10.159.168.239
{
+ "id": 517,
"subnet": "10.159.168.0/24",
"option-data": [
{
@@ -28486,10 +29009,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 518,
"subnet": "96.63.192.81/32"
},
#dhcpd-snmp=ilcu802wgre-cust0,173.230.28.5-173.230.28.30
{
+ "id": 519,
"subnet": "173.230.28.0/27",
"option-data": [
{
@@ -28538,6 +29063,7 @@
},
#dhcpd-snmp=ilcu802wgre-ruckus,10.159.169.100-10.159.169.239
{
+ "id": 520,
"subnet": "10.159.169.0/24",
"option-data": [
{
@@ -28582,10 +29108,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 521,
"subnet": "96.63.194.83/32"
},
#dhcpd-snmp=ilcu8054th-cust0,173.230.27.133-173.230.27.190
{
+ "id": 522,
"subnet": "173.230.27.128/26",
"option-data": [
{
@@ -28634,6 +29162,7 @@
},
#dhcpd-snmp=ilcu8054th-ruckus,10.159.111.100-10.159.111.239
{
+ "id": 523,
"subnet": "10.159.111.0/24",
"option-data": [
{
@@ -28678,10 +29207,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 524,
"subnet": "96.63.192.82/32"
},
#dhcpd-snmp=ilcu807ill-cust0,173.230.28.37-173.230.28.62
{
+ "id": 525,
"subnet": "173.230.28.32/27",
"option-data": [
{
@@ -28730,6 +29261,7 @@
},
#dhcpd-snmp=ilcu807ill-ruckus,10.159.170.100-10.159.170.239
{
+ "id": 526,
"subnet": "10.159.170.0/24",
"option-data": [
{
@@ -28774,10 +29306,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 527,
"subnet": "96.63.192.204/32"
},
#dhcpd-snmp=ilcu905locust-cust0,173.230.28.69-173.230.28.126
{
+ "id": 528,
"subnet": "173.230.28.64/26",
"option-data": [
{
@@ -28826,6 +29360,7 @@
},
#dhcpd-snmp=ilcu905locust-ruckus,10.159.101.100-10.159.101.239
{
+ "id": 529,
"subnet": "10.159.101.0/24",
"option-data": [
{
@@ -28870,10 +29405,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 530,
"subnet": "66.253.150.117/32"
},
#dhcpd-snmp=ilcu907wsto-cust0,173.230.11.37-173.230.11.62
{
+ "id": 531,
"subnet": "173.230.11.32/27",
"option-data": [
{
@@ -28922,6 +29459,7 @@
},
#dhcpd-snmp=ilcu907wsto-ruckus,10.159.213.100-10.159.213.239
{
+ "id": 532,
"subnet": "10.159.213.0/24",
"option-data": [
{
@@ -28968,6 +29506,7 @@
# WANIP for ilcub310 not configured
#dhcpd-snmp=ilcub310-cust0,50.30.140.21-50.30.143.254
{
+ "id": 533,
"subnet": "50.30.140.0/22",
"option-data": [
{
@@ -29041,9 +29580,11 @@
]
},
{
+ "id": 534,
"subnet": "10.144.116.0/24"
},
{
+ "id": 535,
"subnet": "10.144.117.0/24",
"option-data": [
{
@@ -32209,6 +32750,7 @@
# include "/etc/dhcp3/dhcp_hosts/ilcub310_subnet01.hosts";
#dhcpd-snmp=ilcub310-ruckus,10.144.118.100-10.144.118.239
{
+ "id": 536,
"subnet": "10.144.118.0/24",
"option-data": [
{
@@ -32620,6 +33162,7 @@
# WANIP for ilcudg not configured
#dhcpd-snmp=ilcudg-cust0,96.63.207.149-96.63.207.254
{
+ "id": 538,
"subnet": "96.63.207.128/25",
"option-data": [
{
@@ -32669,6 +33212,7 @@
},
#dhcpd-snmp=ilcudg-ruckus,10.159.237.100-10.159.237.239
{
+ "id": 539,
"subnet": "10.159.237.0/24",
"option-data": [
{
@@ -32714,10 +33258,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 542,
"subnet": "96.63.204.205/32"
},
#dhcpd-snmp=ilcugrg-cust0,216.171.6.21-216.171.6.254
{
+ "id": 543,
"subnet": "216.171.6.0/24",
"option-data": [
{
@@ -32765,13 +33311,16 @@
]
},
{
+ "id": 544,
"subnet": "10.151.88.0/24"
},
{
+ "id": 545,
"subnet": "10.151.89.0/24"
},
#dhcpd-snmp=ilcugrg-ruckus,10.151.90.100-10.151.90.239
{
+ "id": 546,
"subnet": "10.151.90.0/24",
"option-data": [
{
@@ -32818,6 +33367,7 @@
# WANIP for ilcuito not configured
#dhcpd-snmp=ilcuito-cust0,216.171.20.21-216.171.23.254
{
+ "id": 547,
"subnet": "216.171.20.0/22",
"option-data": [
{
@@ -32874,6 +33424,7 @@
},
#dhcpd-snmp=ilcuito-cust1,216.171.28.3-216.171.29.254
{
+ "id": 548,
"subnet": "216.171.28.0/23",
"option-data": [
{
@@ -32921,13 +33472,16 @@
]
},
{
+ "id": 549,
"subnet": "10.151.32.0/24"
},
{
+ "id": 550,
"subnet": "10.151.33.0/24"
},
#dhcpd-snmp=ilcuito-ruckus,10.151.34.100-10.151.34.239
{
+ "id": 551,
"subnet": "10.151.34.0/24",
"option-data": [
{
@@ -32973,6 +33527,7 @@
# WANIP for ilcul54 not configured
#dhcpd-snmp=ilcul54-cust0,68.180.36.21-68.180.36.254
{
+ "id": 552,
"subnet": "68.180.36.0/24",
"option-data": [
{
@@ -33046,13 +33601,16 @@
]
},
{
+ "id": 553,
"subnet": "10.152.32.0/24"
},
{
+ "id": 554,
"subnet": "10.152.33.0/24"
},
#dhcpd-snmp=ilcul54-ruckus,10.152.34.100-10.152.34.239
{
+ "id": 555,
"subnet": "10.152.34.0/24",
"option-data": [
{
@@ -33118,6 +33676,7 @@
# WANIP for ilcun3c not configured
#dhcpd-snmp=ilcun3c-cust0,66.253.183.69-66.253.183.94
{
+ "id": 556,
"subnet": "66.253.183.64/27",
"option-data": [
{
@@ -33165,13 +33724,16 @@
]
},
{
+ "id": 557,
"subnet": "10.151.60.0/24"
},
{
+ "id": 558,
"subnet": "10.151.61.0/24"
},
#dhcpd-snmp=ilcun3c-ruckus,10.151.62.100-10.151.62.239
{
+ "id": 559,
"subnet": "10.151.62.0/24",
"option-data": [
{
@@ -33218,6 +33780,7 @@
# WANIP for ilcunoc not configured
#dhcpd-snmp=ilcunoc-cust0,66.253.181.37-66.253.181.62
{
+ "id": 560,
"subnet": "66.253.181.32/27",
"option-data": [
{
@@ -33284,6 +33847,7 @@
},
#dhcpd-snmp=ilcunoc-cust1,66.253.181.131-66.253.181.190
{
+ "id": 561,
"subnet": "66.253.181.128/26",
"option-data": [
{
@@ -33350,6 +33914,7 @@
},
#dhcpd-snmp=ilcunoc-ruckus,10.151.98.100-10.151.98.239
{
+ "id": 562,
"subnet": "10.151.98.0/24",
"option-data": [
{
@@ -33411,6 +33976,7 @@
# WANIP for ilcupre not configured
#dhcpd-snmp=ilcupre-cust0,66.253.228.21-66.253.229.254
{
+ "id": 563,
"subnet": "66.253.228.0/23",
"option-data": [
{
@@ -34116,13 +34682,16 @@
},
# include "/etc/dhcp3/dhcp_hosts/ilcupre.hosts";
{
+ "id": 564,
"subnet": "10.144.136.0/24"
},
{
+ "id": 565,
"subnet": "10.144.137.0/24"
},
#dhcpd-snmp=ilcupre-ruckus,10.144.138.100-10.144.138.239
{
+ "id": 566,
"subnet": "10.144.138.0/24",
"option-data": [
{
@@ -34168,10 +34737,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 567,
"subnet": "96.63.197.12/32"
},
#dhcpd-snmp=ilcusredelmar-cust0,173.230.8.146-173.230.8.150
{
+ "id": 568,
"subnet": "173.230.8.144/29",
"option-data": [
{
@@ -34230,6 +34801,7 @@
# WANIP for ilcuzas not configured
#dhcpd-snmp=ilcuzas-cust0,66.253.172.165-66.253.172.190
{
+ "id": 569,
"subnet": "66.253.172.160/27",
"option-data": [
{
@@ -34296,6 +34868,7 @@
},
#dhcpd-snmp=ilcuzas-ruckus,10.159.25.100-10.159.25.239
{
+ "id": 570,
"subnet": "10.159.25.0/24",
"option-data": [
{
@@ -34343,6 +34916,7 @@
# WANIP for iledenc not configured
#dhcpd-snmp=iledenc-cust0,68.234.160.21-68.234.161.254
{
+ "id": 571,
"subnet": "68.234.160.0/23",
"option-data": [
{
@@ -34399,6 +34973,7 @@
},
#dhcpd-snmp=iledenc-cust1,68.234.180.3-68.234.180.254
{
+ "id": 572,
"subnet": "68.234.180.0/24",
"option-data": [
{
@@ -34447,13 +35022,16 @@
]
},
{
+ "id": 573,
"subnet": "10.151.112.0/24"
},
{
+ "id": 574,
"subnet": "10.151.113.0/24"
},
#dhcpd-snmp=iledenc-ruckus,10.151.114.100-10.151.114.239
{
+ "id": 575,
"subnet": "10.151.114.0/24",
"option-data": [
{
@@ -34500,6 +35078,7 @@
# WANIP for iledenw not configured
#dhcpd-snmp=iledenw-cust0,68.234.240.21-68.234.243.223
{
+ "id": 576,
"subnet": "68.234.240.0/22",
"option-data": [
{
@@ -34566,6 +35145,7 @@
},
#dhcpd-snmp=iledenw-cust1,10.180.120.3-10.180.121.254
{
+ "id": 577,
"subnet": "10.180.120.0/23",
"option-data": [
{
@@ -34631,13 +35211,16 @@
]
},
{
+ "id": 578,
"subnet": "10.151.116.0/24"
},
{
+ "id": 579,
"subnet": "10.151.117.0/24"
},
#dhcpd-snmp=iledenw-ruckus,10.151.118.100-10.151.118.239
{
+ "id": 580,
"subnet": "10.151.118.0/24",
"option-data": [
{
@@ -34703,6 +35286,7 @@
# WANIP for ilnojun not configured
#dhcpd-snmp=ilnojun-cust0,216.171.40.21-216.171.43.254
{
+ "id": 581,
"subnet": "216.171.40.0/22",
"option-data": [
{
@@ -34768,13 +35352,16 @@
]
},
{
+ "id": 582,
"subnet": "10.151.92.0/24"
},
{
+ "id": 583,
"subnet": "10.151.93.0/24"
},
#dhcpd-snmp=ilnojun-ruckus,10.151.94.100-10.151.94.239
{
+ "id": 584,
"subnet": "10.151.94.0/24",
"option-data": [
{
@@ -34819,10 +35406,12 @@
"name": "ilur106scol",
"subnet4": [
{
+ "id": 585,
"subnet": "96.63.192.88/32"
},
#dhcpd-snmp=ilur106scol-cust0,173.230.112.133-173.230.112.190
{
+ "id": 586,
"subnet": "173.230.112.128/26",
"option-data": [
{
@@ -34889,6 +35478,7 @@
},
#dhcpd-snmp=ilur106scol-ruckus,10.159.100.100-10.159.100.239
{
+ "id": 587,
"subnet": "10.159.100.0/24",
"option-data": [
{
@@ -34954,6 +35544,7 @@
# WANIP for ilur701greg not configured
#dhcpd-snmp=ilur701greg-cust0,216.171.7.21-216.171.7.254
{
+ "id": 588,
"subnet": "216.171.7.0/24",
"option-data": [
{
@@ -35020,6 +35611,7 @@
},
#dhcpd-snmp=ilur701greg-ruckus,10.159.215.100-10.159.215.239
{
+ "id": 589,
"subnet": "10.159.215.0/24",
"option-data": [
{
@@ -35067,6 +35659,7 @@
# WANIP for ilur805wg not configured
#dhcpd-snmp=ilur805wg-cust0,173.230.12.133-173.230.12.158
{
+ "id": 590,
"subnet": "173.230.12.128/27",
"option-data": [
{
@@ -35133,6 +35726,7 @@
},
#dhcpd-snmp=ilur805wg-ruckus,10.159.202.100-10.159.202.239
{
+ "id": 591,
"subnet": "10.159.202.0/24",
"option-data": [
{
@@ -35179,6 +35773,7 @@
# WANIP for ilurcco not configured
#dhcpd-snmp=ilurcco-cust0,216.171.16.21-216.171.19.254
{
+ "id": 592,
"subnet": "216.171.16.0/22",
"option-data": [
{
@@ -35264,13 +35859,16 @@
]
},
{
+ "id": 593,
"subnet": "10.151.64.0/24"
},
{
+ "id": 594,
"subnet": "10.151.65.0/24"
},
#dhcpd-snmp=ilurcco-ruckus,10.151.66.100-10.151.66.239
{
+ "id": 595,
"subnet": "10.151.66.0/24",
"option-data": [
{
@@ -35317,6 +35915,7 @@
# WANIP for ilurmt6 not configured
#dhcpd-snmp=ilurmt6-cust0,96.63.203.197-96.63.203.254
{
+ "id": 596,
"subnet": "96.63.203.192/26",
"option-data": [
{
@@ -35383,6 +35982,7 @@
},
#dhcpd-snmp=ilurmt6-ruckus,10.159.190.100-10.159.190.239
{
+ "id": 597,
"subnet": "10.159.190.0/24",
"option-data": [
{
@@ -35430,6 +36030,7 @@
# WANIP for ilurpui not configured
#dhcpd-snmp=ilurpui-cust0,216.171.10.21-216.171.11.254
{
+ "id": 598,
"subnet": "216.171.10.0/23",
"option-data": [
{
@@ -35492,6 +36093,7 @@
},
#dhcpd-snmp=ilurpui-cust1,66.253.179.3-66.253.179.254
{
+ "id": 599,
"subnet": "66.253.179.0/24",
"option-data": [
{
@@ -35539,13 +36141,16 @@
]
},
{
+ "id": 600,
"subnet": "10.151.68.0/24"
},
{
+ "id": 601,
"subnet": "10.151.69.0/24"
},
#dhcpd-snmp=ilurpui-ruckus,10.151.70.100-10.151.70.239
{
+ "id": 602,
"subnet": "10.151.70.0/24",
"option-data": [
{
@@ -35590,6 +36195,7 @@
"subnet4": [
#dhcpd-snmp=iluruco-cust0,216.171.12.21-216.171.15.254
{
+ "id": 604,
"subnet": "216.171.12.0/22",
"option-data": [
{
@@ -35637,13 +36243,16 @@
]
},
{
+ "id": 605,
"subnet": "10.151.76.0/24"
},
{
+ "id": 606,
"subnet": "10.151.77.0/24"
},
#dhcpd-snmp=iluruco-ruckus,10.151.78.100-10.151.78.239
{
+ "id": 607,
"subnet": "10.151.78.0/24",
"option-data": [
{
@@ -35690,6 +36299,7 @@
# WANIP for inblbra not configured
#dhcpd-snmp=inblbra-cust0,96.63.224.21-96.63.227.254
{
+ "id": 608,
"subnet": "96.63.224.0/22",
"option-data": [
{
@@ -35771,13 +36381,16 @@
]
},
{
+ "id": 609,
"subnet": "10.150.64.0/24"
},
{
+ "id": 610,
"subnet": "10.150.65.0/24"
},
#dhcpd-snmp=inblbra-ruckus,10.150.66.100-10.150.66.239
{
+ "id": 611,
"subnet": "10.150.66.0/24",
"option-data": [
{
@@ -35825,6 +36438,7 @@
# WANIP for inbluco not configured
#dhcpd-snmp=inbluco-cust0,173.230.72.21-173.230.75.254
{
+ "id": 612,
"subnet": "173.230.72.0/22",
"option-data": [
{
@@ -35898,13 +36512,16 @@
]
},
{
+ "id": 613,
"subnet": "10.150.4.0/24"
},
{
+ "id": 614,
"subnet": "10.150.5.0/24"
},
#dhcpd-snmp=inbluco-ruckus,10.150.6.100-10.150.6.239
{
+ "id": 615,
"subnet": "10.150.6.0/24",
"option-data": [
{
@@ -35952,6 +36569,7 @@
# WANIP for infwspl not configured
#dhcpd-snmp=infwspl-cust0,68.234.156.21-68.234.159.254
{
+ "id": 616,
"subnet": "68.234.156.0/22",
"option-data": [
{
@@ -36017,13 +36635,16 @@
]
},
{
+ "id": 617,
"subnet": "10.150.116.0/24"
},
{
+ "id": 618,
"subnet": "10.150.117.0/24"
},
#dhcpd-snmp=infwspl-ruckus,10.150.118.100-10.150.118.239
{
+ "id": 619,
"subnet": "10.150.118.0/24",
"option-data": [
{
@@ -36070,6 +36691,7 @@
# WANIP for inlacsl not configured
#dhcpd-snmp=inlacsl-cust0,68.234.144.21-68.234.147.254
{
+ "id": 620,
"subnet": "68.234.144.0/22",
"option-data": [
{
@@ -36186,6 +36808,7 @@
},
#dhcpd-snmp=inlacsl-cust1,68.234.182.3-68.234.183.254
{
+ "id": 621,
"subnet": "68.234.182.0/23",
"option-data": [
{
@@ -36251,13 +36874,16 @@
]
},
{
+ "id": 622,
"subnet": "10.150.92.0/24"
},
{
+ "id": 623,
"subnet": "10.150.93.0/24"
},
#dhcpd-snmp=inlacsl-ruckus,10.150.94.100-10.150.94.239
{
+ "id": 624,
"subnet": "10.150.94.0/24",
"option-data": [
{
@@ -36304,6 +36930,7 @@
# WANIP for inmugro not configured
#dhcpd-snmp=inmugro-cust0,50.30.236.21-50.30.239.254
{
+ "id": 625,
"subnet": "50.30.236.0/22",
"option-data": [
{
@@ -36377,13 +37004,16 @@
]
},
{
+ "id": 626,
"subnet": "10.153.64.0/24"
},
{
+ "id": 627,
"subnet": "10.153.65.0/24"
},
#dhcpd-snmp=inmugro-ruckus,10.153.66.100-10.153.66.239
{
+ "id": 628,
"subnet": "10.153.66.0/24",
"option-data": [
{
@@ -36448,6 +37078,7 @@
# WANIP for inmuvil not configured
#dhcpd-snmp=inmuvil-cust0,173.230.60.21-173.230.63.254
{
+ "id": 629,
"subnet": "173.230.60.0/22",
"option-data": [
{
@@ -36513,13 +37144,16 @@
]
},
{
+ "id": 630,
"subnet": "10.149.40.0/24"
},
{
+ "id": 631,
"subnet": "10.149.41.0/24"
},
#dhcpd-snmp=inmuvil-ruckus,10.149.42.100-10.149.42.239
{
+ "id": 632,
"subnet": "10.149.42.0/24",
"option-data": [
{
@@ -36584,6 +37218,7 @@
# WANIP for kslaccn not configured
#dhcpd-snmp=kslaccn-cust0,66.253.136.21-66.253.137.254
{
+ "id": 633,
"subnet": "66.253.136.0/23",
"option-data": [
{
@@ -36650,6 +37285,7 @@
},
#dhcpd-snmp=kslaccn-cust1,66.253.240.3-66.253.241.254
{
+ "id": 634,
"subnet": "66.253.240.0/23",
"option-data": [
{
@@ -36715,13 +37351,16 @@
]
},
{
+ "id": 635,
"subnet": "10.151.84.0/24"
},
{
+ "id": 636,
"subnet": "10.151.85.0/24"
},
#dhcpd-snmp=kslaccn-ruckus,10.151.86.100-10.151.86.239
{
+ "id": 637,
"subnet": "10.151.86.0/24",
"option-data": [
{
@@ -36787,6 +37426,7 @@
# WANIP for kswigro not configured
#dhcpd-snmp=kswigro-cust0,50.30.162.21-50.30.163.254
{
+ "id": 638,
"subnet": "50.30.162.0/23",
"option-data": [
{
@@ -36853,6 +37493,7 @@
},
#dhcpd-snmp=kswigro-cust1,50.30.187.3-50.30.187.254
{
+ "id": 639,
"subnet": "50.30.187.0/24",
"option-data": [
{
@@ -36918,13 +37559,16 @@
]
},
{
+ "id": 640,
"subnet": "10.250.76.0/24"
},
{
+ "id": 641,
"subnet": "10.250.77.0/24"
},
#dhcpd-snmp=kswigro-ruckus,10.250.78.100-10.250.78.239
{
+ "id": 642,
"subnet": "10.250.78.0/24",
"option-data": [
{
@@ -36972,6 +37616,7 @@
# WANIP for kybggab not configured
#dhcpd-snmp=kybggab-cust0,216.171.32.21-216.171.33.254
{
+ "id": 643,
"subnet": "216.171.32.0/23",
"option-data": [
{
@@ -37051,6 +37696,7 @@
},
#dhcpd-snmp=kybggab-cust1,216.171.38.3-216.171.38.254
{
+ "id": 644,
"subnet": "216.171.38.0/24",
"option-data": [
{
@@ -37115,13 +37761,16 @@
]
},
{
+ "id": 645,
"subnet": "10.150.96.0/24"
},
{
+ "id": 646,
"subnet": "10.150.97.0/24"
},
#dhcpd-snmp=kybggab-ruckus,10.150.98.100-10.150.98.239
{
+ "id": 647,
"subnet": "10.150.98.0/24",
"option-data": [
{
@@ -37168,6 +37817,7 @@
# WANIP for kybgrku not configured
#dhcpd-snmp=kybgrku-cust0,50.30.154.21-50.30.155.254
{
+ "id": 648,
"subnet": "50.30.154.0/23",
"option-data": [
{
@@ -37273,6 +37923,7 @@
},
#dhcpd-snmp=kybgrku-cust1,50.30.183.3-50.30.183.254
{
+ "id": 649,
"subnet": "50.30.183.0/24",
"option-data": [
{
@@ -37338,13 +37989,16 @@
]
},
{
+ "id": 650,
"subnet": "10.144.120.0/24"
},
{
+ "id": 651,
"subnet": "10.144.121.0/24"
},
#dhcpd-snmp=kybgrku-ruckus,10.144.122.100-10.144.122.239
{
+ "id": 652,
"subnet": "10.144.122.0/24",
"option-data": [
{
@@ -37392,6 +38046,7 @@
# WANIP for kybgwtn not configured
#dhcpd-snmp=kybgwtn-cust0,76.10.50.21-76.10.51.254
{
+ "id": 653,
"subnet": "76.10.50.0/23",
"option-data": [
{
@@ -37466,6 +38121,7 @@
},
#dhcpd-snmp=kybgwtn-cust1,68.234.162.3-68.234.163.254
{
+ "id": 654,
"subnet": "68.234.162.0/23",
"option-data": [
{
@@ -37531,13 +38187,16 @@
]
},
{
+ "id": 655,
"subnet": "10.150.80.0/24"
},
{
+ "id": 656,
"subnet": "10.150.81.0/24"
},
#dhcpd-snmp=kybgwtn-ruckus,10.150.82.100-10.150.82.239
{
+ "id": 657,
"subnet": "10.150.82.0/24",
"option-data": [
{
@@ -37584,6 +38243,7 @@
# WANIP for kyletnc not configured
#dhcpd-snmp=kyletnc-cust0,76.10.52.21-76.10.53.254
{
+ "id": 658,
"subnet": "76.10.52.0/23",
"option-data": [
{
@@ -37650,6 +38310,7 @@
},
#dhcpd-snmp=kyletnc-cust1,68.180.68.3-68.180.71.254
{
+ "id": 659,
"subnet": "68.180.68.0/22",
"option-data": [
{
@@ -37715,13 +38376,16 @@
]
},
{
+ "id": 660,
"subnet": "10.144.16.0/24"
},
{
+ "id": 661,
"subnet": "10.144.17.0/24"
},
#dhcpd-snmp=kyletnc-ruckus,10.144.18.100-10.144.18.239
{
+ "id": 662,
"subnet": "10.144.18.0/24",
"option-data": [
{
@@ -37786,6 +38450,7 @@
# WANIP for kylocar not configured
#dhcpd-snmp=kylocar-cust0,68.234.140.21-68.234.143.254
{
+ "id": 663,
"subnet": "68.234.140.0/22",
"option-data": [
{
@@ -37860,6 +38525,7 @@
},
#dhcpd-snmp=kylocar-cust1,68.234.193.3-68.234.193.254
{
+ "id": 664,
"subnet": "68.234.193.0/24",
"option-data": [
{
@@ -37925,13 +38591,16 @@
]
},
{
+ "id": 665,
"subnet": "10.147.128.0/24"
},
{
+ "id": 666,
"subnet": "10.147.129.0/24"
},
#dhcpd-snmp=kylocar-ruckus,10.147.130.100-10.147.130.239
{
+ "id": 667,
"subnet": "10.147.130.0/24",
"option-data": [
{
@@ -37996,6 +38665,7 @@
# WANIP for kylogro not configured
#dhcpd-snmp=kylogro-cust0,68.234.134.21-68.234.135.254
{
+ "id": 668,
"subnet": "68.234.134.0/23",
"option-data": [
{
@@ -38062,6 +38732,7 @@
},
#dhcpd-snmp=kylogro-cust1,68.234.194.3-68.234.194.254
{
+ "id": 669,
"subnet": "68.234.194.0/24",
"option-data": [
{
@@ -38127,13 +38798,16 @@
]
},
{
+ "id": 670,
"subnet": "10.147.32.0/24"
},
{
+ "id": 671,
"subnet": "10.147.33.0/24"
},
#dhcpd-snmp=kylogro-ruckus,10.147.34.100-10.147.34.239
{
+ "id": 672,
"subnet": "10.147.34.0/24",
"option-data": [
{
@@ -38198,10 +38872,12 @@
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
# WANIP for kymucsu not configured
{
+ "id": 673,
"subnet": "70.62.28.115/32"
},
#dhcpd-snmp=kymucsu-cust0,173.230.84.21-173.230.87.254
{
+ "id": 674,
"subnet": "173.230.84.0/22",
"option-data": [
{
@@ -38282,6 +38958,7 @@
},
#dhcpd-snmp=kymucsu-cust1,68.180.116.3-68.180.117.254
{
+ "id": 675,
"subnet": "68.180.116.0/23",
"option-data": [
{
@@ -38348,6 +39025,7 @@
},
#dhcpd-snmp=kymucsu-cust2,66.253.157.3-66.253.157.254
{
+ "id": 676,
"subnet": "66.253.157.0/24",
"option-data": [
{
@@ -38413,13 +39091,16 @@
]
},
{
+ "id": 677,
"subnet": "10.150.108.0/24"
},
{
+ "id": 678,
"subnet": "10.150.109.0/24"
},
#dhcpd-snmp=kymucsu-ruckus,10.150.110.100-10.150.110.239
{
+ "id": 679,
"subnet": "10.150.110.0/24",
"option-data": [
{
@@ -38467,6 +39148,7 @@
# WANIP for kymumur not configured
#dhcpd-snmp=kymumur-cust0,66.253.184.21-66.253.187.254
{
+ "id": 680,
"subnet": "66.253.184.0/22",
"option-data": [
{
@@ -38541,13 +39223,16 @@
]
},
{
+ "id": 681,
"subnet": "10.150.84.0/24"
},
{
+ "id": 682,
"subnet": "10.150.85.0/24"
},
#dhcpd-snmp=kymumur-ruckus,10.150.86.100-10.150.86.239
{
+ "id": 683,
"subnet": "10.150.86.0/24",
"option-data": [
{
@@ -38594,6 +39279,7 @@
# WANIP for labrucr not configured
#dhcpd-snmp=labrucr-cust0,76.10.20.21-76.10.23.254
{
+ "id": 684,
"subnet": "76.10.20.0/22",
"option-data": [
{
@@ -38667,13 +39353,16 @@
]
},
{
+ "id": 685,
"subnet": "10.148.44.0/24"
},
{
+ "id": 686,
"subnet": "10.148.45.0/24"
},
#dhcpd-snmp=labrucr-ruckus,10.148.46.100-10.148.46.239
{
+ "id": 687,
"subnet": "10.148.46.0/24",
"option-data": [
{
@@ -38737,6 +39426,7 @@
"subnet4": [
#dhcpd-snmp=labruhh-cust0,66.253.164.21-66.253.165.254
{
+ "id": 688,
"subnet": "66.253.164.0/23",
"option-data": [
{
@@ -38811,6 +39501,7 @@
},
#dhcpd-snmp=labruhh-cust1,216.171.50.3-216.171.50.254
{
+ "id": 689,
"subnet": "216.171.50.0/24",
"option-data": [
{
@@ -38876,13 +39567,16 @@
]
},
{
+ "id": 690,
"subnet": "10.145.12.0/24"
},
{
+ "id": 691,
"subnet": "10.145.13.0/24"
},
#dhcpd-snmp=labruhh-ruckus,10.145.14.100-10.145.14.239
{
+ "id": 692,
"subnet": "10.145.14.0/24",
"option-data": [
{
@@ -38930,6 +39624,7 @@
# WANIP for lalacap not configured
#dhcpd-snmp=lalacap-cust0,68.180.124.21-68.180.125.254
{
+ "id": 693,
"subnet": "68.180.124.0/23",
"option-data": [
{
@@ -39003,6 +39698,7 @@
},
#dhcpd-snmp=lalacap-cust1,68.180.126.3-68.180.126.254
{
+ "id": 694,
"subnet": "68.180.126.0/24",
"option-data": [
{
@@ -39068,13 +39764,16 @@
]
},
{
+ "id": 695,
"subnet": "10.145.16.0/24"
},
{
+ "id": 696,
"subnet": "10.145.17.0/24"
},
#dhcpd-snmp=lalacap-ruckus,10.145.18.100-10.145.18.239
{
+ "id": 697,
"subnet": "10.145.18.0/24",
"option-data": [
{
@@ -39122,6 +39821,7 @@
# WANIP for lalauha not configured
#dhcpd-snmp=lalauha-cust0,68.180.114.21-68.180.115.254
{
+ "id": 698,
"subnet": "68.180.114.0/23",
"option-data": [
{
@@ -39187,13 +39887,16 @@
]
},
{
+ "id": 699,
"subnet": "10.145.76.0/24"
},
{
+ "id": 700,
"subnet": "10.145.77.0/24"
},
#dhcpd-snmp=lalauha-ruckus,10.145.78.100-10.145.78.239
{
+ "id": 701,
"subnet": "10.145.78.0/24",
"option-data": [
{
@@ -39241,6 +39944,7 @@
# WANIP for lalecma not configured
#dhcpd-snmp=lalecma-cust0,66.253.141.21-66.253.141.254
{
+ "id": 702,
"subnet": "66.253.141.0/24",
"option-data": [
{
@@ -39307,6 +40011,7 @@
},
#dhcpd-snmp=lalecma-cust1,68.234.185.3-68.234.185.254
{
+ "id": 703,
"subnet": "68.234.185.0/24",
"option-data": [
{
@@ -39372,13 +40077,16 @@
]
},
{
+ "id": 704,
"subnet": "10.145.20.0/24"
},
{
+ "id": 705,
"subnet": "10.145.21.0/24"
},
#dhcpd-snmp=lalecma-ruckus,10.145.22.100-10.145.22.239
{
+ "id": 706,
"subnet": "10.145.22.0/24",
"option-data": [
{
@@ -39425,6 +40133,7 @@
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
#dhcpd-snmp=mareaor-cust0,68.180.72.25-68.180.73.254
{
+ "id": 707,
"subnet": "68.180.72.0/23",
"option-data": [
{
@@ -39491,6 +40200,7 @@
},
#dhcpd-snmp=mareaor-cust1,68.180.60.3-68.180.61.254
{
+ "id": 708,
"subnet": "68.180.60.0/23",
"option-data": [
{
@@ -39556,13 +40266,16 @@
]
},
{
+ "id": 709,
"subnet": "10.153.0.0/24"
},
{
+ "id": 710,
"subnet": "10.153.1.0/24"
},
#dhcpd-snmp=mareaor-ruckus,10.153.2.100-10.153.2.239
{
+ "id": 711,
"subnet": "10.153.2.0/24",
"option-data": [
{
@@ -39610,6 +40323,7 @@
# WANIP for mdhyutc not configured
#dhcpd-snmp=mdhyutc-cust0,173.230.32.21-173.230.39.254
{
+ "id": 712,
"subnet": "173.230.32.0/21",
"option-data": [
{
@@ -39675,13 +40389,16 @@
]
},
{
+ "id": 713,
"subnet": "10.146.144.0/24"
},
{
+ "id": 714,
"subnet": "10.146.145.0/24"
},
#dhcpd-snmp=mdhyutc-ruckus,10.146.146.100-10.146.146.239
{
+ "id": 715,
"subnet": "10.146.146.0/24",
"option-data": [
{
@@ -39729,6 +40446,7 @@
# WANIP for mial48w not configured
#dhcpd-snmp=mial48w-cust0,216.171.56.21-216.171.59.254
{
+ "id": 716,
"subnet": "216.171.56.0/22",
"option-data": [
{
@@ -39839,6 +40557,7 @@
},
#dhcpd-snmp=mial48w-cust1,68.180.20.3-68.180.21.254
{
+ "id": 717,
"subnet": "68.180.20.0/23",
"option-data": [
{
@@ -39905,6 +40624,7 @@
},
#dhcpd-snmp=mial48w-cust2,66.253.142.3-66.253.142.254
{
+ "id": 718,
"subnet": "66.253.142.0/24",
"option-data": [
{
@@ -39971,6 +40691,7 @@
},
#dhcpd-snmp=mial48w-cust3,68.180.79.3-68.180.79.254
{
+ "id": 719,
"subnet": "68.180.79.0/24",
"option-data": [
{
@@ -40036,13 +40757,16 @@
]
},
{
+ "id": 720,
"subnet": "10.150.100.0/24"
},
{
+ "id": 721,
"subnet": "10.150.101.0/24"
},
#dhcpd-snmp=mial48w-ruckus,10.150.102.100-10.150.102.239
{
+ "id": 722,
"subnet": "10.150.102.0/24",
"option-data": [
{
@@ -40089,6 +40813,7 @@
# WANIP for mideuam not configured
#dhcpd-snmp=mideuam-cust0,50.30.245.21-50.30.245.223
{
+ "id": 723,
"subnet": "50.30.245.0/24",
"option-data": [
{
@@ -40164,6 +40889,7 @@
},
#dhcpd-snmp=mideuam-cust1,10.180.10.3-10.180.10.254
{
+ "id": 724,
"subnet": "10.180.10.0/24",
"option-data": [
{
@@ -40230,13 +40956,16 @@
]
},
{
+ "id": 725,
"subnet": "10.145.108.0/24"
},
{
+ "id": 726,
"subnet": "10.145.109.0/24"
},
#dhcpd-snmp=mideuam-ruckus,10.145.110.100-10.145.110.239
{
+ "id": 727,
"subnet": "10.145.110.0/24",
"option-data": [
{
@@ -40302,6 +41031,7 @@
# WANIP for mimpvbg not configured
#dhcpd-snmp=mimpvbg-cust0,76.10.0.21-76.10.3.254
{
+ "id": 728,
"subnet": "76.10.0.0/22",
"option-data": [
{
@@ -40367,13 +41097,16 @@
]
},
{
+ "id": 729,
"subnet": "10.150.40.0/24"
},
{
+ "id": 730,
"subnet": "10.150.41.0/24"
},
#dhcpd-snmp=mimpvbg-ruckus,10.150.42.100-10.150.42.239
{
+ "id": 731,
"subnet": "10.150.42.0/24",
"option-data": [
{
@@ -40418,13 +41151,16 @@
"name": "mnalfou",
"subnet4": [
{
+ "id": 732,
"subnet": "50.30.133.1/32"
},
{
+ "id": 733,
"subnet": "10.145.116.0/24"
},
#dhcpd-snmp=mnalfou-ruckus,10.145.118.100-10.145.118.239
{
+ "id": 734,
"subnet": "10.145.118.0/24",
"option-data": [
{
@@ -40490,6 +41226,7 @@
# WANIP for mnmatsu not configured
#dhcpd-snmp=mnmatsu-cust0,68.180.32.21-68.180.35.254
{
+ "id": 735,
"subnet": "68.180.32.0/22",
"option-data": [
{
@@ -40556,6 +41293,7 @@
},
#dhcpd-snmp=mnmatsu-cust1,66.253.140.3-66.253.140.254
{
+ "id": 736,
"subnet": "66.253.140.0/24",
"option-data": [
{
@@ -40621,13 +41359,16 @@
]
},
{
+ "id": 737,
"subnet": "10.144.132.0/24"
},
{
+ "id": 738,
"subnet": "10.144.133.0/24"
},
#dhcpd-snmp=mnmatsu-ruckus,10.144.134.100-10.144.134.239
{
+ "id": 739,
"subnet": "10.144.134.0/24",
"option-data": [
{
@@ -40674,6 +41415,7 @@
# WANIP for mnmi700 not configured
#dhcpd-snmp=mnmi700-cust0,216.171.48.21-216.171.48.254
{
+ "id": 740,
"subnet": "216.171.48.0/24",
"option-data": [
{
@@ -42027,13 +42769,16 @@
},
# include "/etc/dhcp3/dhcp_hosts/mnmi700.hosts";
{
+ "id": 741,
"subnet": "10.149.28.0/24"
},
{
+ "id": 742,
"subnet": "10.149.29.0/24"
},
#dhcpd-snmp=mnmi700-ruckus,10.149.30.100-10.149.30.239
{
+ "id": 743,
"subnet": "10.149.30.0/24",
"option-data": [
{
@@ -42099,6 +42844,7 @@
# WANIP for mnmimel not configured
#dhcpd-snmp=mnmimel-cust0,66.253.168.21-66.253.171.254
{
+ "id": 744,
"subnet": "66.253.168.0/22",
"option-data": [
{
@@ -42173,6 +42919,7 @@
},
#dhcpd-snmp=mnmimel-cust1,66.253.138.3-66.253.139.254
{
+ "id": 745,
"subnet": "66.253.138.0/23",
"option-data": [
{
@@ -42238,13 +42985,16 @@
]
},
{
+ "id": 746,
"subnet": "10.150.44.0/24"
},
{
+ "id": 747,
"subnet": "10.150.45.0/24"
},
#dhcpd-snmp=mnmimel-ruckus,10.150.46.100-10.150.46.239
{
+ "id": 748,
"subnet": "10.150.46.0/24",
"option-data": [
{
@@ -42292,6 +43042,7 @@
# WANIP for mnro318 not configured
#dhcpd-snmp=mnro318-cust0,66.253.238.21-66.253.239.254
{
+ "id": 749,
"subnet": "66.253.238.0/23",
"option-data": [
{
@@ -42371,6 +43122,7 @@
# }
#dhcpd-snmp=mnro318-Trapeze,10.147.2.100-10.147.2.239
{
+ "id": 750,
"subnet": "10.147.2.0/24",
"option-data": [
{
@@ -42427,6 +43179,7 @@
# WANIP for msoxlpl not configured
#dhcpd-snmp=msoxlpl-cust0,96.63.240.21-96.63.243.254
{
+ "id": 751,
"subnet": "96.63.240.0/22",
"option-data": [
{
@@ -42500,13 +43253,16 @@
]
},
{
+ "id": 752,
"subnet": "10.149.124.0/24"
},
{
+ "id": 753,
"subnet": "10.149.125.0/24"
},
#dhcpd-snmp=msoxlpl-ruckus,10.149.126.100-10.149.126.239
{
+ "id": 754,
"subnet": "10.149.126.0/24",
"option-data": [
{
@@ -42553,6 +43309,7 @@
# WANIP for msstlap not configured
#dhcpd-snmp=msstlap-cust0,96.63.244.21-96.63.247.254
{
+ "id": 755,
"subnet": "96.63.244.0/22",
"option-data": [
{
@@ -42618,13 +43375,16 @@
]
},
{
+ "id": 756,
"subnet": "10.149.128.0/24"
},
{
+ "id": 757,
"subnet": "10.149.129.0/24"
},
#dhcpd-snmp=msstlap-ruckus,10.149.130.100-10.149.130.239
{
+ "id": 758,
"subnet": "10.149.130.0/24",
"option-data": [
{
@@ -42671,6 +43431,7 @@
# WANIP for msstmsu not configured
#dhcpd-snmp=msstmsu-cust0,68.180.48.21-68.180.51.223
{
+ "id": 759,
"subnet": "68.180.48.0/22",
"option-data": [
{
@@ -42741,6 +43502,7 @@
},
#dhcpd-snmp=msstmsu-cust1,68.180.63.3-68.180.63.254
{
+ "id": 760,
"subnet": "68.180.63.0/24",
"option-data": [
{
@@ -42798,6 +43560,7 @@
},
#dhcpd-snmp=msstmsu-cust2,50.30.247.3-50.30.247.254
{
+ "id": 761,
"subnet": "50.30.247.0/24",
"option-data": [
{
@@ -42855,6 +43618,7 @@
},
#dhcpd-snmp=msstmsu-cust3,216.171.51.3-216.171.51.254
{
+ "id": 762,
"subnet": "216.171.51.0/24",
"option-data": [
{
@@ -42912,6 +43676,7 @@
},
#dhcpd-snmp=msstmsu-cust4,68.180.80.3-68.180.81.254
{
+ "id": 763,
"subnet": "68.180.80.0/23",
"option-data": [
{
@@ -42976,13 +43741,16 @@
]
},
{
+ "id": 764,
"subnet": "10.145.152.0/24"
},
{
+ "id": 765,
"subnet": "10.145.153.0/24"
},
#dhcpd-snmp=msstmsu-ruckus,10.145.154.100-10.145.154.239
{
+ "id": 766,
"subnet": "10.145.154.0/24",
"option-data": [
{
@@ -43028,6 +43796,7 @@
# WANIP for ncbocob not configured
#dhcpd-snmp=ncbocob-cust0,68.180.37.21-68.180.37.254
{
+ "id": 767,
"subnet": "68.180.37.0/24",
"option-data": [
{
@@ -43101,13 +43870,16 @@
]
},
{
+ "id": 768,
"subnet": "10.150.32.0/24"
},
{
+ "id": 769,
"subnet": "10.150.33.0/24"
},
#dhcpd-snmp=ncbocob-ruckus,10.150.34.100-10.150.34.239
{
+ "id": 770,
"subnet": "10.150.34.0/24",
"option-data": [
{
@@ -43173,6 +43945,7 @@
# WANIP for ncch901 not configured
#dhcpd-snmp=ncch901-cust0,50.30.248.21-50.30.249.254
{
+ "id": 771,
"subnet": "50.30.248.0/23",
"option-data": [
{
@@ -43246,13 +44019,16 @@
]
},
{
+ "id": 772,
"subnet": "10.144.64.0/24"
},
{
+ "id": 773,
"subnet": "10.144.65.0/24"
},
#dhcpd-snmp=ncch901-ruckus,10.144.66.100-10.144.66.239
{
+ "id": 774,
"subnet": "10.144.66.0/24",
"option-data": [
{
@@ -43298,16 +44074,20 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 775,
"subnet": "152.23.208.2/32"
},
{
+ "id": 776,
"subnet": "10.149.156.0/24"
},
{
+ "id": 777,
"subnet": "10.149.157.0/24"
},
#dhcpd-snmp=ncchgto-ruckus,10.149.158.100-10.149.158.239
{
+ "id": 778,
"subnet": "10.149.158.0/24",
"option-data": [
{
@@ -43355,6 +44135,7 @@
# WANIP for ncgrbmy not configured
#dhcpd-snmp=ncgrbmy-cust0,50.30.204.21-50.30.207.254
{
+ "id": 779,
"subnet": "50.30.204.0/22",
"option-data": [
{
@@ -43430,6 +44211,7 @@
},
#dhcpd-snmp=ncgrbmy-cust1,50.30.191.3-50.30.191.254
{
+ "id": 780,
"subnet": "50.30.191.0/24",
"option-data": [
{
@@ -43504,13 +44286,16 @@
]
},
{
+ "id": 781,
"subnet": "10.148.68.0/24"
},
{
+ "id": 782,
"subnet": "10.148.69.0/24"
},
#dhcpd-snmp=ncgrbmy-ruckus,10.148.70.100-10.148.70.239
{
+ "id": 783,
"subnet": "10.148.70.0/24",
"option-data": [
{
@@ -43577,6 +44362,7 @@
# WANIP for ncgrfsp not configured
#dhcpd-snmp=ncgrfsp-cust0,96.63.232.21-96.63.235.254
{
+ "id": 784,
"subnet": "96.63.232.0/22",
"option-data": [
{
@@ -43642,13 +44428,16 @@
]
},
{
+ "id": 785,
"subnet": "10.149.116.0/24"
},
{
+ "id": 786,
"subnet": "10.149.117.0/24"
},
#dhcpd-snmp=ncgrfsp-ruckus,10.149.118.100-10.149.118.239
{
+ "id": 787,
"subnet": "10.149.118.0/24",
"option-data": [
{
@@ -43695,6 +44484,7 @@
# WANIP for ncgrgro not configured
#dhcpd-snmp=ncgrgro-cust0,68.180.74.21-68.180.75.254
{
+ "id": 788,
"subnet": "68.180.74.0/23",
"option-data": [
{
@@ -43761,6 +44551,7 @@
},
#dhcpd-snmp=ncgrgro-ruckus,10.149.26.100-10.149.26.239
{
+ "id": 789,
"subnet": "10.149.26.0/24",
"option-data": [
{
@@ -43826,6 +44617,7 @@
# WANIP for ncgrpir not configured
#dhcpd-snmp=ncgrpir-cust0,50.30.240.21-50.30.243.254
{
+ "id": 790,
"subnet": "50.30.240.0/22",
"option-data": [
{
@@ -43936,6 +44728,7 @@
},
#dhcpd-snmp=ncgrpir-cust1,50.30.246.3-50.30.246.254
{
+ "id": 791,
"subnet": "50.30.246.0/24",
"option-data": [
{
@@ -44001,13 +44794,16 @@
]
},
{
+ "id": 792,
"subnet": "10.144.0.0/24"
},
{
+ "id": 793,
"subnet": "10.144.1.0/24"
},
#dhcpd-snmp=ncgrpir-ruckus,10.144.2.100-10.144.2.239
{
+ "id": 794,
"subnet": "10.144.2.0/24",
"option-data": [
{
@@ -44093,6 +44889,7 @@
# WANIP for ncrattg not configured
#dhcpd-snmp=ncrattg-cust0,216.171.39.21-216.171.39.254
{
+ "id": 795,
"subnet": "216.171.39.0/24",
"option-data": [
{
@@ -44159,6 +44956,7 @@
},
#dhcpd-snmp=ncrattg-ruckus,10.144.56.100-10.144.56.239
{
+ "id": 796,
"subnet": "10.144.56.0/24",
"option-data": [
{
@@ -44205,6 +45003,7 @@
# WANIP for nelivie not configured
#dhcpd-snmp=nelivie-cust0,68.234.212.21-68.234.215.254
{
+ "id": 797,
"subnet": "68.234.212.0/22",
"option-data": [
{
@@ -44270,13 +45069,16 @@
]
},
{
+ "id": 798,
"subnet": "10.144.140.0/24"
},
{
+ "id": 799,
"subnet": "10.144.141.0/24"
},
#dhcpd-snmp=nelivie-ruckus,10.144.142.100-10.144.142.239
{
+ "id": 800,
"subnet": "10.144.142.0/24",
"option-data": [
{
@@ -44342,6 +45144,7 @@
# WANIP for njcamer not configured
#dhcpd-snmp=njcamer-cust0,68.180.104.21-68.180.105.254
{
+ "id": 801,
"subnet": "68.180.104.0/23",
"option-data": [
{
@@ -44408,13 +45211,16 @@
]
},
{
+ "id": 802,
"subnet": "10.146.148.0/24"
},
{
+ "id": 803,
"subnet": "10.146.149.0/24"
},
#dhcpd-snmp=njcamer-ruckus,10.146.150.100-10.146.150.239
{
+ "id": 804,
"subnet": "10.146.150.0/24",
"option-data": [
{
@@ -44461,6 +45267,7 @@
# WANIP for njencom not configured
#dhcpd-snmp=njencom-cust0,68.180.108.21-68.180.109.254
{
+ "id": 805,
"subnet": "68.180.108.0/23",
"option-data": [
{
@@ -49367,6 +50174,7 @@
# include "/etc/dhcp3/dhcp_hosts/njencom.hosts";
#dhcpd-snmp=njencom-cust1,173.230.54.3-173.230.54.254
{
+ "id": 806,
"subnet": "173.230.54.0/24",
"option-data": [
{
@@ -49414,13 +50222,16 @@
]
},
{
+ "id": 807,
"subnet": "10.146.152.0/24"
},
{
+ "id": 808,
"subnet": "10.146.153.0/24"
},
#dhcpd-snmp=njencom-ruckus,10.146.154.100-10.146.154.239
{
+ "id": 809,
"subnet": "10.146.154.0/24",
"option-data": [
{
@@ -49466,6 +50277,7 @@
# WANIP for njenplo not configured
#dhcpd-snmp=njenplo-cust0,66.253.153.21-66.253.153.254
{
+ "id": 810,
"subnet": "66.253.153.0/24",
"option-data": [
{
@@ -49532,6 +50344,7 @@
},
#dhcpd-snmp=njenplo-cust1,216.171.47.3-216.171.47.254
{
+ "id": 811,
"subnet": "216.171.47.0/24",
"option-data": [
{
@@ -49598,6 +50411,7 @@
},
#dhcpd-snmp=njenplo-cust2,173.230.55.3-173.230.55.254
{
+ "id": 812,
"subnet": "173.230.55.0/24",
"option-data": [
{
@@ -49663,13 +50477,16 @@
]
},
{
+ "id": 813,
"subnet": "10.146.164.0/24"
},
{
+ "id": 814,
"subnet": "10.146.165.0/24"
},
#dhcpd-snmp=njenplo-ruckus,10.146.166.100-10.146.166.239
{
+ "id": 815,
"subnet": "10.146.166.0/24",
"option-data": [
{
@@ -49735,6 +50552,7 @@
# WANIP for njentow not configured
#dhcpd-snmp=njentow-cust0,96.63.212.21-96.63.212.254
{
+ "id": 816,
"subnet": "96.63.212.0/24",
"option-data": [
{
@@ -49802,6 +50620,7 @@
# include "/etc/dhcp3/dhcp_hosts/njentow.hosts";
#dhcpd-snmp=njentow-cust1,66.253.154.3-66.253.155.254
{
+ "id": 817,
"subnet": "66.253.154.0/23",
"option-data": [
{
@@ -49868,6 +50687,7 @@
},
#dhcpd-snmp=njentow-cust2,216.171.52.3-216.171.52.254
{
+ "id": 818,
"subnet": "216.171.52.0/24",
"option-data": [
{
@@ -49933,13 +50753,16 @@
]
},
{
+ "id": 819,
"subnet": "10.146.156.0/24"
},
{
+ "id": 820,
"subnet": "10.146.157.0/24"
},
#dhcpd-snmp=njentow-ruckus,10.146.158.100-10.146.158.239
{
+ "id": 821,
"subnet": "10.146.158.0/24",
"option-data": [
{
@@ -49987,6 +50810,7 @@
# WANIP for njerlta not configured
#dhcpd-snmp=njerlta-cust0,66.253.130.21-66.253.130.254
{
+ "id": 822,
"subnet": "66.253.130.0/24",
"option-data": [
{
@@ -50053,6 +50877,7 @@
},
#dhcpd-snmp=njerlta-ruckus,10.146.4.100-10.146.4.239
{
+ "id": 823,
"subnet": "10.146.4.0/24",
"option-data": [
{
@@ -50099,6 +50924,7 @@
# WANIP for njjcmar not configured
#dhcpd-snmp=njjcmar-cust0,173.230.64.21-173.230.67.254
{
+ "id": 824,
"subnet": "173.230.64.0/22",
"option-data": [
{
@@ -55516,13 +56342,16 @@
},
# include "/etc/dhcp3/dhcp_hosts/njjcmar.hosts";
{
+ "id": 825,
"subnet": "10.146.0.0/24"
},
{
+ "id": 826,
"subnet": "10.146.1.0/24"
},
#dhcpd-snmp=njjcmar-ruckus,10.146.2.100-10.146.2.239
{
+ "id": 827,
"subnet": "10.146.2.0/24",
"option-data": [
{
@@ -55569,6 +56398,7 @@
# WANIP for njjcmon not configured
#dhcpd-snmp=njjcmon-cust0,173.230.68.21-173.230.69.254
{
+ "id": 828,
"subnet": "173.230.68.0/23",
"option-data": [
{
@@ -55634,13 +56464,16 @@
]
},
{
+ "id": 829,
"subnet": "10.146.16.0/24"
},
{
+ "id": 830,
"subnet": "10.146.17.0/24"
},
#dhcpd-snmp=njjcmon-ruckus,10.146.18.100-10.146.18.239
{
+ "id": 831,
"subnet": "10.146.18.0/24",
"option-data": [
{
@@ -55686,10 +56519,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 832,
"subnet": "68.234.166.36/32"
},
#dhcpd-snmp=njmo40p-cust0,68.234.167.21-68.234.167.254
{
+ "id": 833,
"subnet": "68.234.167.0/24",
"option-data": [
{
@@ -55755,13 +56590,16 @@
]
},
{
+ "id": 834,
"subnet": "10.146.40.0/24"
},
{
+ "id": 835,
"subnet": "10.146.41.0/24"
},
#dhcpd-snmp=njmo40p-ruckus,10.146.42.100-10.146.42.239
{
+ "id": 836,
"subnet": "10.146.42.0/24",
"option-data": [
{
@@ -55809,6 +56647,7 @@
# WANIP for njmohms not configured
#dhcpd-snmp=njmohms-cust0,68.234.164.21-68.234.165.254
{
+ "id": 837,
"subnet": "68.234.164.0/23",
"option-data": [
{
@@ -55882,13 +56721,16 @@
]
},
{
+ "id": 838,
"subnet": "10.146.36.0/24"
},
{
+ "id": 839,
"subnet": "10.146.37.0/24"
},
#dhcpd-snmp=njmohms-ruckus,10.146.38.100-10.146.38.239
{
+ "id": 840,
"subnet": "10.146.38.0/24",
"option-data": [
{
@@ -55936,6 +56778,7 @@
# WANIP for njnyriv not configured
#dhcpd-snmp=njnyriv-cust0,76.10.30.21-76.10.31.254
{
+ "id": 841,
"subnet": "76.10.30.0/23",
"option-data": [
{
@@ -56009,13 +56852,16 @@
]
},
{
+ "id": 842,
"subnet": "10.146.28.0/24"
},
{
+ "id": 843,
"subnet": "10.146.29.0/24"
},
#dhcpd-snmp=njnyriv-ruckus,10.146.30.100-10.146.30.239
{
+ "id": 844,
"subnet": "10.146.30.0/24",
"option-data": [
{
@@ -56081,6 +56927,7 @@
# WANIP for njrapat not configured
#dhcpd-snmp=njrapat-cust0,66.253.174.21-66.253.175.254
{
+ "id": 845,
"subnet": "66.253.174.0/23",
"option-data": [
{
@@ -56147,6 +56994,7 @@
},
#dhcpd-snmp=njrapat-ruckus,10.146.48.100-10.146.48.239
{
+ "id": 846,
"subnet": "10.146.48.0/24",
"option-data": [
{
@@ -56193,6 +57041,7 @@
# WANIP for njrarar not configured
#dhcpd-snmp=njrarar-cust0,68.180.106.21-68.180.107.254
{
+ "id": 847,
"subnet": "68.180.106.0/23",
"option-data": [
{
@@ -59167,13 +60016,16 @@
},
# include "/etc/dhcp3/dhcp_hosts/njrarar.hosts";
{
+ "id": 848,
"subnet": "10.146.160.0/24"
},
{
+ "id": 849,
"subnet": "10.146.161.0/24"
},
#dhcpd-snmp=njrarar-ruckus,10.146.162.100-10.146.162.239
{
+ "id": 850,
"subnet": "10.146.162.0/24",
"option-data": [
{
@@ -59219,10 +60071,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 851,
"subnet": "66.253.252.114/32"
},
#dhcpd-snmp=njsefra-cust0,66.253.128.21-66.253.129.254
{
+ "id": 852,
"subnet": "66.253.128.0/23",
"option-data": [
{
@@ -59288,13 +60142,16 @@
]
},
{
+ "id": 853,
"subnet": "10.146.128.0/24"
},
{
+ "id": 854,
"subnet": "10.146.129.0/24"
},
#dhcpd-snmp=njsefra-ruckus,10.146.130.100-10.146.130.239
{
+ "id": 855,
"subnet": "10.146.130.0/24",
"option-data": [
{
@@ -59342,6 +60199,7 @@
# WANIP for njwerep not configured
#dhcpd-snmp=njwerep-cust0,66.253.246.21-66.253.246.254
{
+ "id": 858,
"subnet": "66.253.246.0/24",
"option-data": [
{
@@ -59451,13 +60309,16 @@
]
},
{
+ "id": 859,
"subnet": "10.146.136.0/24"
},
{
+ "id": 860,
"subnet": "10.146.137.0/24"
},
#dhcpd-snmp=njwerep-ruckus,10.146.138.100-10.146.138.239
{
+ "id": 861,
"subnet": "10.146.138.0/24",
"option-data": [
{
@@ -59505,6 +60366,7 @@
# WANIP for nvlvrpl not configured
#dhcpd-snmp=nvlvrpl-cust0,68.234.176.21-68.234.179.254
{
+ "id": 862,
"subnet": "68.234.176.0/22",
"option-data": [
{
@@ -59570,13 +60432,16 @@
]
},
{
+ "id": 863,
"subnet": "10.144.40.0/24"
},
{
+ "id": 864,
"subnet": "10.144.41.0/24"
},
#dhcpd-snmp=nvlvrpl-ruckus,10.144.42.100-10.144.42.239
{
+ "id": 865,
"subnet": "10.144.42.0/24",
"option-data": [
{
@@ -59623,6 +60488,7 @@
# WANIP for nyamvor not configured
#dhcpd-snmp=nyamvor-cust0,68.180.84.21-68.180.87.223
{
+ "id": 866,
"subnet": "68.180.84.0/22",
"option-data": [
{
@@ -59689,6 +60555,7 @@
},
#dhcpd-snmp=nyamvor-cust1,10.180.124.3-10.180.125.254
{
+ "id": 867,
"subnet": "10.180.124.0/23",
"option-data": [
{
@@ -59754,13 +60621,16 @@
]
},
{
+ "id": 868,
"subnet": "10.144.124.0/24"
},
{
+ "id": 869,
"subnet": "10.144.125.0/24"
},
#dhcpd-snmp=nyamvor-ruckus,10.144.126.100-10.144.126.239
{
+ "id": 870,
"subnet": "10.144.126.0/24",
"option-data": [
{
@@ -59826,6 +60696,7 @@
# WANIP for nynyclp not configured
#dhcpd-snmp=nynyclp-cust0,50.30.200.21-50.30.203.254
{
+ "id": 871,
"subnet": "50.30.200.0/22",
"option-data": [
{
@@ -59891,13 +60762,16 @@
]
},
{
+ "id": 872,
"subnet": "10.146.212.0/24"
},
{
+ "id": 873,
"subnet": "10.146.213.0/24"
},
#dhcpd-snmp=nynyclp-ruckus,10.146.214.100-10.146.214.239
{
+ "id": 874,
"subnet": "10.146.214.0/24",
"option-data": [
{
@@ -59944,6 +60818,7 @@
# WANIP for nyropro not configured
#dhcpd-snmp=nyropro-cust0,50.30.232.21-50.30.235.254
{
+ "id": 875,
"subnet": "50.30.232.0/22",
"option-data": [
{
@@ -60010,6 +60885,7 @@
},
#dhcpd-snmp=nyropro-cust1,66.253.250.3-66.253.251.254
{
+ "id": 876,
"subnet": "66.253.250.0/23",
"option-data": [
{
@@ -60075,13 +60951,16 @@
]
},
{
+ "id": 877,
"subnet": "10.150.24.0/24"
},
{
+ "id": 878,
"subnet": "10.150.25.0/24"
},
#dhcpd-snmp=nyropro-ruckus,10.150.26.20-10.150.26.239
{
+ "id": 879,
"subnet": "10.150.26.0/24",
"option-data": [
{
@@ -60146,6 +61025,7 @@
# WANIP for nysicsi not configured
#dhcpd-snmp=nysicsi-cust0,68.234.208.21-68.234.211.254
{
+ "id": 880,
"subnet": "68.234.208.0/22",
"option-data": [
{
@@ -60219,13 +61099,16 @@
]
},
{
+ "id": 881,
"subnet": "10.144.144.0/24"
},
{
+ "id": 882,
"subnet": "10.144.145.0/24"
},
#dhcpd-snmp=nysicsi-ruckus,10.144.146.100-10.144.146.239
{
+ "id": 883,
"subnet": "10.144.146.0/24",
"option-data": [
{
@@ -60290,6 +61173,7 @@
# WANIP for nysycob not configured
#dhcpd-snmp=nysycob-cust0,50.30.136.21-50.30.137.254
{
+ "id": 884,
"subnet": "50.30.136.0/23",
"option-data": [
{
@@ -62166,13 +63050,16 @@
},
# include "/etc/dhcp3/dhcp_hosts/nysycob.hosts";
{
+ "id": 885,
"subnet": "10.145.156.0/24"
},
{
+ "id": 886,
"subnet": "10.145.157.0/24"
},
#dhcpd-snmp=nysycob-ruckus,10.145.158.100-10.145.158.239
{
+ "id": 887,
"subnet": "10.145.158.0/24",
"option-data": [
{
@@ -62219,6 +63106,7 @@
# WANIP for ohak401 not configured
#dhcpd-snmp=ohak401-cust0,216.171.34.21-216.171.35.223
{
+ "id": 888,
"subnet": "216.171.34.0/23",
"option-data": [
{
@@ -62285,6 +63173,7 @@
},
#dhcpd-snmp=ohak401-cust1,10.180.11.3-10.180.11.254
{
+ "id": 889,
"subnet": "10.180.11.0/24",
"option-data": [
{
@@ -62351,13 +63240,16 @@
]
},
{
+ "id": 890,
"subnet": "10.146.132.0/24"
},
{
+ "id": 891,
"subnet": "10.146.133.0/24"
},
#dhcpd-snmp=ohak401-ruckus,10.146.134.100-10.146.134.239
{
+ "id": 892,
"subnet": "10.146.134.0/24",
"option-data": [
{
@@ -62421,10 +63313,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 893,
"subnet": "70.60.67.126/32"
},
#dhcpd-snmp=ohcinhh-cust0,10.180.0.21-10.180.7.254
{
+ "id": 894,
"subnet": "10.180.0.0/21",
"option-data": [
{
@@ -62473,13 +63367,16 @@
]
},
{
+ "id": 895,
"subnet": "10.250.132.0/24"
},
{
+ "id": 896,
"subnet": "10.250.133.0/24"
},
#dhcpd-snmp=ohcinhh-ruckus,10.250.134.100-10.250.134.239
{
+ "id": 897,
"subnet": "10.250.134.0/24",
"option-data": [
{
@@ -62525,6 +63422,7 @@
"subnet4": [
#dhcpd-snmp=ohkecpo-cust0,96.63.252.21-96.63.255.254
{
+ "id": 898,
"subnet": "96.63.252.0/22",
"option-data": [
{
@@ -62605,6 +63503,7 @@
},
#dhcpd-snmp=ohkecpo-cust1,216.171.46.3-216.171.46.254
{
+ "id": 899,
"subnet": "216.171.46.0/24",
"option-data": [
{
@@ -62670,13 +63569,16 @@
]
},
{
+ "id": 900,
"subnet": "10.150.68.0/24"
},
{
+ "id": 901,
"subnet": "10.150.69.0/24"
},
#dhcpd-snmp=ohkecpo-ruckus,10.150.70.100-10.150.70.239
{
+ "id": 902,
"subnet": "10.150.70.0/24",
"option-data": [
{
@@ -62723,6 +63625,7 @@
# WANIP for ohoxscr not configured
#dhcpd-snmp=ohoxscr-cust0,68.180.88.21-68.180.91.223
{
+ "id": 903,
"subnet": "68.180.88.0/22",
"option-data": [
{
@@ -62789,6 +63692,7 @@
},
#dhcpd-snmp=ohoxscr-cust1,50.30.132.3-50.30.132.254
{
+ "id": 904,
"subnet": "50.30.132.0/24",
"option-data": [
{
@@ -62855,6 +63759,7 @@
},
#dhcpd-snmp=ohoxscr-cust2,10.180.122.3-10.180.123.254
{
+ "id": 905,
"subnet": "10.180.122.0/23",
"option-data": [
{
@@ -62920,13 +63825,16 @@
]
},
{
+ "id": 906,
"subnet": "10.150.60.0/24"
},
{
+ "id": 907,
"subnet": "10.150.61.0/24"
},
#dhcpd-snmp=ohoxscr-ruckus,10.150.62.100-10.150.62.239
{
+ "id": 908,
"subnet": "10.150.62.0/24",
"option-data": [
{
@@ -62991,6 +63899,7 @@
# WANIP for ohtoviv not configured
#dhcpd-snmp=ohtoviv-cust0,68.180.56.21-68.180.57.254
{
+ "id": 909,
"subnet": "68.180.56.0/23",
"option-data": [
{
@@ -63057,6 +63966,7 @@
},
#dhcpd-snmp=ohtoviv-cust1,68.180.6.3-68.180.6.254
{
+ "id": 910,
"subnet": "68.180.6.0/24",
"option-data": [
{
@@ -63122,13 +64032,16 @@
]
},
{
+ "id": 911,
"subnet": "10.144.44.0/24"
},
{
+ "id": 912,
"subnet": "10.144.45.0/24"
},
#dhcpd-snmp=ohtoviv-ruckus,10.144.46.100-10.144.46.239
{
+ "id": 913,
"subnet": "10.144.46.0/24",
"option-data": [
{
@@ -63194,6 +64107,7 @@
# WANIP for okedbry not configured
#dhcpd-snmp=okedbry-cust0,66.253.236.21-66.253.237.254
{
+ "id": 914,
"subnet": "66.253.236.0/23",
"option-data": [
{
@@ -63259,13 +64173,16 @@
]
},
{
+ "id": 915,
"subnet": "10.145.60.0/24"
},
{
+ "id": 916,
"subnet": "10.145.61.0/24"
},
#dhcpd-snmp=okedbry-ruckus,10.145.62.100-10.145.62.239
{
+ "id": 917,
"subnet": "10.145.62.0/24",
"option-data": [
{
@@ -63313,6 +64230,7 @@
# WANIP for oklaipl not configured
#dhcpd-snmp=oklaipl-cust0,68.180.24.21-68.180.27.254
{
+ "id": 918,
"subnet": "68.180.24.0/22",
"option-data": [
{
@@ -63378,13 +64296,16 @@
]
},
{
+ "id": 919,
"subnet": "10.145.84.0/24"
},
{
+ "id": 920,
"subnet": "10.145.85.0/24"
},
#dhcpd-snmp=oklaipl-ruckus,10.145.86.100-10.145.86.239
{
+ "id": 921,
"subnet": "10.145.86.0/24",
"option-data": [
{
@@ -63431,6 +64352,7 @@
# WANIP for oknogro not configured
#dhcpd-snmp=oknogro-cust0,96.63.248.21-96.63.251.254
{
+ "id": 922,
"subnet": "96.63.248.0/22",
"option-data": [
{
@@ -63510,13 +64432,16 @@
]
},
{
+ "id": 923,
"subnet": "10.145.104.0/24"
},
{
+ "id": 924,
"subnet": "10.145.105.0/24"
},
#dhcpd-snmp=oknogro-ruckus,10.145.106.100-10.145.106.239
{
+ "id": 925,
"subnet": "10.145.106.0/24",
"option-data": [
{
@@ -63582,6 +64507,7 @@
# WANIP for oknougr not configured
#dhcpd-snmp=oknougr-cust0,50.30.170.21-50.30.171.254
{
+ "id": 926,
"subnet": "50.30.170.0/23",
"option-data": [
{
@@ -63648,6 +64574,7 @@
},
#dhcpd-snmp=oknougr-cust1,50.30.180.3-50.30.181.254
{
+ "id": 927,
"subnet": "50.30.180.0/23",
"option-data": [
{
@@ -63713,13 +64640,16 @@
]
},
{
+ "id": 928,
"subnet": "10.144.128.0/24"
},
{
+ "id": 929,
"subnet": "10.144.129.0/24"
},
#dhcpd-snmp=oknougr-ruckus,10.144.130.100-10.144.130.239
{
+ "id": 930,
"subnet": "10.144.130.0/24",
"option-data": [
{
@@ -63766,6 +64696,7 @@
# WANIP for okwecol not configured
#dhcpd-snmp=okwecol-cust0,68.180.98.21-68.180.99.223
{
+ "id": 931,
"subnet": "68.180.98.0/23",
"option-data": [
{
@@ -63840,6 +64771,7 @@
},
#dhcpd-snmp=okwecol-cust1,10.180.34.3-10.180.34.254
{
+ "id": 932,
"subnet": "10.180.34.0/24",
"option-data": [
{
@@ -63905,13 +64837,16 @@
]
},
{
+ "id": 933,
"subnet": "10.145.28.0/24"
},
{
+ "id": 934,
"subnet": "10.145.29.0/24"
},
#dhcpd-snmp=okwecol-ruckus,10.145.30.100-10.145.30.239
{
+ "id": 935,
"subnet": "10.145.30.0/24",
"option-data": [
{
@@ -63976,6 +64911,7 @@
# WANIP for orpopcs not configured
#dhcpd-snmp=orpopcs-cust0,68.180.120.21-68.180.123.223
{
+ "id": 936,
"subnet": "68.180.120.0/22",
"option-data": [
{
@@ -64042,6 +64978,7 @@
},
#dhcpd-snmp=orpopcs-cust1,66.253.196.3-66.253.197.254
{
+ "id": 937,
"subnet": "66.253.196.0/23",
"option-data": [
{
@@ -64108,6 +65045,7 @@
},
#dhcpd-snmp=orpopcs-cust2,66.253.198.3-66.253.198.254
{
+ "id": 938,
"subnet": "66.253.198.0/24",
"option-data": [
{
@@ -64174,6 +65112,7 @@
},
#dhcpd-snmp=orpopcs-cust3,10.180.14.3-10.180.15.254
{
+ "id": 939,
"subnet": "10.180.14.0/23",
"option-data": [
{
@@ -64239,13 +65178,16 @@
]
},
{
+ "id": 940,
"subnet": "10.145.120.0/24"
},
{
+ "id": 941,
"subnet": "10.145.121.0/24"
},
#dhcpd-snmp=orpopcs-ruckus,10.145.122.100-10.145.122.254
{
+ "id": 942,
"subnet": "10.145.122.0/24",
"option-data": [
{
@@ -64311,6 +65253,7 @@
# WANIP for mielccc not configured
#dhcpd-snmp=mielccc-cust0,76.10.16.21-76.10.19.254
{
+ "id": 943,
"subnet": "76.10.16.0/22",
"option-data": [
{
@@ -64384,13 +65327,16 @@
]
},
{
+ "id": 944,
"subnet": "10.153.40.0/24"
},
{
+ "id": 945,
"subnet": "10.153.41.0/24"
},
#dhcpd-snmp=mielccc-ruckus,10.153.42.100-10.153.42.239
{
+ "id": 946,
"subnet": "10.153.42.0/24",
"option-data": [
{
@@ -64438,6 +65384,7 @@
# WANIP for palheco not configured
#dhcpd-snmp=palheco-cust0,96.63.228.21-96.63.231.254
{
+ "id": 947,
"subnet": "96.63.228.0/22",
"option-data": [
{
@@ -64503,13 +65450,16 @@
]
},
{
+ "id": 948,
"subnet": "10.146.192.0/24"
},
{
+ "id": 949,
"subnet": "10.146.193.0/24"
},
#dhcpd-snmp=palheco-ruckus,10.146.194.100-10.146.194.239
{
+ "id": 950,
"subnet": "10.146.194.0/24",
"option-data": [
{
@@ -64554,10 +65504,12 @@
"name": "paphevo",
"subnet4": [
{
+ "id": 951,
"subnet": "10.148.51.2/32"
},
#dhcpd-snmp=paphevo-cust0,68.234.152.21-68.234.155.223
{
+ "id": 952,
"subnet": "68.234.152.0/22",
"option-data": [
{
@@ -64632,6 +65584,7 @@
},
#dhcpd-snmp=paphevo-cust1,66.253.199.3-66.253.199.254
{
+ "id": 953,
"subnet": "66.253.199.0/24",
"option-data": [
{
@@ -64698,6 +65651,7 @@
},
#dhcpd-snmp=paphevo-cust2,216.171.53.3-216.171.53.254
{
+ "id": 954,
"subnet": "216.171.53.0/24",
"option-data": [
{
@@ -64763,13 +65717,16 @@
]
},
{
+ "id": 955,
"subnet": "10.148.48.0/24"
},
{
+ "id": 956,
"subnet": "10.148.49.0/24"
},
#dhcpd-snmp=paphevo-ruckus,10.148.50.100-10.148.50.239
{
+ "id": 957,
"subnet": "10.148.50.0/24",
"option-data": [
{
@@ -64835,6 +65792,7 @@
# WANIP for paphrad not configured
#dhcpd-snmp=paphrad-cust0,68.180.100.21-68.180.103.254
{
+ "id": 958,
"subnet": "68.180.100.0/22",
"option-data": [
{
@@ -64915,6 +65873,7 @@
},
#dhcpd-snmp=paphrad-cust1,68.180.28.3-68.180.29.254
{
+ "id": 959,
"subnet": "68.180.28.0/23",
"option-data": [
{
@@ -64980,13 +65939,16 @@
]
},
{
+ "id": 960,
"subnet": "10.146.124.0/24"
},
{
+ "id": 961,
"subnet": "10.146.125.0/24"
},
#dhcpd-snmp=paphrad-ruckus,10.146.126.100-10.146.126.239
{
+ "id": 962,
"subnet": "10.146.126.0/24",
"option-data": [
{
@@ -65033,6 +65995,7 @@
# WANIP for pascgro not configured
#dhcpd-snmp=pascgro-cust0,76.10.24.21-76.10.27.254
{
+ "id": 963,
"subnet": "76.10.24.0/22",
"option-data": [
{
@@ -65098,13 +66061,16 @@
]
},
{
+ "id": 964,
"subnet": "10.150.36.0/24"
},
{
+ "id": 965,
"subnet": "10.150.37.0/24"
},
#dhcpd-snmp=pascgro-ruckus,10.150.38.100-10.150.38.239
{
+ "id": 966,
"subnet": "10.150.38.0/24",
"option-data": [
{
@@ -65170,6 +66136,7 @@
# WANIP for scch411 not configured
#dhcpd-snmp=scch411-cust0,50.30.131.21-50.30.131.254
{
+ "id": 967,
"subnet": "50.30.131.0/24",
"option-data": [
{
@@ -65236,6 +66203,7 @@
},
#dhcpd-snmp=scch411-cust1,68.180.7.3-68.180.7.254
{
+ "id": 968,
"subnet": "68.180.7.0/24",
"option-data": [
{
@@ -65302,6 +66270,7 @@
},
#dhcpd-snmp=scch411-ruckus,10.251.4.100-10.251.4.239
{
+ "id": 969,
"subnet": "10.251.4.0/24",
"option-data": [
{
@@ -65349,6 +66318,7 @@
# WANIP for scclber not configured
#dhcpd-snmp=scclber-cust0,173.230.80.21-173.230.83.254
{
+ "id": 970,
"subnet": "173.230.80.0/22",
"option-data": [
{
@@ -65414,13 +66384,16 @@
]
},
{
+ "id": 971,
"subnet": "10.149.132.0/24"
},
{
+ "id": 972,
"subnet": "10.149.133.0/24"
},
#dhcpd-snmp=scclber-ruckus,10.149.134.100-10.149.134.239
{
+ "id": 973,
"subnet": "10.149.134.0/24",
"option-data": [
{
@@ -65468,6 +66441,7 @@
# WANIP for sccouoc not configured
#dhcpd-snmp=sccouoc-cust0,173.230.48.21-173.230.51.254
{
+ "id": 974,
"subnet": "173.230.48.0/22",
"option-data": [
{
@@ -65533,13 +66507,16 @@
]
},
{
+ "id": 975,
"subnet": "10.144.8.0/24"
},
{
+ "id": 976,
"subnet": "10.144.9.0/24"
},
#dhcpd-snmp=sccouoc-ruckus,10.144.10.100-10.144.10.239
{
+ "id": 977,
"subnet": "10.144.10.0/24",
"option-data": [
{
@@ -65587,6 +66564,7 @@
# WANIP for scspcsv not configured
#dhcpd-snmp=scspcsv-cust0,68.180.30.21-68.180.31.254
{
+ "id": 978,
"subnet": "68.180.30.0/23",
"option-data": [
{
@@ -65673,6 +66651,7 @@
},
#dhcpd-snmp=scspcsv-cust1,68.180.58.3-68.180.59.254
{
+ "id": 979,
"subnet": "68.180.58.0/23",
"option-data": [
{
@@ -65738,13 +66717,16 @@
]
},
{
+ "id": 980,
"subnet": "10.149.92.0/24"
},
{
+ "id": 981,
"subnet": "10.149.93.0/24"
},
#dhcpd-snmp=scspcsv-ruckus,10.149.94.100-10.149.94.239
{
+ "id": 982,
"subnet": "10.149.94.0/24",
"option-data": [
{
@@ -65800,6 +66782,7 @@
# WANIP for tnkngak not configured
#dhcpd-snmp=tnkngak-cust0,173.230.96.21-173.230.103.254
{
+ "id": 983,
"subnet": "173.230.96.0/21",
"option-data": [
{
@@ -65865,13 +66848,16 @@
]
},
{
+ "id": 984,
"subnet": "10.144.52.0/24"
},
{
+ "id": 985,
"subnet": "10.144.53.0/24"
},
#dhcpd-snmp=tnkngak-ruckus,10.144.54.100-10.144.54.239
{
+ "id": 986,
"subnet": "10.144.54.0/24",
"option-data": [
{
@@ -65919,6 +66905,7 @@
# WANIP for tnknuhe not configured
#dhcpd-snmp=tnknuhe-cust0,76.10.60.21-76.10.63.254
{
+ "id": 987,
"subnet": "76.10.60.0/22",
"option-data": [
{
@@ -65984,13 +66971,16 @@
]
},
{
+ "id": 988,
"subnet": "10.144.48.0/24"
},
{
+ "id": 989,
"subnet": "10.144.49.0/24"
},
#dhcpd-snmp=tnknuhe-ruckus,10.144.50.100-10.144.50.239
{
+ "id": 990,
"subnet": "10.144.50.0/24",
"option-data": [
{
@@ -66056,6 +67046,7 @@
# WANIP for tnmamar not configured
#dhcpd-snmp=tnmamar-cust0,76.10.58.21-76.10.59.254
{
+ "id": 991,
"subnet": "76.10.58.0/23",
"option-data": [
{
@@ -66122,6 +67113,7 @@
},
#dhcpd-snmp=tnmamar-cust1,76.10.37.3-76.10.37.254
{
+ "id": 992,
"subnet": "76.10.37.0/24",
"option-data": [
{
@@ -66187,13 +67179,16 @@
]
},
{
+ "id": 993,
"subnet": "10.149.68.0/24"
},
{
+ "id": 994,
"subnet": "10.149.69.0/24"
},
#dhcpd-snmp=tnmamar-ruckus,10.149.70.100-10.149.70.239
{
+ "id": 995,
"subnet": "10.149.70.0/24",
"option-data": [
{
@@ -66241,6 +67236,7 @@
# WANIP for tnmesta not configured
#dhcpd-snmp=tnmesta-cust0,68.180.22.21-68.180.23.254
{
+ "id": 996,
"subnet": "68.180.22.0/23",
"option-data": [
{
@@ -66320,13 +67316,16 @@
]
},
{
+ "id": 997,
"subnet": "10.149.96.0/24"
},
{
+ "id": 998,
"subnet": "10.149.97.0/24"
},
#dhcpd-snmp=tnmesta-ruckus,10.149.98.100-10.149.98.239
{
+ "id": 999,
"subnet": "10.149.98.0/24",
"option-data": [
{
@@ -66373,6 +67372,7 @@
# WANIP for tnmucog not configured
#dhcpd-snmp=tnmucog-cust0,216.171.60.21-216.171.63.254
{
+ "id": 1000,
"subnet": "216.171.60.0/22",
"option-data": [
{
@@ -66422,6 +67422,7 @@
},
#dhcpd-snmp=tnmucog-cust1,68.234.181.3-68.234.181.254
{
+ "id": 1001,
"subnet": "68.234.181.0/24",
"option-data": [
{
@@ -66471,6 +67472,7 @@
},
#dhcpd-snmp=tnmucog-cust2,76.10.28.3-76.10.28.254
{
+ "id": 1002,
"subnet": "76.10.28.0/24",
"option-data": [
{
@@ -66519,13 +67521,16 @@
]
},
{
+ "id": 1003,
"subnet": "10.149.76.0/24"
},
{
+ "id": 1004,
"subnet": "10.149.77.0/24"
},
#dhcpd-snmp=tnmucog-ruckus,10.149.78.100-10.149.78.239
{
+ "id": 1005,
"subnet": "10.149.78.0/24",
"option-data": [
{
@@ -66578,6 +67583,7 @@
# WANIP for tnmugro not configured
#dhcpd-snmp=tnmugro-cust0,50.30.164.21-50.30.165.254
{
+ "id": 1006,
"subnet": "50.30.164.0/23",
"option-data": [
{
@@ -66644,6 +67650,7 @@
},
#dhcpd-snmp=tnmugro-cust1,50.30.188.3-50.30.188.254
{
+ "id": 1007,
"subnet": "50.30.188.0/24",
"option-data": [
{
@@ -66717,13 +67724,16 @@
]
},
{
+ "id": 1008,
"subnet": "10.250.60.0/24"
},
{
+ "id": 1009,
"subnet": "10.250.61.0/24"
},
#dhcpd-snmp=tnmugro-ruckus,10.250.62.100-10.250.62.239
{
+ "id": 1010,
"subnet": "10.250.62.0/24",
"option-data": [
{
@@ -66779,6 +67789,7 @@
# WANIP for tnmuung not configured
#dhcpd-snmp=tnmuung-cust0,66.253.216.21-66.253.219.254
{
+ "id": 1011,
"subnet": "66.253.216.0/22",
"option-data": [
{
@@ -66858,13 +67869,16 @@
]
},
{
+ "id": 1012,
"subnet": "10.144.72.0/24"
},
{
+ "id": 1013,
"subnet": "10.144.73.0/24"
},
#dhcpd-snmp=tnmuung-ruckus,10.144.74.100-10.144.74.239
{
+ "id": 1014,
"subnet": "10.144.74.0/24",
"option-data": [
{
@@ -66911,6 +67925,7 @@
# WANIP for tnnapcl not configured
#dhcpd-snmp=tnnapcl-cust0,68.234.187.21-68.234.187.223
{
+ "id": 1015,
"subnet": "68.234.187.0/24",
"option-data": [
{
@@ -69568,6 +70583,7 @@
# include "/etc/dhcp3/dhcp_hosts/tnnapcl.hosts";
#dhcpd-snmp=tnnapcl-cust1,10.180.35.10-10.180.35.254
{
+ "id": 1016,
"subnet": "10.180.35.0/24",
"option-data": [
{
@@ -69633,13 +70649,16 @@
]
},
{
+ "id": 1017,
"subnet": "10.146.196.0/24"
},
{
+ "id": 1018,
"subnet": "10.146.197.0/24"
},
#dhcpd-snmp=tnnapcl-ruckus,10.146.198.100-10.146.198.239
{
+ "id": 1019,
"subnet": "10.146.198.0/24",
"option-data": [
{
@@ -69704,6 +70723,7 @@
# WANIP for txabgro not configured
#dhcpd-snmp=txabgro-cust0,50.30.254.21-50.30.255.254
{
+ "id": 1020,
"subnet": "50.30.254.0/23",
"option-data": [
{
@@ -69783,13 +70803,16 @@
]
},
{
+ "id": 1021,
"subnet": "10.144.92.0/24"
},
{
+ "id": 1022,
"subnet": "10.144.93.0/24"
},
#dhcpd-snmp=txabgro-ruckus,10.144.94.100-10.144.94.239
{
+ "id": 1023,
"subnet": "10.144.94.0/24",
"option-data": [
{
@@ -69851,6 +70874,7 @@
# WANIP for txad102 not configured
#dhcpd-snmp=txad102-cust0,66.253.148.21-66.253.148.254
{
+ "id": 1024,
"subnet": "66.253.148.0/24",
"option-data": [
{
@@ -69917,6 +70941,7 @@
},
#dhcpd-snmp=txad102-ruckus,10.146.228.100-10.146.228.239
{
+ "id": 1025,
"subnet": "10.146.228.0/24",
"option-data": [
{
@@ -69964,6 +70989,7 @@
# WANIP for txadsav not configured
#dhcpd-snmp=txadsav-cust0,173.230.44.21-173.230.47.254
{
+ "id": 1026,
"subnet": "173.230.44.0/22",
"option-data": [
{
@@ -70030,6 +71056,7 @@
},
#dhcpd-snmp=txadsav-ruckus,10.145.96.100-10.145.96.239
{
+ "id": 1027,
"subnet": "10.145.96.0/24",
"option-data": [
{
@@ -70077,6 +71104,7 @@
# WANIP for txarmav not configured
#dhcpd-snmp=txarmav-cust0,96.63.216.21-96.63.219.254
{
+ "id": 1028,
"subnet": "96.63.216.0/22",
"option-data": [
{
@@ -70156,13 +71184,16 @@
]
},
{
+ "id": 1029,
"subnet": "10.145.88.0/24"
},
{
+ "id": 1030,
"subnet": "10.145.89.0/24"
},
#dhcpd-snmp=txarmav-ruckus,10.145.90.100-10.145.90.239
{
+ "id": 1031,
"subnet": "10.145.90.0/24",
"option-data": [
{
@@ -70210,6 +71241,7 @@
# WANIP for txarmid not configured
#dhcpd-snmp=txarmid-cust0,50.30.220.21-50.30.223.254
{
+ "id": 1032,
"subnet": "50.30.220.0/22",
"option-data": [
{
@@ -70283,13 +71315,16 @@
]
},
{
+ "id": 1033,
"subnet": "10.153.20.0/24"
},
{
+ "id": 1034,
"subnet": "10.153.21.0/24"
},
#dhcpd-snmp=txarmid-ruckus,10.153.22.100-10.153.22.239
{
+ "id": 1035,
"subnet": "10.153.22.0/24",
"option-data": [
{
@@ -70337,6 +71372,7 @@
# WANIP for txaudoc not configured
#dhcpd-snmp=txaudoc-cust0,50.30.144.21-50.30.147.254
{
+ "id": 1036,
"subnet": "50.30.144.0/22",
"option-data": [
{
@@ -70412,6 +71448,7 @@
},
#dhcpd-snmp=txaudoc-cust1,50.30.128.3-50.30.128.254
{
+ "id": 1037,
"subnet": "50.30.128.0/24",
"option-data": [
{
@@ -70487,6 +71524,7 @@
},
#dhcpd-snmp=txaudoc-cust2,50.30.150.3-50.30.151.254
{
+ "id": 1038,
"subnet": "50.30.150.0/23",
"option-data": [
{
@@ -70561,13 +71599,16 @@
]
},
{
+ "id": 1039,
"subnet": "10.144.68.0/24"
},
{
+ "id": 1040,
"subnet": "10.144.69.0/24"
},
#dhcpd-snmp=txaudoc-ruckus,10.144.70.100-10.144.70.239
{
+ "id": 1041,
"subnet": "10.144.70.0/24",
"option-data": [
{
@@ -70614,6 +71655,7 @@
# WANIP for txcacol not configured
#dhcpd-snmp=txcacol-cust0,68.180.96.21-68.180.97.254
{
+ "id": 1042,
"subnet": "68.180.96.0/23",
"option-data": [
{
@@ -70687,13 +71729,16 @@
]
},
{
+ "id": 1043,
"subnet": "10.145.36.0/24"
},
{
+ "id": 1044,
"subnet": "10.145.37.0/24"
},
#dhcpd-snmp=txcacol-ruckus,10.145.38.100-10.145.38.239
{
+ "id": 1045,
"subnet": "10.145.38.0/24",
"option-data": [
{
@@ -70741,6 +71786,7 @@
# WANIP for txcsmel not configured
#dhcpd-snmp=txcsmel-cust0,50.30.192.21-50.30.199.254
{
+ "id": 1046,
"subnet": "50.30.192.0/21",
"option-data": [
{
@@ -70806,13 +71852,16 @@
]
},
{
+ "id": 1047,
"subnet": "10.145.44.0/24"
},
{
+ "id": 1048,
"subnet": "10.145.45.0/24"
},
#dhcpd-snmp=txcsmel-ruckus,10.145.46.100-10.145.46.239
{
+ "id": 1049,
"subnet": "10.145.46.0/24",
"option-data": [
{
@@ -70860,6 +71909,7 @@
# WANIP for txcsppl not configured
#dhcpd-snmp=txcsppl-cust0,96.63.236.21-96.63.239.254
{
+ "id": 1050,
"subnet": "96.63.236.0/22",
"option-data": [
{
@@ -70933,13 +71983,16 @@
]
},
{
+ "id": 1051,
"subnet": "10.145.92.0/24"
},
{
+ "id": 1052,
"subnet": "10.145.93.0/24"
},
#dhcpd-snmp=txcsppl-ruckus,10.145.94.100-10.145.94.239
{
+ "id": 1053,
"subnet": "10.145.94.0/24",
"option-data": [
{
@@ -70987,6 +72040,7 @@
# WANIP for txhuuhl not configured
#dhcpd-snmp=txhuuhl-cust0,68.234.172.21-68.234.175.254
{
+ "id": 1054,
"subnet": "68.234.172.0/22",
"option-data": [
{
@@ -71053,6 +72107,7 @@
},
#dhcpd-snmp=txhuuhl-cust1,66.253.158.3-66.253.159.254
{
+ "id": 1055,
"subnet": "66.253.158.0/23",
"option-data": [
{
@@ -71141,13 +72196,16 @@
]
},
{
+ "id": 1056,
"subnet": "10.145.56.0/24"
},
{
+ "id": 1057,
"subnet": "10.145.57.0/24"
},
#dhcpd-snmp=txhuuhl-ruckus,10.145.58.100-10.145.58.239
{
+ "id": 1058,
"subnet": "10.145.58.0/24",
"option-data": [
{
@@ -71195,6 +72253,7 @@
# WANIP for txkiipl not configured
#dhcpd-snmp=txkiipl-cust0,71.42.232.21-71.42.235.254
{
+ "id": 1059,
"subnet": "71.42.232.0/22",
"option-data": [
{
@@ -71260,13 +72319,16 @@
]
},
{
+ "id": 1060,
"subnet": "10.145.80.0/24"
},
{
+ "id": 1061,
"subnet": "10.145.81.0/24"
},
#dhcpd-snmp=txkiipl-ruckus,10.145.82.100-10.145.82.239
{
+ "id": 1062,
"subnet": "10.145.82.0/24",
"option-data": [
{
@@ -71313,6 +72375,7 @@
# WANIP for txlugro not configured
#dhcpd-snmp=txlugro-cust0,68.180.14.21-68.180.15.254
{
+ "id": 1063,
"subnet": "68.180.14.0/23",
"option-data": [
{
@@ -71386,13 +72449,16 @@
]
},
{
+ "id": 1064,
"subnet": "10.144.100.0/24"
},
{
+ "id": 1065,
"subnet": "10.144.101.0/24"
},
#dhcpd-snmp=txlugro-ruckus,10.144.102.100-10.144.102.239
{
+ "id": 1066,
"subnet": "10.144.102.0/24",
"option-data": [
{
@@ -71440,6 +72506,7 @@
# WANIP for txlures not configured
#dhcpd-snmp=txlures-cust0,68.234.216.21-68.234.223.254
{
+ "id": 1067,
"subnet": "68.234.216.0/21",
"option-data": [
{
@@ -71488,13 +72555,16 @@
]
},
{
+ "id": 1068,
"subnet": "10.145.52.0/24"
},
{
+ "id": 1069,
"subnet": "10.145.53.0/24"
},
#dhcpd-snmp=txlures-ruckus,10.145.54.100-10.145.54.239
{
+ "id": 1070,
"subnet": "10.145.54.0/24",
"option-data": [
{
@@ -71542,6 +72612,7 @@
# WANIP for txlutop not configured
#dhcpd-snmp=txlutop-cust0,173.230.88.21-173.230.91.254
{
+ "id": 1071,
"subnet": "173.230.88.0/22",
"option-data": [
{
@@ -71607,13 +72678,16 @@
]
},
{
+ "id": 1072,
"subnet": "10.144.24.0/24"
},
{
+ "id": 1073,
"subnet": "10.144.25.0/24"
},
#dhcpd-snmp=txlutop-ruckus,10.144.26.100-10.144.26.239
{
+ "id": 1074,
"subnet": "10.144.26.0/24",
"option-data": [
{
@@ -71679,6 +72753,7 @@
# WANIP for txsaavp not configured
#dhcpd-snmp=txsaavp-cust0,173.230.40.21-173.230.43.254
{
+ "id": 1075,
"subnet": "173.230.40.0/22",
"option-data": [
{
@@ -71758,13 +72833,16 @@
]
},
{
+ "id": 1076,
"subnet": "10.145.48.0/24"
},
{
+ "id": 1077,
"subnet": "10.145.49.0/24"
},
#dhcpd-snmp=txsaavp-ruckus,10.145.50.100-10.145.50.239
{
+ "id": 1078,
"subnet": "10.145.50.0/24",
"option-data": [
{
@@ -71812,6 +72890,7 @@
# WANIP for txstgro not configured
#dhcpd-snmp=txstgro-cust0,50.30.166.21-50.30.167.254
{
+ "id": 1079,
"subnet": "50.30.166.0/23",
"option-data": [
{
@@ -71886,6 +72965,7 @@
},
#dhcpd-snmp=txstgro-cust1,50.30.189.3-50.30.189.254
{
+ "id": 1080,
"subnet": "50.30.189.0/24",
"option-data": [
{
@@ -71951,13 +73031,16 @@
]
},
{
+ "id": 1081,
"subnet": "10.250.68.0/24"
},
{
+ "id": 1082,
"subnet": "10.250.69.0/24"
},
#dhcpd-snmp=txstgro-ruckus,10.250.70.100-10.250.70.239
{
+ "id": 1083,
"subnet": "10.250.70.0/24",
"option-data": [
{
@@ -72004,6 +73087,7 @@
# WANIP for txwagro not configured
#dhcpd-snmp=txwagro-cust0,50.30.168.21-50.30.169.254
{
+ "id": 1084,
"subnet": "50.30.168.0/23",
"option-data": [
{
@@ -72078,6 +73162,7 @@
},
#dhcpd-snmp=txwagro-cust1,50.30.190.3-50.30.190.254
{
+ "id": 1085,
"subnet": "50.30.190.0/24",
"option-data": [
{
@@ -72143,13 +73228,16 @@
]
},
{
+ "id": 1086,
"subnet": "10.250.72.0/24"
},
{
+ "id": 1087,
"subnet": "10.250.73.0/24"
},
#dhcpd-snmp=txwagro-ruckus,10.250.74.100-10.250.74.239
{
+ "id": 1088,
"subnet": "10.250.74.0/24",
"option-data": [
{
@@ -72197,6 +73285,7 @@
# WANIP for txwfgro not configured
#dhcpd-snmp=txwfgro-cust0,68.180.12.21-68.180.13.254
{
+ "id": 1089,
"subnet": "68.180.12.0/23",
"option-data": [
{
@@ -72276,13 +73365,16 @@
]
},
{
+ "id": 1090,
"subnet": "10.144.96.0/24"
},
{
+ "id": 1091,
"subnet": "10.144.97.0/24"
},
#dhcpd-snmp=txwfgro-ruckus,10.144.98.100-10.144.98.239
{
+ "id": 1092,
"subnet": "10.144.98.0/24",
"option-data": [
{
@@ -72342,10 +73434,12 @@
"subnet4": [
# include "/etc/dhcp3/folder.dhcpd/events.dhcpd";
{
+ "id": 1093,
"subnet": "76.77.35.197/32"
},
#dhcpd-snmp=vachgac-cust0,10.16.8.21-10.16.11.254
{
+ "id": 1094,
"subnet": "10.16.8.0/22",
"option-data": [
{
@@ -72411,13 +73505,16 @@
]
},
{
+ "id": 1095,
"subnet": "10.148.36.0/24"
},
{
+ "id": 1096,
"subnet": "10.148.37.0/24"
},
#dhcpd-snmp=vachgac-ruckus,10.148.38.100-10.148.38.239
{
+ "id": 1097,
"subnet": "10.148.38.0/24",
"option-data": [
{
@@ -72465,6 +73562,7 @@
# WANIP for vanodod not configured
#dhcpd-snmp=vanodod-cust0,173.230.0.21-173.230.7.254
{
+ "id": 1098,
"subnet": "173.230.0.0/21",
"option-data": [
{
@@ -72545,6 +73643,7 @@
},
#dhcpd-snmp=vanodod-cust1,66.253.180.3-66.253.180.254
{
+ "id": 1099,
"subnet": "66.253.180.0/24",
"option-data": [
{
@@ -72624,13 +73723,16 @@
]
},
{
+ "id": 1100,
"subnet": "10.149.148.0/24"
},
{
+ "id": 1101,
"subnet": "10.149.149.0/24"
},
#dhcpd-snmp=vanodod-ruckus,10.149.150.100-10.149.150.239
{
+ "id": 1102,
"subnet": "10.149.150.0/24",
"option-data": [
{
@@ -72678,6 +73780,7 @@
# WANIP for wachgro not configured
#dhcpd-snmp=wachgro-cust0,50.30.158.21-50.30.159.254
{
+ "id": 1103,
"subnet": "50.30.158.0/23",
"option-data": [
{
@@ -72752,6 +73855,7 @@
},
#dhcpd-snmp=wachgro-cust1,50.30.185.3-50.30.185.254
{
+ "id": 1104,
"subnet": "50.30.185.0/24",
"option-data": [
{
@@ -72817,13 +73921,16 @@
]
},
{
+ "id": 1105,
"subnet": "10.250.32.0/24"
},
{
+ "id": 1106,
"subnet": "10.250.33.0/24"
},
#dhcpd-snmp=wachgro-ruckus,10.250.34.100-10.250.34.239
{
+ "id": 1107,
"subnet": "10.250.34.0/24",
"option-data": [
{
@@ -72870,6 +73977,7 @@
# WANIP for wapugro not configured
#dhcpd-snmp=wapugro-cust0,68.234.244.21-68.234.247.254
{
+ "id": 1108,
"subnet": "68.234.244.0/22",
"option-data": [
{
@@ -72935,13 +74043,16 @@
]
},
{
+ "id": 1109,
"subnet": "10.150.20.0/24"
},
{
+ "id": 1110,
"subnet": "10.150.21.0/24"
},
#dhcpd-snmp=wapugro-ruckus,10.150.22.100-10.150.22.239
{
+ "id": 1111,
"subnet": "10.150.22.0/24",
"option-data": [
{
@@ -73006,6 +74117,7 @@
# WANIP for wvmodis not configured
#dhcpd-snmp=wvmodis-cust0,66.253.232.21-66.253.235.254
{
+ "id": 1112,
"subnet": "66.253.232.0/22",
"option-data": [
{
@@ -73074,6 +74186,7 @@
},
#dhcpd-snmp=wvmodis-cust1,66.253.242.3-66.253.243.254
{
+ "id": 1113,
"subnet": "66.253.242.0/23",
"option-data": [
{
@@ -73121,13 +74234,16 @@
]
},
{
+ "id": 1114,
"subnet": "10.149.48.0/24"
},
{
+ "id": 1115,
"subnet": "10.149.49.0/24"
},
#dhcpd-snmp=wvmodis-ruckus,10.149.50.100-10.149.50.239
{
+ "id": 1116,
"subnet": "10.149.50.0/24",
"option-data": [
{
@@ -73173,6 +74289,7 @@
# WANIP for flhltwc not configured
## Cable Modem Subnet -
{
+ "id": 1117,
"subnet": "10.149.184.0/22",
"option-data": [
### General Options
@@ -74325,6 +75442,7 @@
/// End file dhcp3/cmts/host_includes/flhltwc.hosts
#dhcpd-snmp=flhltwc-cust0,68.234.252.21-68.234.252.254
{
+ "id": 1118,
"subnet": "68.234.252.0/24",
"option-data": [
{
@@ -74392,6 +75510,7 @@
},
#dhcpd-snmp=flhltwc-cust1,68.234.253.3-68.234.253.254
{
+ "id": 1119,
"subnet": "68.234.253.0/24",
"option-data": [
{
@@ -74459,6 +75578,7 @@
},
#dhcpd-snmp=flhltwc-cust2,68.234.255.3-68.234.255.254
{
+ "id": 1120,
"subnet": "68.234.255.0/24",
"option-data": [
{
@@ -74533,6 +75653,7 @@
"subnet4": [
## Cable Modem Subnet -
{
+ "id": 1121,
"subnet": "10.149.183.0/24",
"option-data": [
### General Options
@@ -74725,6 +75846,7 @@
/// End file dhcp3/cmts/host_includes/garwwct.hosts
# OUTLIERS
{
+ "id": 1122,
"subnet": "68.234.131.128/25",
"option-data": [
{
@@ -74798,6 +75920,7 @@
"subnet4": [
## Cable Modem Subnet - 10.159.12.0/24
{
+ "id": 1123,
"subnet": "10.160.252.0/24",
"option-data": [
### General Options
@@ -74896,6 +76019,7 @@
},
/// End file dhcp3/cmts/host_includes/ilcunocubr.hosts
{
+ "id": 1124,
"subnet": "66.253.183.128/27",
"option-data": [
{
@@ -74956,10 +76080,12 @@
"name": "ilcudevubr",
"subnet4": [
{
+ "id": 1125,
"subnet": "66.253.201.135/32"
},
## Cable Modem Subnet - 10.160.248.0/22
{
+ "id": 1126,
"subnet": "10.160.248.0/22",
"option-data": [
### General Options
@@ -75038,6 +76164,7 @@
},
/// End file dhcp3/cmts/host_includes/ilcudevubr.hosts
{
+ "id": 1127,
"subnet": "66.253.201.144/28",
"option-data": [
{
@@ -75098,10 +76225,12 @@
"name": "njedbva",
"subnet4": [
{
+ "id": 1128,
"subnet": "75.127.196.210/32"
},
## Cable Modem Subnet -
{
+ "id": 1129,
"subnet": "10.160.16.0/24",
"option-data": [
### General Options
@@ -75219,6 +76348,7 @@
/// End file dhcp3/cmts/host_includes/njedbva.hosts
# OUTLIERS
{
+ "id": 1130,
"subnet": "10.160.18.0/24",
"option-data": [
{
@@ -75291,10 +76421,12 @@
"name": "njeddhw",
"subnet4": [
{
+ "id": 1131,
"subnet": "108.58.173.234/32"
},
## Cable Modem Subnet -
{
+ "id": 1132,
"subnet": "10.160.28.0/24",
"option-data": [
### General Options
@@ -75462,6 +76594,7 @@
/// End file dhcp3/cmts/host_includes/njeddhw.hosts
# NAT USERS
{
+ "id": 1133,
"subnet": "10.160.30.0/23",
"option-data": [
{
@@ -75544,10 +76677,12 @@
"name": "njedvcm",
"subnet4": [
{
+ "id": 1134,
"subnet": "75.127.196.210/32"
},
## Cable Modem Subnet -
{
+ "id": 1135,
"subnet": "10.160.32.0/24",
"option-data": [
### General Options
@@ -75650,6 +76785,7 @@
/// End file dhcp3/cmts/host_includes/njedvcm.hosts
# OUTLIERS
{
+ "id": 1136,
"subnet": "10.160.34.0/24",
"option-data": [
{
@@ -75722,10 +76858,12 @@
"name": "njklklr",
"subnet4": [
{
+ "id": 1137,
"subnet": "173.220.142.98/32"
},
## Cable Modem Subnet -
{
+ "id": 1138,
"subnet": "10.160.24.0/24",
"option-data": [
### General Options
@@ -75803,6 +76941,7 @@
#include "dhcp3/cmts/host_includes/njklklr.hosts";
# OUTLIERS
{
+ "id": 1139,
"subnet": "10.160.26.0/24",
"option-data": [
{
@@ -75876,6 +77015,7 @@
"subnet4": [
## Cable Modem Subnet -
{
+ "id": 1140,
"subnet": "10.146.8.0/24",
"option-data": [
### General Options
@@ -75978,6 +77118,7 @@
/// End file dhcp3/cmts/host_includes/njucthr.hosts
# OUTLIERS
{
+ "id": 1141,
"subnet": "66.253.247.128/25",
"option-data": [
{
@@ -76045,6 +77186,7 @@
"subnet4": [
## Cable Modem Subnet -
{
+ "id": 1142,
"subnet": "10.146.12.0/24",
"option-data": [
### General Options
@@ -76123,6 +77265,7 @@
# include "dhcp3/cmts/host_includes/nynytrg.hosts";
# OUTLIERS
{
+ "id": 1143,
"subnet": "173.230.70.0/25",
"option-data": [
{
@@ -76190,6 +77333,7 @@
"subnet4": [
## Cable Modem Subnet -
{
+ "id": 1144,
"subnet": "10.160.44.0/22",
"option-data": [
### General Options
@@ -76266,6 +77410,7 @@
},
#include "dhcp3/cmts/host_includes/alphgrp.hosts";
{
+ "id": 1145,
"subnet": "66.253.224.0/22",
"option-data": [
{
diff --git a/keama/tests/fordhcp/kea.json b/keama/tests/fordhcp/kea.json
index eb55c4a2..b756a41f 100644
--- a/keama/tests/fordhcp/kea.json
+++ b/keama/tests/fordhcp/kea.json
@@ -162,6 +162,7 @@
// /// This feature is not supported by Kea
// /// Skipping the subnet only partially simulates it
// {
+// "id": 1,
// "subnet": "149.20.48.0/25"
// },
// # 187-net is all but dead
@@ -169,6 +170,7 @@
// /// This feature is not supported by Kea
// /// Skipping the subnet only partially simulates it
// {
+// "id": 2,
// "subnet": "204.152.187.0/24"
// },
// # QuickBooks/GreatPlains VLAN
@@ -176,6 +178,7 @@
// /// This feature is not supported by Kea
// /// Skipping the subnet only partially simulates it
// {
+// "id": 3,
// "subnet": "149.20.48.128/28"
// },
// # Device management VLAN
@@ -183,6 +186,7 @@
// /// This feature is not supported by Kea
// /// Skipping the subnet only partially simulates it
// {
+// "id": 4,
// "subnet": "149.20.60.0/24"
// },
/// Begin file fordhcp/dhcpd.voip.conf
@@ -191,6 +195,7 @@
# two systems without modifications.
#
{
+ "id": 5,
"subnet": "204.152.185.128/26",
"option-data": [
{
@@ -234,6 +239,7 @@
# two systems without modifications.
#
{
+ "id": 6,
"subnet": "204.152.189.0/26",
"option-data": [
{
@@ -304,6 +310,7 @@
# to /etc between these two systems without modifications.
#
{
+ "id": 7,
"subnet": "149.20.50.192/26",
"option-data": [
{
@@ -355,6 +362,7 @@
]
},
{
+ "id": 8,
"subnet": "149.20.50.0/25",
"option-data": [
{
@@ -492,6 +500,7 @@
# two systems without modifications.
#
{
+ "id": 9,
"subnet": "149.20.50.128/26",
"option-data": [
{
@@ -648,6 +657,7 @@
]
},
{
+ "id": 10,
"subnet": "149.20.49.224/27",
"option-data": [
{
diff --git a/keama/tests/gcet/kea.json b/keama/tests/gcet/kea.json
index 6edf1636..be52417e 100644
--- a/keama/tests/gcet/kea.json
+++ b/keama/tests/gcet/kea.json
@@ -24,6 +24,7 @@
],
"subnet4": [
{
+ "id": 1,
"subnet": "192.168.12.0/24",
"pools": [
{
diff --git a/keama/tests/grouphost4.out b/keama/tests/grouphost4.out
index 775fdb18..31e15f20 100644
--- a/keama/tests/grouphost4.out
+++ b/keama/tests/grouphost4.out
@@ -7,6 +7,7 @@
"subnet4": [
# subnet4 declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
{
@@ -48,6 +49,7 @@
]
},
{
+ "id": 2,
"subnet": "10.10.10.0/27",
"reservations": [
// {
diff --git a/keama/tests/groupsubnet4.out b/keama/tests/groupsubnet4.out
index 70f63c3e..5c6a83d2 100644
--- a/keama/tests/groupsubnet4.out
+++ b/keama/tests/groupsubnet4.out
@@ -11,6 +11,7 @@
"subnet4": [
# DHCPv4 subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
# at least one pool is required
diff --git a/keama/tests/groupsubnet6.out b/keama/tests/groupsubnet6.out
index 49c924bd..88f7cb4f 100644
--- a/keama/tests/groupsubnet6.out
+++ b/keama/tests/groupsubnet6.out
@@ -11,6 +11,7 @@
"subnet6": [
# DHCPv4 subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"pools": [
# at least one pool is required
diff --git a/keama/tests/hostidentifier4.outL b/keama/tests/hostidentifier4.outL
index c56ef414..6b167cd5 100644
--- a/keama/tests/hostidentifier4.outL
+++ b/keama/tests/hostidentifier4.outL
@@ -7,6 +7,7 @@
"subnet4": [
# subnet4 declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
{
@@ -42,6 +43,7 @@
]
},
{
+ "id": 2,
"subnet": "10.10.10.0/27",
"reservations": [
// {
@@ -68,7 +70,7 @@
/// The flexible host identifier is a premium feature
"hooks-libraries": [
{
- "library": "/path/libdhcp_flex_id.so",
+ "library": "/tmp/kea/premium/src/hooks/dhcp/flex_id/.libs/libdhcp_flex_id.so",
"parameters": {
"identifier-expression": "option[250].hex"
}
diff --git a/keama/tests/hostname4.out b/keama/tests/hostname4.out
index d4ec3704..7414c9f1 100644
--- a/keama/tests/hostname4.out
+++ b/keama/tests/hostname4.out
@@ -7,6 +7,7 @@
"subnet4": [
# subnet4 declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
{
diff --git a/keama/tests/hostuid4.out b/keama/tests/hostuid4.out
index ca941463..707974b7 100644
--- a/keama/tests/hostuid4.out
+++ b/keama/tests/hostuid4.out
@@ -7,6 +7,7 @@
"subnet4": [
# subnet4 declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
{
@@ -42,6 +43,7 @@
]
},
{
+ "id": 2,
"subnet": "10.10.10.0/27",
"reservations": [
// {
diff --git a/keama/tests/ipaddrhost4.out b/keama/tests/ipaddrhost4.out
index cd804bba..f30f82ec 100644
--- a/keama/tests/ipaddrhost4.out
+++ b/keama/tests/ipaddrhost4.out
@@ -9,6 +9,7 @@
],
"subnet4": [
{
+ "id": 1,
"subnet": "149.20.64.0/25",
"reservations": [
{
diff --git a/keama/tests/optdatagrouppool4.out b/keama/tests/optdatagrouppool4.out
index bf96172b..5ce641cc 100644
--- a/keama/tests/optdatagrouppool4.out
+++ b/keama/tests/optdatagrouppool4.out
@@ -8,6 +8,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
# pool declaration
diff --git a/keama/tests/optiondatapool4.out b/keama/tests/optiondatapool4.out
index b03fa2d9..5e5f8e3b 100644
--- a/keama/tests/optiondatapool4.out
+++ b/keama/tests/optiondatapool4.out
@@ -7,6 +7,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
# pool declaration
diff --git a/keama/tests/optiondatapool6.out b/keama/tests/optiondatapool6.out
index 5e133580..dca73457 100644
--- a/keama/tests/optiondatapool6.out
+++ b/keama/tests/optiondatapool6.out
@@ -7,6 +7,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"pools": [
# pool declaration
diff --git a/keama/tests/permitauth4.out b/keama/tests/permitauth4.out
index 539ec5b0..35d13df7 100644
--- a/keama/tests/permitauth4.out
+++ b/keama/tests/permitauth4.out
@@ -8,6 +8,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
# pool declaration
diff --git a/keama/tests/permitauth6.out b/keama/tests/permitauth6.out
index ffa42e79..66240da6 100644
--- a/keama/tests/permitauth6.out
+++ b/keama/tests/permitauth6.out
@@ -8,6 +8,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"pools": [
# pool declaration
diff --git a/keama/tests/pool4.out b/keama/tests/pool4.out
index d30f294f..e6398bb2 100644
--- a/keama/tests/pool4.out
+++ b/keama/tests/pool4.out
@@ -7,6 +7,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
/// valid-lifetime moved from an internal pool scope
"valid-lifetime": 1800,
diff --git a/keama/tests/pool42.out b/keama/tests/pool42.out
index f1e7f84e..087f0f8b 100644
--- a/keama/tests/pool42.out
+++ b/keama/tests/pool42.out
@@ -5,6 +5,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
/// valid-lifetime moved from an internal pool scope
"valid-lifetime": 1800,
diff --git a/keama/tests/pool6.out b/keama/tests/pool6.out
index ff17815d..9b299499 100644
--- a/keama/tests/pool6.out
+++ b/keama/tests/pool6.out
@@ -7,6 +7,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
/// valid-lifetime moved from an internal pool scope
"valid-lifetime": 1800,
diff --git a/keama/tests/preferred6.out b/keama/tests/preferred6.out
index 241209a8..56736ad2 100644
--- a/keama/tests/preferred6.out
+++ b/keama/tests/preferred6.out
@@ -10,6 +10,7 @@
"subnet6": [
# embedded in pool
{
+ "id": 1,
"subnet": "2001::/64",
"preferred-lifetime": 1800,
"renew-timer": 900,
diff --git a/keama/tests/prefix6.out b/keama/tests/prefix6.out
index e3d73625..3647c090 100644
--- a/keama/tests/prefix6.out
+++ b/keama/tests/prefix6.out
@@ -7,6 +7,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"option-data": [
# range declaration
diff --git a/keama/tests/prefix62.out b/keama/tests/prefix62.out
index 31f289bc..b693300a 100644
--- a/keama/tests/prefix62.out
+++ b/keama/tests/prefix62.out
@@ -5,6 +5,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"option-data": [
# range declaration
diff --git a/keama/tests/range4.out b/keama/tests/range4.out
index cb03165f..887d29ca 100644
--- a/keama/tests/range4.out
+++ b/keama/tests/range4.out
@@ -7,6 +7,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"option-data": [
# range declaration
diff --git a/keama/tests/range6.out b/keama/tests/range6.out
index f02405b9..d1b3bbd8 100644
--- a/keama/tests/range6.out
+++ b/keama/tests/range6.out
@@ -5,6 +5,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"option-data": [
# range declaration
diff --git a/keama/tests/samples/example.json b/keama/tests/samples/example.json
index 3ae88b75..da6de995 100644
--- a/keama/tests/samples/example.json
+++ b/keama/tests/samples/example.json
@@ -45,10 +45,12 @@
# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.
{
+ "id": 1,
"subnet": "10.152.187.0/24"
},
# This is a very basic subnet declaration.
{
+ "id": 2,
"subnet": "10.254.239.0/27",
"pools": [
{
@@ -68,6 +70,7 @@
# This declaration allows BOOTP clients to get dynamic addresses,
# which we don't really recommend.
{
+ "id": 3,
"subnet": "10.254.239.32/27",
"pools": [
{
@@ -92,6 +95,7 @@
},
# A slightly different configuration for an internal subnet.
{
+ "id": 4,
"subnet": "10.5.5.0/27",
"pools": [
{
@@ -188,6 +192,7 @@
"name": "224-29",
"subnet4": [
{
+ "id": 5,
"subnet": "10.17.224.0/24",
"option-data": [
# option routers rtr-224.example.org;
@@ -208,6 +213,7 @@
]
},
{
+ "id": 6,
"subnet": "10.0.29.0/24",
"option-data": [
# option routers rtr-29.example.org;
diff --git a/keama/tests/samples/simple.json b/keama/tests/samples/simple.json
index b2f3b7cc..b3762de2 100644
--- a/keama/tests/samples/simple.json
+++ b/keama/tests/samples/simple.json
@@ -32,11 +32,13 @@
# the DHCP server about it so it understands it's there and
# not to hand out leases for it.
{
+ "id": 1,
"subnet": "10.14.8.195/24"
},
# But we do want to hand out leases for the 192.168.1.0/24
# network for purposes of this test..
{
+ "id": 2,
"subnet": "192.168.1.0/24",
"pools": [
{
diff --git a/keama/tests/samples/test-a6.json b/keama/tests/samples/test-a6.json
index 9388e805..ca8c851a 100644
--- a/keama/tests/samples/test-a6.json
+++ b/keama/tests/samples/test-a6.json
@@ -80,6 +80,7 @@
#}
# XXX: for testing
{
+ "id": 1,
"subnet": "3ffe:aaaa:aaaa:aaaa::/64",
"reservations": [
#
diff --git a/keama/tests/samples/vmnet8.json b/keama/tests/samples/vmnet8.json
index 9aaea7fb..8741ce45 100644
--- a/keama/tests/samples/vmnet8.json
+++ b/keama/tests/samples/vmnet8.json
@@ -41,6 +41,7 @@
"subnet4": [
# default is 2 hours
{
+ "id": 1,
"subnet": "172.16.254.0/24",
"pools": [
{
diff --git a/keama/tests/shareone4.out b/keama/tests/shareone4.out
index edcdf698..a8db65e8 100644
--- a/keama/tests/shareone4.out
+++ b/keama/tests/shareone4.out
@@ -10,6 +10,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"valid-lifetime": 3600,
"option-data": [
diff --git a/keama/tests/shareone6.out b/keama/tests/shareone6.out
index 9d875677..ea4a4c81 100644
--- a/keama/tests/shareone6.out
+++ b/keama/tests/shareone6.out
@@ -10,6 +10,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"valid-lifetime": 3600,
"pools": [
diff --git a/keama/tests/sharepools4.out b/keama/tests/sharepools4.out
index 57ee320c..2b3b170b 100644
--- a/keama/tests/sharepools4.out
+++ b/keama/tests/sharepools4.out
@@ -15,6 +15,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"valid-lifetime": 3600,
"option-data": [
@@ -35,6 +36,7 @@
},
# second subnet declaration
{
+ "id": 2,
"subnet": "10.10.10.0/27",
"pools": [
{
diff --git a/keama/tests/sharetwo4.out b/keama/tests/sharetwo4.out
index 2028e65e..78330cba 100644
--- a/keama/tests/sharetwo4.out
+++ b/keama/tests/sharetwo4.out
@@ -15,6 +15,7 @@
"subnet4": [
# subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"valid-lifetime": 3600,
"option-data": [
@@ -35,6 +36,7 @@
},
# second subnet declaration
{
+ "id": 2,
"subnet": "10.10.10.0/27",
"pools": [
# pool inside the subnet
diff --git a/keama/tests/sharetwo6.out b/keama/tests/sharetwo6.out
index 5c4e63df..51e3c1b7 100644
--- a/keama/tests/sharetwo6.out
+++ b/keama/tests/sharetwo6.out
@@ -15,6 +15,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"valid-lifetime": 3600,
"pools": [
@@ -26,6 +27,7 @@
},
# second subnet declaration
{
+ "id": 2,
"subnet": "2002::/64",
"pd-pools": [
{
diff --git a/keama/tests/subnet4.out b/keama/tests/subnet4.out
index 40b751da..3e8a2b8e 100644
--- a/keama/tests/subnet4.out
+++ b/keama/tests/subnet4.out
@@ -8,6 +8,7 @@
"subnet4": [
# DHCPv4 subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
# at least one pool is required
diff --git a/keama/tests/subnet4auth.out b/keama/tests/subnet4auth.out
index 40b751da..3e8a2b8e 100644
--- a/keama/tests/subnet4auth.out
+++ b/keama/tests/subnet4auth.out
@@ -8,6 +8,7 @@
"subnet4": [
# DHCPv4 subnet declaration
{
+ "id": 1,
"subnet": "10.5.5.0/27",
"pools": [
# at least one pool is required
diff --git a/keama/tests/subnet4noauth.out b/keama/tests/subnet4noauth.out
index 08370357..d8907ce6 100644
--- a/keama/tests/subnet4noauth.out
+++ b/keama/tests/subnet4noauth.out
@@ -9,6 +9,7 @@
// /// This feature is not supported by Kea
// /// Skipping the subnet only partially simulates it
// {
+// "id": 1,
// "subnet": "10.5.5.0/27",
// "pools": [
// # at least one pool is required
diff --git a/keama/tests/subnet6.out b/keama/tests/subnet6.out
index d25a8448..2f03ab06 100644
--- a/keama/tests/subnet6.out
+++ b/keama/tests/subnet6.out
@@ -8,6 +8,7 @@
"subnet6": [
# DHCPv4 subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"pools": [
# at least one pool is required
diff --git a/keama/tests/subnet6auth.out b/keama/tests/subnet6auth.out
index 8e1c867b..b4c639b3 100644
--- a/keama/tests/subnet6auth.out
+++ b/keama/tests/subnet6auth.out
@@ -6,6 +6,7 @@
"subnet6": [
# DHCPv4 subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"pools": [
# at least one pool is required
diff --git a/keama/tests/subnet6multi.out b/keama/tests/subnet6multi.out
index 03eaff44..a1b6d56f 100644
--- a/keama/tests/subnet6multi.out
+++ b/keama/tests/subnet6multi.out
@@ -8,6 +8,7 @@
"subnet6": [
# DHCPv4 subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"pd-pools": [
{
diff --git a/keama/tests/subnet6noauth.out b/keama/tests/subnet6noauth.out
index f1ee8dbb..34721072 100644
--- a/keama/tests/subnet6noauth.out
+++ b/keama/tests/subnet6noauth.out
@@ -11,6 +11,7 @@
// /// This feature is not supported by Kea
// /// Skipping the subnet only partially simulates it
// {
+// "id": 1,
// "subnet": "2001::/64",
// "pools": [
// # at least one pool is required
diff --git a/keama/tests/subnet6one.out b/keama/tests/subnet6one.out
index 6e877d3a..2a433ad5 100644
--- a/keama/tests/subnet6one.out
+++ b/keama/tests/subnet6one.out
@@ -6,6 +6,7 @@
"subnet6": [
# DHCPv4 subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"pd-pools": [
# at least one pool is required
diff --git a/keama/tests/temporary6.out b/keama/tests/temporary6.out
index 395451ac..10845ea3 100644
--- a/keama/tests/temporary6.out
+++ b/keama/tests/temporary6.out
@@ -7,6 +7,7 @@
"subnet6": [
# subnet declaration
{
+ "id": 1,
"subnet": "2001::/64",
"option-data": [
# range declaration
diff --git a/keama/tests/ws/kea.json b/keama/tests/ws/kea.json
index a8e51b75..02913faf 100644
--- a/keama/tests/ws/kea.json
+++ b/keama/tests/ws/kea.json
@@ -233,6 +233,7 @@
// },
"subnet4": [
{
+ "id": 1,
"subnet": "173.185.12.0/22",
"pools": [
{
@@ -280,6 +281,7 @@
// ]
},
{
+ "id": 23,
"subnet": "207.155.96.0/19",
"pools": [
{
@@ -407,6 +409,7 @@
]
},
{
+ "id": 34,
"subnet": "69.30.134.0/23",
"pools": [
{
@@ -441,6 +444,7 @@
]
},
{
+ "id": 35,
"subnet": "69.30.131.224/27",
"pools": [
{
@@ -475,6 +479,7 @@
]
},
{
+ "id": 36,
"subnet": "69.30.132.64/26",
"pools": [
{
@@ -509,6 +514,7 @@
]
},
{
+ "id": 49,
"subnet": "173.185.80.0/20",
"pools": [
{
@@ -537,6 +543,7 @@
]
},
{
+ "id": 50,
"subnet": "162.40.36.0/22",
"pools": [
{
@@ -565,6 +572,7 @@
]
},
{
+ "id": 51,
"subnet": "69.30.132.128/26",
"pools": [
{
@@ -603,6 +611,7 @@
]
},
{
+ "id": 56,
"subnet": "173.185.24.0/21",
"pools": [
{
@@ -631,6 +640,7 @@
]
},
{
+ "id": 76,
"subnet": "173.184.144.0/20",
"pools": [
{
@@ -659,6 +669,7 @@
]
},
{
+ "id": 146,
"subnet": "98.22.0.0/20",
"pools": [
{
@@ -848,6 +859,7 @@
// }
},
{
+ "id": 147,
"subnet": "98.19.113.0/24",
"pools": [
{
@@ -1018,6 +1030,7 @@
// }
},
{
+ "id": 148,
"subnet": "98.19.112.0/24",
"pools": [
{
@@ -1188,6 +1201,7 @@
// }
},
{
+ "id": 149,
"subnet": "98.19.110.0/24",
"pools": [
{
@@ -1358,6 +1372,7 @@
// }
},
{
+ "id": 150,
"subnet": "75.90.252.0/24",
"pools": [
{
@@ -1528,6 +1543,7 @@
// }
},
{
+ "id": 161,
"subnet": "173.188.165.0/24",
"pools": [
{
@@ -1544,6 +1560,7 @@
]
},
{
+ "id": 162,
"subnet": "166.82.20.0/26",
"option-data": [
{
@@ -1617,6 +1634,7 @@
]
},
{
+ "id": 196,
"subnet": "166.82.20.64/26",
"option-data": [
{
@@ -1770,6 +1788,7 @@
// }
},
{
+ "id": 197,
"subnet": "166.82.20.128/26",
"option-data": [
{
@@ -1930,6 +1949,7 @@
]
},
{
+ "id": 198,
"subnet": "166.82.83.128/27",
"option-data": [
{
@@ -2100,6 +2120,7 @@
]
},
{
+ "id": 206,
"subnet": "166.82.182.64/26",
"option-data": [
{
@@ -2355,6 +2376,7 @@
]
},
{
+ "id": 217,
"subnet": "166.82.112.0/26",
"option-data": [
{
@@ -2615,6 +2637,7 @@
]
},
{
+ "id": 218,
"subnet": "166.82.112.128/26",
"option-data": [
{
@@ -2825,6 +2848,7 @@
]
},
{
+ "id": 224,
"subnet": "166.82.218.0/27",
"option-data": [
{
@@ -2985,6 +3009,7 @@
]
},
{
+ "id": 225,
"subnet": "166.82.83.64/26",
"option-data": [
{
@@ -3138,6 +3163,7 @@
// }
},
{
+ "id": 226,
"subnet": "166.82.83.192/27",
"option-data": [
{
@@ -3303,6 +3329,7 @@
]
},
{
+ "id": 265,
"subnet": "166.82.20.192/26",
"pools": [
{
@@ -3468,6 +3495,7 @@
]
},
{
+ "id": 285,
"subnet": "166.82.158.0/24",
"pools": [
{
@@ -3643,6 +3671,7 @@
# );
#}
{
+ "id": 295,
"subnet": "166.82.205.0/25",
"pools": [
{
@@ -3659,6 +3688,7 @@
]
},
{
+ "id": 301,
"subnet": "173.189.44.0/24",
"pools": [
{
@@ -3817,6 +3847,7 @@
// }
},
{
+ "id": 324,
"subnet": "166.82.195.0/24",
"pools": [
{
@@ -3994,6 +4025,7 @@
// }
},
{
+ "id": 403,
"subnet": "166.82.37.0/24",
"pools": [
{
@@ -4159,6 +4191,7 @@
]
},
{
+ "id": 430,
"subnet": "173.188.164.0/24",
"pools": [
{
@@ -4175,6 +4208,7 @@
]
},
{
+ "id": 445,
"subnet": "173.188.160.0/23",
"pools": [
{
@@ -4191,6 +4225,7 @@
]
},
{
+ "id": 457,
"subnet": "173.188.162.0/23",
"option-data": [
{
@@ -4202,6 +4237,7 @@
]
},
{
+ "id": 461,
"subnet": "166.82.47.0/24",
"pools": [
{
@@ -4360,6 +4396,7 @@
// }
},
{
+ "id": 462,
"subnet": "166.82.53.0/24",
"pools": [
{
@@ -4518,6 +4555,7 @@
// }
},
{
+ "id": 466,
"subnet": "166.82.77.0/24",
"pools": [
{
@@ -4676,6 +4714,7 @@
// }
},
{
+ "id": 469,
"subnet": "166.82.161.0/24",
"pools": [
{
@@ -4834,6 +4873,7 @@
// }
},
{
+ "id": 472,
"subnet": "75.89.98.0/29",
"pools": [
{
@@ -4869,6 +4909,7 @@
"valid-lifetime": 60
},
{
+ "id": 473,
"subnet": "75.117.232.96/29",
"pools": [
{
@@ -5064,6 +5105,7 @@
// }
},
{
+ "id": 474,
"subnet": "162.39.156.224/29",
"pools": [
{
@@ -5259,6 +5301,7 @@
// }
},
{
+ "id": 475,
"subnet": "75.89.98.40/29",
"pools": [
{
@@ -5454,6 +5497,7 @@
// }
},
{
+ "id": 476,
"subnet": "75.89.98.208/28",
"pools": [
{
@@ -5649,6 +5693,7 @@
// }
},
{
+ "id": 477,
"subnet": "207.91.5.0/24",
"option-data": [
{
@@ -5697,6 +5742,7 @@
"name": "dalltxlcs00-7200",
"subnet4": [
{
+ "id": 2,
"subnet": "207.155.48.0/20",
"pools": [
{
@@ -5770,6 +5816,7 @@
]
},
{
+ "id": 3,
"subnet": "66.55.227.0/24",
"pools": [
{
@@ -5798,6 +5845,7 @@
]
},
{
+ "id": 4,
"subnet": "66.55.228.0/23",
"pools": [
{
@@ -5829,6 +5877,7 @@
]
},
{
+ "id": 5,
"subnet": "66.55.230.0/24",
"pools": [
{
@@ -5857,6 +5906,7 @@
]
},
{
+ "id": 6,
"subnet": "66.55.240.0/24",
"pools": [
{
@@ -5885,6 +5935,7 @@
]
},
{
+ "id": 7,
"subnet": "69.30.159.0/24",
"pools": [
{
@@ -5913,6 +5964,7 @@
]
},
{
+ "id": 8,
"subnet": "69.30.160.0/22",
"pools": [
{
@@ -5950,6 +6002,7 @@
]
},
{
+ "id": 9,
"subnet": "69.30.164.0/23",
"pools": [
{
@@ -5981,6 +6034,7 @@
]
},
{
+ "id": 10,
"subnet": "69.30.166.0/24",
"pools": [
{
@@ -6009,6 +6063,7 @@
]
},
{
+ "id": 11,
"subnet": "69.30.184.0/21",
"pools": [
{
@@ -6058,6 +6113,7 @@
]
},
{
+ "id": 12,
"subnet": "72.172.4.0/22",
"pools": [
{
@@ -6095,6 +6151,7 @@
]
},
{
+ "id": 13,
"subnet": "72.172.16.0/22",
"pools": [
{
@@ -6145,6 +6202,7 @@
"name": "dalltxlcs01-7200",
"subnet4": [
{
+ "id": 14,
"subnet": "207.155.42.0/23",
"pools": [
{
@@ -6176,6 +6234,7 @@
]
},
{
+ "id": 15,
"subnet": "207.155.44.0/22",
"pools": [
{
@@ -6213,6 +6272,7 @@
]
},
{
+ "id": 16,
"subnet": "207.155.64.0/20",
"pools": [
{
@@ -6286,6 +6346,7 @@
]
},
{
+ "id": 17,
"subnet": "66.55.244.0/22",
"pools": [
{
@@ -6323,6 +6384,7 @@
]
},
{
+ "id": 18,
"subnet": "69.30.141.0/24",
"pools": [
{
@@ -6351,6 +6413,7 @@
]
},
{
+ "id": 19,
"subnet": "69.30.142.0/24",
"pools": [
{
@@ -6379,6 +6442,7 @@
]
},
{
+ "id": 20,
"subnet": "72.16.0.0/21",
"pools": [
{
@@ -6428,6 +6492,7 @@
]
},
{
+ "id": 21,
"subnet": "72.16.80.0/22",
"pools": [
{
@@ -6465,6 +6530,7 @@
]
},
{
+ "id": 22,
"subnet": "72.16.84.0/23",
"pools": [
{
@@ -6509,6 +6575,7 @@
"name": "dumstxlcs00-7200",
"subnet4": [
{
+ "id": 24,
"subnet": "98.22.196.0/22",
"pools": [
{
@@ -6537,6 +6604,7 @@
]
},
{
+ "id": 25,
"subnet": "98.22.194.0/23",
"pools": [
{
@@ -6565,6 +6633,7 @@
]
},
{
+ "id": 26,
"subnet": "166.102.28.0/24",
"pools": [
{
@@ -6593,6 +6662,7 @@
]
},
{
+ "id": 27,
"subnet": "173.184.0.0/21",
"pools": [
{
@@ -6634,6 +6704,7 @@
"name": "dalltxlrb01-se800",
"subnet4": [
{
+ "id": 28,
"subnet": "173.184.48.0/21",
"pools": [
{
@@ -6662,6 +6733,7 @@
]
},
{
+ "id": 29,
"subnet": "173.184.128.0/20",
"pools": [
{
@@ -6695,6 +6767,7 @@
"name": "espnnmlcs01-7200",
"subnet4": [
{
+ "id": 30,
"subnet": "98.23.208.0/21",
"pools": [
{
@@ -6751,6 +6824,7 @@
]
},
{
+ "id": 31,
"subnet": "71.28.96.0/22",
"pools": [
{
@@ -6793,6 +6867,7 @@
"name": "frfdtxlrb00",
"subnet4": [
{
+ "id": 32,
"subnet": "173.185.0.0/21",
"pools": [
{
@@ -6821,6 +6896,7 @@
]
},
{
+ "id": 33,
"subnet": "173.185.8.0/22",
"pools": [
{
@@ -6854,6 +6930,7 @@
"name": "symrtxlcs00-7200",
"subnet4": [
{
+ "id": 37,
"subnet": "98.23.99.0/24",
"pools": [
{
@@ -6882,6 +6959,7 @@
]
},
{
+ "id": 38,
"subnet": "98.23.100.0/23",
"pools": [
{
@@ -6915,6 +6993,7 @@
"name": "hbbsnmlcs00-7200",
"subnet4": [
{
+ "id": 39,
"subnet": "72.16.25.0/24",
"pools": [
{
@@ -6943,6 +7022,7 @@
]
},
{
+ "id": 40,
"subnet": "72.16.26.0/23",
"pools": [
{
@@ -6974,6 +7054,7 @@
]
},
{
+ "id": 41,
"subnet": "72.16.32.0/20",
"pools": [
{
@@ -7047,6 +7128,7 @@
]
},
{
+ "id": 42,
"subnet": "72.16.48.0/22",
"pools": [
{
@@ -7084,6 +7166,7 @@
]
},
{
+ "id": 43,
"subnet": "72.16.52.0/23",
"pools": [
{
@@ -7115,6 +7198,7 @@
]
},
{
+ "id": 44,
"subnet": "72.16.54.0/24",
"pools": [
{
@@ -7175,6 +7259,7 @@
"name": "hbbsnmlcs01-7200",
"subnet4": [
{
+ "id": 45,
"subnet": "72.16.106.0/23",
"pools": [
{
@@ -7206,6 +7291,7 @@
]
},
{
+ "id": 46,
"subnet": "72.16.108.0/23",
"pools": [
{
@@ -7237,6 +7323,7 @@
]
},
{
+ "id": 47,
"subnet": "72.16.112.0/22",
"pools": [
{
@@ -7274,6 +7361,7 @@
]
},
{
+ "id": 48,
"subnet": "72.16.64.0/20",
"pools": [
{
@@ -7379,6 +7467,7 @@
"name": "rudsnmlcs00-7200",
"subnet4": [
{
+ "id": 52,
"subnet": "173.184.127.0/24",
"pools": [
{
@@ -7407,6 +7496,7 @@
]
},
{
+ "id": 53,
"subnet": "98.17.120.0/22",
"pools": [
{
@@ -7444,6 +7534,7 @@
]
},
{
+ "id": 54,
"subnet": "98.22.56.0/23",
"pools": [
{
@@ -7475,6 +7566,7 @@
]
},
{
+ "id": 55,
"subnet": "166.102.178.0/24",
"pools": [
{
@@ -7508,6 +7600,7 @@
"name": "krvltxlc00-7206",
"subnet4": [
{
+ "id": 57,
"subnet": "98.23.102.0/23",
"pools": [
{
@@ -7539,6 +7632,7 @@
]
},
{
+ "id": 58,
"subnet": "207.155.16.0/20",
"pools": [
{
@@ -7612,6 +7706,7 @@
]
},
{
+ "id": 59,
"subnet": "207.155.4.128/25",
"pools": [
{
@@ -7664,6 +7759,7 @@
"name": "txrktxlcs00-7200",
"subnet4": [
{
+ "id": 60,
"subnet": "69.30.156.0/23",
"pools": [
{
@@ -7692,6 +7788,7 @@
]
},
{
+ "id": 61,
"subnet": "69.30.176.0/21",
"pools": [
{
@@ -7720,6 +7817,7 @@
]
},
{
+ "id": 62,
"subnet": "72.16.56.0/21",
"pools": [
{
@@ -7748,6 +7846,7 @@
]
},
{
+ "id": 63,
"subnet": "72.16.120.0/22",
"pools": [
{
@@ -7776,6 +7875,7 @@
]
},
{
+ "id": 64,
"subnet": "72.16.124.0/23",
"pools": [
{
@@ -7804,6 +7904,7 @@
]
},
{
+ "id": 65,
"subnet": "216.97.171.0/24",
"pools": [
{
@@ -7837,6 +7938,7 @@
"name": "txrktxlcs01-7200",
"subnet4": [
{
+ "id": 66,
"subnet": "64.119.64.16/28",
"pools": [
{
@@ -7865,6 +7967,7 @@
]
},
{
+ "id": 67,
"subnet": "64.119.64.32/27",
"pools": [
{
@@ -7893,6 +7996,7 @@
]
},
{
+ "id": 68,
"subnet": "64.119.64.64/26",
"pools": [
{
@@ -7921,6 +8025,7 @@
]
},
{
+ "id": 69,
"subnet": "64.119.64.128/25",
"pools": [
{
@@ -7949,6 +8054,7 @@
]
},
{
+ "id": 70,
"subnet": "64.119.65.0/24",
"pools": [
{
@@ -7977,6 +8083,7 @@
]
},
{
+ "id": 71,
"subnet": "64.119.66.0/23",
"pools": [
{
@@ -8005,6 +8112,7 @@
]
},
{
+ "id": 72,
"subnet": "64.119.68.0/22",
"pools": [
{
@@ -8033,6 +8141,7 @@
]
},
{
+ "id": 73,
"subnet": "66.55.236.0/23",
"pools": [
{
@@ -8061,6 +8170,7 @@
]
},
{
+ "id": 74,
"subnet": "66.55.238.0/24",
"pools": [
{
@@ -8089,6 +8199,7 @@
]
},
{
+ "id": 75,
"subnet": "66.55.253.0/24",
"pools": [
{
@@ -8130,6 +8241,7 @@
"name": "braroklcs00-7200",
"subnet4": [
{
+ "id": 77,
"subnet": "66.55.232.0/24",
"pools": [
{
@@ -8158,6 +8270,7 @@
]
},
{
+ "id": 78,
"subnet": "66.55.233.0/24",
"pools": [
{
@@ -8186,6 +8299,7 @@
]
},
{
+ "id": 79,
"subnet": "66.55.234.0/24",
"pools": [
{
@@ -8214,6 +8328,7 @@
]
},
{
+ "id": 80,
"subnet": "66.55.235.0/24",
"pools": [
{
@@ -8242,6 +8357,7 @@
]
},
{
+ "id": 81,
"subnet": "66.55.249.0/24",
"pools": [
{
@@ -8270,6 +8386,7 @@
]
},
{
+ "id": 82,
"subnet": "66.55.251.0/24",
"pools": [
{
@@ -8298,6 +8415,7 @@
]
},
{
+ "id": 83,
"subnet": "69.30.145.0/24",
"pools": [
{
@@ -8326,6 +8444,7 @@
]
},
{
+ "id": 84,
"subnet": "69.30.146.0/24",
"pools": [
{
@@ -8354,6 +8473,7 @@
]
},
{
+ "id": 85,
"subnet": "69.30.152.0/24",
"pools": [
{
@@ -8382,6 +8502,7 @@
]
},
{
+ "id": 86,
"subnet": "69.30.153.0/24",
"pools": [
{
@@ -8410,6 +8531,7 @@
]
},
{
+ "id": 87,
"subnet": "69.30.154.0/24",
"pools": [
{
@@ -8438,6 +8560,7 @@
]
},
{
+ "id": 88,
"subnet": "69.30.155.0/24",
"pools": [
{
@@ -8466,6 +8589,7 @@
]
},
{
+ "id": 89,
"subnet": "69.30.168.0/24",
"pools": [
{
@@ -8494,6 +8618,7 @@
]
},
{
+ "id": 90,
"subnet": "69.30.169.0/24",
"pools": [
{
@@ -8522,6 +8647,7 @@
]
},
{
+ "id": 91,
"subnet": "69.30.170.0/24",
"pools": [
{
@@ -8550,6 +8676,7 @@
]
},
{
+ "id": 92,
"subnet": "69.30.171.0/24",
"pools": [
{
@@ -8578,6 +8705,7 @@
]
},
{
+ "id": 93,
"subnet": "69.30.172.0/24",
"pools": [
{
@@ -8606,6 +8734,7 @@
]
},
{
+ "id": 94,
"subnet": "69.30.173.0/24",
"pools": [
{
@@ -8634,6 +8763,7 @@
]
},
{
+ "id": 95,
"subnet": "69.30.174.0/24",
"pools": [
{
@@ -8662,6 +8792,7 @@
]
},
{
+ "id": 96,
"subnet": "72.16.11.0/24",
"pools": [
{
@@ -8690,6 +8821,7 @@
]
},
{
+ "id": 97,
"subnet": "72.16.96.0/24",
"pools": [
{
@@ -8718,6 +8850,7 @@
]
},
{
+ "id": 98,
"subnet": "72.16.97.0/24",
"pools": [
{
@@ -8746,6 +8879,7 @@
]
},
{
+ "id": 99,
"subnet": "72.16.98.0/24",
"pools": [
{
@@ -8774,6 +8908,7 @@
]
},
{
+ "id": 100,
"subnet": "216.97.161.0/24",
"pools": [
{
@@ -8802,6 +8937,7 @@
]
},
{
+ "id": 101,
"subnet": "216.97.162.0/24",
"pools": [
{
@@ -8830,6 +8966,7 @@
]
},
{
+ "id": 102,
"subnet": "216.97.163.0/24",
"pools": [
{
@@ -8858,6 +8995,7 @@
]
},
{
+ "id": 103,
"subnet": "216.97.176.0/24",
"pools": [
{
@@ -8886,6 +9024,7 @@
]
},
{
+ "id": 104,
"subnet": "216.97.177.0/24",
"pools": [
{
@@ -8914,6 +9053,7 @@
]
},
{
+ "id": 105,
"subnet": "216.97.178.0/24",
"pools": [
{
@@ -8942,6 +9082,7 @@
]
},
{
+ "id": 106,
"subnet": "216.97.179.0/24",
"pools": [
{
@@ -8970,6 +9111,7 @@
]
},
{
+ "id": 107,
"subnet": "216.97.188.0/24",
"pools": [
{
@@ -8998,6 +9140,7 @@
]
},
{
+ "id": 108,
"subnet": "216.97.189.0/24",
"pools": [
{
@@ -9026,6 +9169,7 @@
]
},
{
+ "id": 109,
"subnet": "216.97.190.0/24",
"pools": [
{
@@ -9086,6 +9230,7 @@
"name": "braroklcs01-7200",
"subnet4": [
{
+ "id": 110,
"subnet": "69.30.144.0/24",
"pools": [
{
@@ -9114,6 +9259,7 @@
]
},
{
+ "id": 111,
"subnet": "69.30.147.0/24",
"pools": [
{
@@ -9142,6 +9288,7 @@
]
},
{
+ "id": 112,
"subnet": "69.30.148.0/24",
"pools": [
{
@@ -9170,6 +9317,7 @@
]
},
{
+ "id": 113,
"subnet": "69.30.149.0/24",
"pools": [
{
@@ -9198,6 +9346,7 @@
]
},
{
+ "id": 114,
"subnet": "69.30.150.0/24",
"pools": [
{
@@ -9226,6 +9375,7 @@
]
},
{
+ "id": 115,
"subnet": "69.30.151.0/24",
"pools": [
{
@@ -9254,6 +9404,7 @@
]
},
{
+ "id": 116,
"subnet": "72.16.8.0/24",
"pools": [
{
@@ -9282,6 +9433,7 @@
]
},
{
+ "id": 117,
"subnet": "72.16.9.0/24",
"pools": [
{
@@ -9310,6 +9462,7 @@
]
},
{
+ "id": 118,
"subnet": "72.16.10.0/24",
"pools": [
{
@@ -9338,6 +9491,7 @@
]
},
{
+ "id": 119,
"subnet": "72.16.12.0/24",
"pools": [
{
@@ -9366,6 +9520,7 @@
]
},
{
+ "id": 120,
"subnet": "72.16.13.0/24",
"pools": [
{
@@ -9394,6 +9549,7 @@
]
},
{
+ "id": 121,
"subnet": "72.16.14.0/24",
"pools": [
{
@@ -9422,6 +9578,7 @@
]
},
{
+ "id": 122,
"subnet": "72.16.15.0/24",
"pools": [
{
@@ -9450,6 +9607,7 @@
]
},
{
+ "id": 123,
"subnet": "72.16.16.0/24",
"pools": [
{
@@ -9478,6 +9636,7 @@
]
},
{
+ "id": 124,
"subnet": "72.16.17.0/24",
"pools": [
{
@@ -9506,6 +9665,7 @@
]
},
{
+ "id": 125,
"subnet": "72.16.18.0/24",
"pools": [
{
@@ -9534,6 +9694,7 @@
]
},
{
+ "id": 126,
"subnet": "72.16.19.0/24",
"pools": [
{
@@ -9562,6 +9723,7 @@
]
},
{
+ "id": 127,
"subnet": "72.16.20.0/24",
"pools": [
{
@@ -9590,6 +9752,7 @@
]
},
{
+ "id": 128,
"subnet": "72.16.21.0/24",
"pools": [
{
@@ -9618,6 +9781,7 @@
]
},
{
+ "id": 129,
"subnet": "72.16.22.0/24",
"pools": [
{
@@ -9646,6 +9810,7 @@
]
},
{
+ "id": 130,
"subnet": "72.16.99.0/24",
"pools": [
{
@@ -9674,6 +9839,7 @@
]
},
{
+ "id": 131,
"subnet": "72.16.100.0/24",
"pools": [
{
@@ -9702,6 +9868,7 @@
]
},
{
+ "id": 132,
"subnet": "207.155.32.0/21",
"pools": [
{
@@ -9751,6 +9918,7 @@
]
},
{
+ "id": 133,
"subnet": "216.97.164.0/24",
"pools": [
{
@@ -9779,6 +9947,7 @@
]
},
{
+ "id": 134,
"subnet": "216.97.165.0/24",
"pools": [
{
@@ -9807,6 +9976,7 @@
]
},
{
+ "id": 135,
"subnet": "216.97.166.0/24",
"pools": [
{
@@ -9835,6 +10005,7 @@
]
},
{
+ "id": 136,
"subnet": "216.97.167.0/24",
"pools": [
{
@@ -9866,6 +10037,7 @@
]
},
{
+ "id": 137,
"subnet": "216.97.180.0/24",
"pools": [
{
@@ -9894,6 +10066,7 @@
]
},
{
+ "id": 138,
"subnet": "216.97.181.0/24",
"pools": [
{
@@ -9922,6 +10095,7 @@
]
},
{
+ "id": 139,
"subnet": "216.97.182.0/24",
"pools": [
{
@@ -9950,6 +10124,7 @@
]
},
{
+ "id": 140,
"subnet": "216.97.183.0/24",
"pools": [
{
@@ -10010,6 +10185,7 @@
"name": "braroklrb00-se800",
"subnet4": [
{
+ "id": 141,
"subnet": "173.184.8.0/21",
"pools": [
{
@@ -10038,6 +10214,7 @@
]
},
{
+ "id": 142,
"subnet": "173.184.160.0/20",
"pools": [
{
@@ -10066,6 +10243,7 @@
]
},
{
+ "id": 143,
"subnet": "173.184.176.0/21",
"pools": [
{
@@ -10099,6 +10277,7 @@
"name": "prcloklcs00-7200",
"subnet4": [
{
+ "id": 144,
"subnet": "98.23.224.0/22",
"pools": [
{
@@ -10127,6 +10306,7 @@
]
},
{
+ "id": 145,
"subnet": "98.23.228.0/23",
"pools": [
{
@@ -10191,6 +10371,7 @@
"name": "ctc-vlan75",
"subnet4": [
{
+ "id": 151,
"subnet": "166.82.115.0/24",
"pools": [
{
@@ -10207,6 +10388,7 @@
]
},
{
+ "id": 152,
"subnet": "166.82.144.0/24",
"pools": [
{
@@ -10223,6 +10405,7 @@
]
},
{
+ "id": 153,
"subnet": "166.82.239.0/24",
"pools": [
{
@@ -10239,6 +10422,7 @@
]
},
{
+ "id": 154,
"subnet": "166.82.233.0/24",
"pools": [
{
@@ -10255,6 +10439,7 @@
]
},
{
+ "id": 155,
"subnet": "166.82.5.0/24",
"pools": [
{
@@ -10271,6 +10456,7 @@
]
},
{
+ "id": 156,
"subnet": "67.140.32.0/24",
"pools": [
{
@@ -10287,6 +10473,7 @@
]
},
{
+ "id": 157,
"subnet": "67.140.33.0/24",
"pools": [
{
@@ -10303,6 +10490,7 @@
]
},
{
+ "id": 158,
"subnet": "173.188.184.0/23",
"pools": [
{
@@ -10319,6 +10507,7 @@
]
},
{
+ "id": 159,
"subnet": "174.131.138.0/24",
"pools": [
{
@@ -10335,6 +10524,7 @@
]
},
{
+ "id": 160,
"subnet": "174.131.139.0/24",
"pools": [
{
@@ -10510,6 +10700,7 @@
"name": "ctc-vlan101",
"subnet4": [
{
+ "id": 163,
"subnet": "166.82.142.128/25",
"option-data": [
{
@@ -10853,6 +11044,7 @@
]
},
{
+ "id": 164,
"subnet": "166.82.107.0/26",
"option-data": [
{
@@ -10911,6 +11103,7 @@
]
},
{
+ "id": 165,
"subnet": "174.131.144.0/24",
"option-data": [
{
@@ -11161,6 +11354,7 @@
"name": "ctc-vlan102",
"subnet4": [
{
+ "id": 166,
"subnet": "166.82.143.96/27",
"option-data": [
{
@@ -11244,6 +11438,7 @@
]
},
{
+ "id": 167,
"subnet": "173.188.148.128/25",
"option-data": [
{
@@ -11427,6 +11622,7 @@
"name": "ctc-vlan103",
"subnet4": [
{
+ "id": 168,
"subnet": "166.82.142.0/25",
"option-data": [
{
@@ -11840,6 +12036,7 @@
]
},
{
+ "id": 169,
"subnet": "166.82.250.0/24",
"option-data": [
{
@@ -12328,6 +12525,7 @@
]
},
{
+ "id": 170,
"subnet": "174.131.146.0/23",
"option-data": [
{
@@ -12818,6 +13016,7 @@
"name": "ctc-vlan104",
"subnet4": [
{
+ "id": 171,
"subnet": "166.82.143.224/27",
"option-data": [
{
@@ -12926,6 +13125,7 @@
]
},
{
+ "id": 172,
"subnet": "166.82.143.0/27",
"option-data": [
{
@@ -12979,6 +13179,7 @@
]
},
{
+ "id": 173,
"subnet": "174.131.145.0/24",
"option-data": [
{
@@ -12990,6 +13191,7 @@
]
},
{
+ "id": 174,
"subnet": "174.131.156.192/26",
"option-data": [
{
@@ -13182,6 +13384,7 @@
"name": "ctc-vlan105",
"subnet4": [
{
+ "id": 175,
"subnet": "166.82.143.160/27",
"option-data": [
{
@@ -13275,6 +13478,7 @@
]
},
{
+ "id": 176,
"subnet": "166.82.252.128/27",
"option-data": [
{
@@ -13333,6 +13537,7 @@
]
},
{
+ "id": 177,
"subnet": "174.131.148.0/24",
"option-data": [
{
@@ -13504,6 +13709,7 @@
"name": "ctc-vlan106",
"subnet4": [
{
+ "id": 178,
"subnet": "166.82.143.128/27",
"option-data": [
{
@@ -13627,6 +13833,7 @@
]
},
{
+ "id": 179,
"subnet": "166.82.219.128/26",
"option-data": [
{
@@ -13815,6 +14022,7 @@
]
},
{
+ "id": 180,
"subnet": "174.131.149.0/24",
"option-data": [
{
@@ -14061,6 +14269,7 @@
"name": "ctc-vlan107",
"subnet4": [
{
+ "id": 181,
"subnet": "166.82.143.64/27",
"option-data": [
{
@@ -14179,6 +14388,7 @@
]
},
{
+ "id": 182,
"subnet": "166.82.219.192/26",
"option-data": [
{
@@ -14337,6 +14547,7 @@
]
},
{
+ "id": 183,
"subnet": "166.82.83.160/27",
"option-data": [
{
@@ -14365,6 +14576,7 @@
]
},
{
+ "id": 184,
"subnet": "174.131.150.64/26",
"option-data": [
{
@@ -14580,6 +14792,7 @@
"name": "ctc-vlan108",
"subnet4": [
{
+ "id": 185,
"subnet": "166.82.143.192/27",
"option-data": [
{
@@ -14643,6 +14856,7 @@
]
},
{
+ "id": 186,
"subnet": "173.188.149.128/25",
"option-data": [
{
@@ -14811,6 +15025,7 @@
"name": "ctc-vlan109",
"subnet4": [
{
+ "id": 187,
"subnet": "166.82.143.32/27",
"option-data": [
{
@@ -14864,6 +15079,7 @@
]
},
{
+ "id": 188,
"subnet": "173.188.150.0/25",
"option-data": [
{
@@ -15052,6 +15268,7 @@
"name": "ctc-vlan110",
"subnet4": [
{
+ "id": 189,
"subnet": "166.82.219.0/26",
"option-data": [
{
@@ -15285,6 +15502,7 @@
]
},
{
+ "id": 190,
"subnet": "166.82.219.64/26",
"option-data": [
{
@@ -15498,6 +15716,7 @@
]
},
{
+ "id": 191,
"subnet": "166.82.83.0/26",
"option-data": [
{
@@ -15686,6 +15905,7 @@
]
},
{
+ "id": 192,
"subnet": "166.82.72.128/26",
"option-data": [
{
@@ -15719,6 +15939,7 @@
]
},
{
+ "id": 193,
"subnet": "174.131.151.0/24",
"option-data": [
{
@@ -15730,6 +15951,7 @@
]
},
{
+ "id": 194,
"subnet": "174.131.156.0/26",
"option-data": [
{
@@ -15823,6 +16045,7 @@
]
},
{
+ "id": 195,
"subnet": "173.188.148.0/25",
"option-data": [
{
@@ -15991,6 +16214,7 @@
"name": "ctc-vlan130",
"subnet4": [
{
+ "id": 199,
"subnet": "166.82.182.0/26",
"option-data": [
{
@@ -16129,6 +16353,7 @@
]
},
{
+ "id": 200,
"subnet": "173.188.150.128/25",
"option-data": [
{
@@ -16343,6 +16568,7 @@
"name": "ctc-vlan131",
"subnet4": [
{
+ "id": 201,
"subnet": "166.82.182.128/27",
"option-data": [
{
@@ -16453,6 +16679,7 @@
]
},
{
+ "id": 202,
"subnet": "166.82.112.64/26",
"option-data": [
{
@@ -16556,6 +16783,7 @@
]
},
{
+ "id": 203,
"subnet": "166.82.120.36/30",
"option-data": [
{
@@ -16575,6 +16803,7 @@
},
#Cabarrus Gastroenterology
{
+ "id": 204,
"subnet": "174.131.152.0/24",
"option-data": [
{
@@ -16586,6 +16815,7 @@
]
},
{
+ "id": 205,
"subnet": "174.131.156.64/26",
"option-data": [
{
@@ -16774,6 +17004,7 @@
"name": "ctc-vlan133",
"subnet4": [
{
+ "id": 207,
"subnet": "166.82.182.160/27",
"option-data": [
{
@@ -16927,6 +17158,7 @@
]
},
{
+ "id": 208,
"subnet": "166.82.252.192/27",
"option-data": [
{
@@ -16970,6 +17202,7 @@
]
},
{
+ "id": 209,
"subnet": "174.131.153.0/24",
"option-data": [
{
@@ -17173,6 +17406,7 @@
"name": "ctc-vlan134",
"subnet4": [
{
+ "id": 210,
"subnet": "166.82.182.192/27",
"option-data": [
{
@@ -17281,6 +17515,7 @@
]
},
{
+ "id": 211,
"subnet": "166.82.252.160/27",
"option-data": [
{
@@ -17292,6 +17527,7 @@
]
},
{
+ "id": 212,
"subnet": "174.131.154.0/24",
"option-data": [
{
@@ -17506,6 +17742,7 @@
"name": "ctc-vlan135",
"subnet4": [
{
+ "id": 213,
"subnet": "166.82.209.128/27",
"option-data": [
{
@@ -17559,6 +17796,7 @@
]
},
{
+ "id": 214,
"subnet": "174.131.155.0/24",
"option-data": [
{
@@ -17757,6 +17995,7 @@
"name": "ctc-vlan136",
"subnet4": [
{
+ "id": 215,
"subnet": "166.82.182.224/27",
"option-data": [
{
@@ -17805,6 +18044,7 @@
]
},
{
+ "id": 216,
"subnet": "174.131.158.0/26",
"option-data": [
{
@@ -18003,6 +18243,7 @@
"name": "ctc-vlan139",
"subnet4": [
{
+ "id": 219,
"subnet": "166.82.112.192/26",
"option-data": [
{
@@ -18051,6 +18292,7 @@
]
},
{
+ "id": 220,
"subnet": "173.188.151.128/25",
"option-data": [
{
@@ -18229,6 +18471,7 @@
"name": "ctc-vlan140",
"subnet4": [
{
+ "id": 221,
"subnet": "166.82.38.0/26",
"option-data": [
{
@@ -18462,6 +18705,7 @@
]
},
{
+ "id": 222,
"subnet": "166.82.38.64/26",
"option-data": [
{
@@ -18473,6 +18717,7 @@
]
},
{
+ "id": 223,
"subnet": "174.131.156.128/26",
"option-data": [
{
@@ -18746,6 +18991,7 @@
"name": "ctc-vlan310",
"subnet4": [
{
+ "id": 227,
"subnet": "166.82.226.0/24",
"pools": [
{
@@ -18762,6 +19008,7 @@
]
},
{
+ "id": 228,
"subnet": "166.82.145.0/24",
"pools": [
{
@@ -18778,6 +19025,7 @@
]
},
{
+ "id": 229,
"subnet": "166.82.211.0/24",
"pools": [
{
@@ -18794,6 +19042,7 @@
]
},
{
+ "id": 230,
"subnet": "71.31.70.0/24",
"pools": [
{
@@ -18810,6 +19059,7 @@
]
},
{
+ "id": 231,
"subnet": "173.188.166.0/23",
"pools": [
{
@@ -19020,6 +19270,7 @@
"name": "ctc-vlan311",
"subnet4": [
{
+ "id": 232,
"subnet": "166.82.186.0/24",
"pools": [
{
@@ -19036,6 +19287,7 @@
]
},
{
+ "id": 233,
"subnet": "166.82.191.0/24",
"pools": [
{
@@ -19052,6 +19304,7 @@
]
},
{
+ "id": 234,
"subnet": "166.82.99.0/24",
"pools": [
{
@@ -19068,6 +19321,7 @@
]
},
{
+ "id": 235,
"subnet": "166.82.165.0/24",
"pools": [
{
@@ -19084,6 +19338,7 @@
]
},
{
+ "id": 236,
"subnet": "166.82.172.0/24",
"pools": [
{
@@ -19100,6 +19355,7 @@
]
},
{
+ "id": 237,
"subnet": "67.140.34.0/24",
"pools": [
{
@@ -19116,6 +19372,7 @@
]
},
{
+ "id": 238,
"subnet": "67.140.35.0/24",
"pools": [
{
@@ -19132,6 +19389,7 @@
]
},
{
+ "id": 239,
"subnet": "173.189.32.0/24",
"pools": [
{
@@ -19351,6 +19609,7 @@
"name": "ctc-vlan312",
"subnet4": [
{
+ "id": 240,
"subnet": "166.82.229.0/24",
"pools": [
{
@@ -19367,6 +19626,7 @@
]
},
{
+ "id": 241,
"subnet": "166.82.173.0/24",
"pools": [
{
@@ -19383,6 +19643,7 @@
]
},
{
+ "id": 242,
"subnet": "166.82.132.0/24",
"pools": [
{
@@ -19399,6 +19660,7 @@
]
},
{
+ "id": 243,
"subnet": "166.82.222.0/24",
"pools": [
{
@@ -19415,6 +19677,7 @@
]
},
{
+ "id": 244,
"subnet": "166.82.223.0/24",
"pools": [
{
@@ -19431,6 +19694,7 @@
]
},
{
+ "id": 245,
"subnet": "166.82.138.0/24",
"pools": [
{
@@ -19447,6 +19711,7 @@
]
},
{
+ "id": 246,
"subnet": "166.82.10.0/24",
"pools": [
{
@@ -19463,6 +19728,7 @@
]
},
{
+ "id": 247,
"subnet": "98.21.233.0/24",
"pools": [
{
@@ -19479,6 +19745,7 @@
]
},
{
+ "id": 248,
"subnet": "67.140.36.0/24",
"pools": [
{
@@ -19495,6 +19762,7 @@
]
},
{
+ "id": 249,
"subnet": "67.140.37.0/24",
"pools": [
{
@@ -19511,6 +19779,7 @@
]
},
{
+ "id": 250,
"subnet": "174.131.136.0/24",
"pools": [
{
@@ -19527,6 +19796,7 @@
]
},
{
+ "id": 251,
"subnet": "174.131.137.0/24",
"pools": [
{
@@ -19543,6 +19813,7 @@
]
},
{
+ "id": 252,
"subnet": "173.188.186.0/23",
"pools": [
{
@@ -19762,6 +20033,7 @@
"name": "ctc-vlan313",
"subnet4": [
{
+ "id": 253,
"subnet": "173.188.178.0/23",
"pools": [
{
@@ -19778,6 +20050,7 @@
]
},
{
+ "id": 254,
"subnet": "166.82.214.0/24",
"pools": [
{
@@ -19794,6 +20067,7 @@
]
},
{
+ "id": 255,
"subnet": "166.82.230.0/24",
"pools": [
{
@@ -19810,6 +20084,7 @@
]
},
{
+ "id": 256,
"subnet": "166.82.242.0/24",
"pools": [
{
@@ -19826,6 +20101,7 @@
]
},
{
+ "id": 257,
"subnet": "166.82.163.0/24",
"pools": [
{
@@ -19842,6 +20118,7 @@
]
},
{
+ "id": 258,
"subnet": "166.82.245.0/24",
"pools": [
{
@@ -19858,6 +20135,7 @@
]
},
{
+ "id": 259,
"subnet": "166.82.160.0/24",
"pools": [
{
@@ -19874,6 +20152,7 @@
]
},
{
+ "id": 260,
"subnet": "166.82.178.0/24",
"pools": [
{
@@ -19890,6 +20169,7 @@
]
},
{
+ "id": 261,
"subnet": "98.21.229.0/24",
"pools": [
{
@@ -19906,6 +20186,7 @@
]
},
{
+ "id": 262,
"subnet": "67.140.38.0/24",
"pools": [
{
@@ -19922,6 +20203,7 @@
]
},
{
+ "id": 263,
"subnet": "67.140.39.0/24",
"pools": [
{
@@ -19938,6 +20220,7 @@
]
},
{
+ "id": 264,
"subnet": "173.189.33.0/24",
"pools": [
{
@@ -20143,6 +20426,7 @@
"name": "ctc-vlan315",
"subnet4": [
{
+ "id": 266,
"subnet": "166.82.153.0/24",
"pools": [
{
@@ -20159,6 +20443,7 @@
]
},
{
+ "id": 267,
"subnet": "166.82.185.128/25",
"pools": [
{
@@ -20175,6 +20460,7 @@
]
},
{
+ "id": 268,
"subnet": "98.21.227.0/24",
"pools": [
{
@@ -20191,6 +20477,7 @@
]
},
{
+ "id": 269,
"subnet": "174.131.128.0/24",
"pools": [
{
@@ -20207,6 +20494,7 @@
]
},
{
+ "id": 270,
"subnet": "174.131.142.0/24",
"pools": [
{
@@ -20223,6 +20511,7 @@
]
},
{
+ "id": 271,
"subnet": "174.131.143.0/24",
"pools": [
{
@@ -20239,6 +20528,7 @@
]
},
{
+ "id": 272,
"subnet": "173.188.188.0/23",
"pools": [
{
@@ -20255,6 +20545,7 @@
]
},
{
+ "id": 273,
"subnet": "173.189.34.0/23",
"pools": [
{
@@ -20452,6 +20743,7 @@
"name": "ctc-vlan316",
"subnet4": [
{
+ "id": 274,
"subnet": "166.82.187.0/24",
"pools": [
{
@@ -20468,6 +20760,7 @@
]
},
{
+ "id": 275,
"subnet": "166.82.164.0/24",
"pools": [
{
@@ -20484,6 +20777,7 @@
]
},
{
+ "id": 276,
"subnet": "166.82.206.0/24",
"pools": [
{
@@ -20500,6 +20794,7 @@
]
},
{
+ "id": 277,
"subnet": "166.82.169.0/24",
"pools": [
{
@@ -20516,6 +20811,7 @@
]
},
{
+ "id": 278,
"subnet": "166.82.85.0/24",
"pools": [
{
@@ -20532,6 +20828,7 @@
]
},
{
+ "id": 279,
"subnet": "166.82.79.0/24",
"pools": [
{
@@ -20548,6 +20845,7 @@
]
},
{
+ "id": 280,
"subnet": "98.21.228.0/24",
"pools": [
{
@@ -20564,6 +20862,7 @@
]
},
{
+ "id": 281,
"subnet": "69.40.232.0/24",
"pools": [
{
@@ -20580,6 +20879,7 @@
]
},
{
+ "id": 282,
"subnet": "69.40.233.0/24",
"pools": [
{
@@ -20596,6 +20896,7 @@
]
},
{
+ "id": 283,
"subnet": "173.188.168.0/23",
"pools": [
{
@@ -20612,6 +20913,7 @@
]
},
{
+ "id": 284,
"subnet": "173.189.36.0/24",
"pools": [
{
@@ -20791,6 +21093,7 @@
"name": "ctc-vlan318",
"subnet4": [
{
+ "id": 286,
"subnet": "166.82.205.128/25",
"pools": [
{
@@ -20807,6 +21110,7 @@
]
},
{
+ "id": 287,
"subnet": "166.82.62.128/25",
"pools": [
{
@@ -20823,6 +21127,7 @@
]
},
{
+ "id": 288,
"subnet": "173.188.180.0/24",
"pools": [
{
@@ -20839,6 +21144,7 @@
]
},
{
+ "id": 289,
"subnet": "174.131.129.0/24",
"pools": [
{
@@ -20855,6 +21161,7 @@
]
},
{
+ "id": 290,
"subnet": "173.189.37.0/24",
"pools": [
{
@@ -21031,6 +21338,7 @@
"name": "ctc-vlan319",
"subnet4": [
{
+ "id": 291,
"subnet": "166.82.39.0/24",
"pools": [
{
@@ -21059,6 +21367,7 @@
]
},
{
+ "id": 292,
"subnet": "166.82.154.0/24",
"pools": [
{
@@ -21075,6 +21384,7 @@
]
},
{
+ "id": 293,
"subnet": "98.21.226.0/24",
"pools": [
{
@@ -21091,6 +21401,7 @@
]
},
{
+ "id": 294,
"subnet": "173.188.181.0/24",
"pools": [
{
@@ -21284,6 +21595,7 @@
# );
#}
{
+ "id": 296,
"subnet": "166.82.146.0/24",
"pools": [
{
@@ -21300,6 +21612,7 @@
]
},
{
+ "id": 297,
"subnet": "166.82.25.128/25",
"pools": [
{
@@ -21316,6 +21629,7 @@
]
},
{
+ "id": 298,
"subnet": "98.21.225.0/24",
"pools": [
{
@@ -21348,6 +21662,7 @@
"name": "ctc-vlan322",
"subnet4": [
{
+ "id": 299,
"subnet": "166.82.83.224/27",
"pools": [
{
@@ -21364,6 +21679,7 @@
]
},
{
+ "id": 300,
"subnet": "166.82.189.0/24",
"pools": [
{
@@ -21533,6 +21849,7 @@
"name": "ctc-vlan201",
"subnet4": [
{
+ "id": 302,
"subnet": "173.189.233.0/24",
"option-data": [
{
@@ -21861,6 +22178,7 @@
]
},
{
+ "id": 303,
"subnet": "173.189.234.0/25",
"option-data": [
{
@@ -22032,6 +22350,7 @@
"name": "ctc-vlan900",
"subnet4": [
{
+ "id": 304,
"subnet": "166.82.130.0/24",
"pools": [
{
@@ -22048,6 +22367,7 @@
]
},
{
+ "id": 305,
"subnet": "166.82.166.0/24",
"pools": [
{
@@ -22064,6 +22384,7 @@
]
},
{
+ "id": 306,
"subnet": "98.21.230.0/24",
"pools": [
{
@@ -22269,6 +22590,7 @@
"name": "ctc-vlan901",
"subnet4": [
{
+ "id": 307,
"subnet": "166.82.212.0/24",
"pools": [
{
@@ -22285,6 +22607,7 @@
]
},
{
+ "id": 308,
"subnet": "166.82.31.0/24",
"pools": [
{
@@ -22308,6 +22631,7 @@
]
},
{
+ "id": 309,
"subnet": "166.82.232.0/24",
"pools": [
{
@@ -22324,6 +22648,7 @@
]
},
{
+ "id": 310,
"subnet": "166.82.183.0/24",
"pools": [
{
@@ -22340,6 +22665,7 @@
]
},
{
+ "id": 311,
"subnet": "166.82.192.0/24",
"pools": [
{
@@ -22356,6 +22682,7 @@
]
},
{
+ "id": 312,
"subnet": "166.82.171.0/24",
"pools": [
{
@@ -22372,6 +22699,7 @@
]
},
{
+ "id": 313,
"subnet": "166.82.255.128/25",
"pools": [
{
@@ -22388,6 +22716,7 @@
]
},
{
+ "id": 314,
"subnet": "98.21.232.0/24",
"pools": [
{
@@ -22404,6 +22733,7 @@
]
},
{
+ "id": 315,
"subnet": "69.40.234.0/24",
"pools": [
{
@@ -22420,6 +22750,7 @@
]
},
{
+ "id": 316,
"subnet": "69.40.235.0/24",
"pools": [
{
@@ -22436,6 +22767,7 @@
]
},
{
+ "id": 317,
"subnet": "174.131.130.0/24",
"pools": [
{
@@ -22452,6 +22784,7 @@
]
},
{
+ "id": 318,
"subnet": "174.131.131.0/24",
"pools": [
{
@@ -22468,6 +22801,7 @@
]
},
{
+ "id": 319,
"subnet": "173.188.174.0/23",
"pools": [
{
@@ -22484,6 +22818,7 @@
]
},
{
+ "id": 320,
"subnet": "173.188.176.0/24",
"pools": [
{
@@ -22500,6 +22835,7 @@
]
},
{
+ "id": 321,
"subnet": "173.189.38.0/23",
"pools": [
{
@@ -22693,6 +23029,7 @@
"name": "ctc-vlan902",
"subnet4": [
{
+ "id": 322,
"subnet": "166.82.196.0/24",
"pools": [
{
@@ -22709,6 +23046,7 @@
]
},
{
+ "id": 323,
"subnet": "166.82.78.0/25",
"pools": [
{
@@ -22898,6 +23236,7 @@
"name": "ctc-vlan905",
"subnet4": [
{
+ "id": 325,
"subnet": "166.82.24.0/24",
"pools": [
{
@@ -22921,6 +23260,7 @@
]
},
{
+ "id": 326,
"subnet": "166.82.32.0/24",
"pools": [
{
@@ -22937,6 +23277,7 @@
]
},
{
+ "id": 327,
"subnet": "166.82.197.0/24",
"pools": [
{
@@ -22953,6 +23294,7 @@
]
},
{
+ "id": 328,
"subnet": "166.82.194.0/24",
"pools": [
{
@@ -22969,6 +23311,7 @@
]
},
{
+ "id": 329,
"subnet": "98.21.237.0/24",
"pools": [
{
@@ -22985,6 +23328,7 @@
]
},
{
+ "id": 330,
"subnet": "69.40.236.0/24",
"pools": [
{
@@ -23001,6 +23345,7 @@
]
},
{
+ "id": 331,
"subnet": "69.40.237.0/24",
"pools": [
{
@@ -23017,6 +23362,7 @@
]
},
{
+ "id": 332,
"subnet": "173.189.40.0/23",
"pools": [
{
@@ -23215,6 +23561,7 @@
"name": "ctc-vlan966",
"subnet4": [
{
+ "id": 333,
"subnet": "166.82.157.0/24",
"pools": [
{
@@ -23238,6 +23585,7 @@
]
},
{
+ "id": 334,
"subnet": "166.82.241.0/24",
"pools": [
{
@@ -23254,6 +23602,7 @@
]
},
{
+ "id": 335,
"subnet": "69.40.238.0/24",
"pools": [
{
@@ -23270,6 +23619,7 @@
]
},
{
+ "id": 336,
"subnet": "69.40.239.0/24",
"pools": [
{
@@ -23477,6 +23827,7 @@
"name": "ctc-vlan968",
"subnet4": [
{
+ "id": 337,
"subnet": "166.82.30.0/24",
"pools": [
{
@@ -23493,6 +23844,7 @@
]
},
{
+ "id": 338,
"subnet": "166.82.149.0/24",
"pools": [
{
@@ -23509,6 +23861,7 @@
]
},
{
+ "id": 339,
"subnet": "166.82.155.0/24",
"pools": [
{
@@ -23525,6 +23878,7 @@
]
},
{
+ "id": 340,
"subnet": "166.82.208.0/24",
"pools": [
{
@@ -23541,6 +23895,7 @@
]
},
{
+ "id": 341,
"subnet": "166.82.148.0/24",
"pools": [
{
@@ -23564,6 +23919,7 @@
]
},
{
+ "id": 342,
"subnet": "166.82.151.0/24",
"pools": [
{
@@ -23580,6 +23936,7 @@
]
},
{
+ "id": 343,
"subnet": "166.82.168.0/24",
"pools": [
{
@@ -23596,6 +23953,7 @@
]
},
{
+ "id": 344,
"subnet": "166.82.253.0/24",
"pools": [
{
@@ -23612,6 +23970,7 @@
]
},
{
+ "id": 345,
"subnet": "166.82.107.128/25",
"pools": [
{
@@ -23628,6 +23987,7 @@
]
},
{
+ "id": 346,
"subnet": "98.21.234.0/24",
"pools": [
{
@@ -23644,6 +24004,7 @@
]
},
{
+ "id": 347,
"subnet": "67.141.208.0/24",
"pools": [
{
@@ -23660,6 +24021,7 @@
]
},
{
+ "id": 348,
"subnet": "67.141.209.0/24",
"pools": [
{
@@ -23676,6 +24038,7 @@
]
},
{
+ "id": 349,
"subnet": "174.131.140.0/24",
"pools": [
{
@@ -23692,6 +24055,7 @@
]
},
{
+ "id": 350,
"subnet": "174.131.141.0/24",
"pools": [
{
@@ -23708,6 +24072,7 @@
]
},
{
+ "id": 351,
"subnet": "173.188.170.0/23",
"pools": [
{
@@ -23724,6 +24089,7 @@
]
},
{
+ "id": 352,
"subnet": "173.189.42.0/23",
"pools": [
{
@@ -23928,6 +24294,7 @@
"name": "ctc-vlan969",
"subnet4": [
{
+ "id": 353,
"subnet": "166.82.25.0/25",
"pools": [
{
@@ -23944,6 +24311,7 @@
]
},
{
+ "id": 354,
"subnet": "166.82.55.128/25",
"pools": [
{
@@ -23960,6 +24328,7 @@
]
},
{
+ "id": 355,
"subnet": "67.141.210.0/24",
"pools": [
{
@@ -23976,6 +24345,7 @@
]
},
{
+ "id": 356,
"subnet": "67.141.211.0/24",
"pools": [
{
@@ -23992,6 +24362,7 @@
]
},
{
+ "id": 357,
"subnet": "174.130.133.0/24",
"pools": [
{
@@ -24008,6 +24379,7 @@
]
},
{
+ "id": 358,
"subnet": "174.130.134.0/24",
"pools": [
{
@@ -24024,6 +24396,7 @@
]
},
{
+ "id": 359,
"subnet": "174.130.135.0/24",
"pools": [
{
@@ -24200,6 +24573,7 @@
"name": "ctc-vlan970",
"subnet4": [
{
+ "id": 360,
"subnet": "166.82.118.0/24",
"pools": [
{
@@ -24223,6 +24597,7 @@
]
},
{
+ "id": 361,
"subnet": "166.82.210.0/24",
"pools": [
{
@@ -24239,6 +24614,7 @@
]
},
{
+ "id": 362,
"subnet": "173.188.190.0/24",
"pools": [
{
@@ -24415,6 +24791,7 @@
"name": "ctc-vlan971",
"subnet4": [
{
+ "id": 363,
"subnet": "166.82.80.0/24",
"pools": [
{
@@ -24431,6 +24808,7 @@
]
},
{
+ "id": 364,
"subnet": "166.82.8.0/24",
"pools": [
{
@@ -24447,6 +24825,7 @@
]
},
{
+ "id": 365,
"subnet": "173.188.183.0/24",
"pools": [
{
@@ -24623,6 +25002,7 @@
"name": "ctc-vlan973",
"subnet4": [
{
+ "id": 366,
"subnet": "166.82.19.128/25",
"pools": [
{
@@ -24639,6 +25019,7 @@
]
},
{
+ "id": 367,
"subnet": "166.82.117.0/24",
"pools": [
{
@@ -24655,6 +25036,7 @@
]
},
{
+ "id": 368,
"subnet": "173.189.47.0/25",
"pools": [
{
@@ -24838,6 +25220,7 @@
"name": "ctc-vlan974",
"subnet4": [
{
+ "id": 369,
"subnet": "166.82.68.0/24",
"pools": [
{
@@ -24861,6 +25244,7 @@
]
},
{
+ "id": 370,
"subnet": "166.82.217.0/24",
"pools": [
{
@@ -24877,6 +25261,7 @@
]
},
{
+ "id": 371,
"subnet": "166.82.78.128/25",
"pools": [
{
@@ -24893,6 +25278,7 @@
]
},
{
+ "id": 372,
"subnet": "166.82.221.0/24",
"pools": [
{
@@ -24909,6 +25295,7 @@
]
},
{
+ "id": 373,
"subnet": "67.141.213.0/24",
"pools": [
{
@@ -25101,6 +25488,7 @@
"name": "ctc-vlan975",
"subnet4": [
{
+ "id": 374,
"subnet": "166.82.94.0/24",
"pools": [
{
@@ -25124,6 +25512,7 @@
]
},
{
+ "id": 375,
"subnet": "166.82.70.0/24",
"pools": [
{
@@ -25140,6 +25529,7 @@
]
},
{
+ "id": 376,
"subnet": "166.82.11.0/24",
"pools": [
{
@@ -25163,6 +25553,7 @@
]
},
{
+ "id": 377,
"subnet": "166.82.23.0/24",
"pools": [
{
@@ -25179,6 +25570,7 @@
]
},
{
+ "id": 378,
"subnet": "166.82.114.128/25",
"pools": [
{
@@ -25195,6 +25587,7 @@
]
},
{
+ "id": 379,
"subnet": "98.21.238.0/24",
"pools": [
{
@@ -25211,6 +25604,7 @@
]
},
{
+ "id": 380,
"subnet": "67.141.214.0/24",
"pools": [
{
@@ -25227,6 +25621,7 @@
]
},
{
+ "id": 381,
"subnet": "67.141.215.0/24",
"pools": [
{
@@ -25243,6 +25638,7 @@
]
},
{
+ "id": 382,
"subnet": "173.189.45.0/24",
"pools": [
{
@@ -25416,6 +25812,7 @@
"name": "ctc-vlan976",
"subnet4": [
{
+ "id": 383,
"subnet": "166.82.255.0/25",
"pools": [
{
@@ -25432,6 +25829,7 @@
]
},
{
+ "id": 384,
"subnet": "174.130.132.0/24",
"pools": [
{
@@ -25641,6 +26039,7 @@
"name": "ctc-vlan977",
"subnet4": [
{
+ "id": 385,
"subnet": "166.82.227.0/24",
"pools": [
{
@@ -25657,6 +26056,7 @@
]
},
{
+ "id": 386,
"subnet": "166.82.215.0/24",
"pools": [
{
@@ -25673,6 +26073,7 @@
]
},
{
+ "id": 387,
"subnet": "166.82.93.0/24",
"pools": [
{
@@ -25689,6 +26090,7 @@
]
},
{
+ "id": 388,
"subnet": "166.82.170.0/24",
"pools": [
{
@@ -25705,6 +26107,7 @@
]
},
{
+ "id": 389,
"subnet": "166.82.254.0/24",
"pools": [
{
@@ -25721,6 +26124,7 @@
]
},
{
+ "id": 390,
"subnet": "166.82.162.0/25",
"pools": [
{
@@ -25737,6 +26141,7 @@
]
},
{
+ "id": 391,
"subnet": "98.21.235.0/24",
"pools": [
{
@@ -25753,6 +26158,7 @@
]
},
{
+ "id": 392,
"subnet": "71.31.64.0/24",
"pools": [
{
@@ -25769,6 +26175,7 @@
]
},
{
+ "id": 393,
"subnet": "71.31.65.0/24",
"pools": [
{
@@ -25785,6 +26192,7 @@
]
},
{
+ "id": 394,
"subnet": "174.130.128.0/24",
"pools": [
{
@@ -25801,6 +26209,7 @@
]
},
{
+ "id": 395,
"subnet": "174.130.129.0/24",
"pools": [
{
@@ -25817,6 +26226,7 @@
]
},
{
+ "id": 396,
"subnet": "174.130.130.0/24",
"pools": [
{
@@ -25833,6 +26243,7 @@
]
},
{
+ "id": 397,
"subnet": "174.130.131.0/24",
"pools": [
{
@@ -25849,6 +26260,7 @@
]
},
{
+ "id": 398,
"subnet": "174.131.132.0/24",
"pools": [
{
@@ -25865,6 +26277,7 @@
]
},
{
+ "id": 399,
"subnet": "174.131.133.0/24",
"pools": [
{
@@ -25881,6 +26294,7 @@
]
},
{
+ "id": 400,
"subnet": "173.188.172.0/23",
"pools": [
{
@@ -25897,6 +26311,7 @@
]
},
{
+ "id": 401,
"subnet": "173.188.177.0/24",
"pools": [
{
@@ -25913,6 +26328,7 @@
]
},
{
+ "id": 402,
"subnet": "173.189.46.0/24",
"pools": [
{
@@ -26127,6 +26543,7 @@
"name": "ctc-vlan979",
"subnet4": [
{
+ "id": 404,
"subnet": "166.82.228.0/24",
"pools": [
{
@@ -26143,6 +26560,7 @@
]
},
{
+ "id": 405,
"subnet": "166.82.44.0/24",
"pools": [
{
@@ -26166,6 +26584,7 @@
]
},
{
+ "id": 406,
"subnet": "166.82.100.0/24",
"pools": [
{
@@ -26182,6 +26601,7 @@
]
},
{
+ "id": 407,
"subnet": "166.82.167.0/24",
"pools": [
{
@@ -26198,6 +26618,7 @@
]
},
{
+ "id": 408,
"subnet": "166.82.216.0/24",
"pools": [
{
@@ -26214,6 +26635,7 @@
]
},
{
+ "id": 409,
"subnet": "166.82.198.0/24",
"pools": [
{
@@ -26230,6 +26652,7 @@
]
},
{
+ "id": 410,
"subnet": "166.82.156.128/25",
"pools": [
{
@@ -26246,6 +26669,7 @@
]
},
{
+ "id": 411,
"subnet": "71.31.66.0/24",
"pools": [
{
@@ -26262,6 +26686,7 @@
]
},
{
+ "id": 412,
"subnet": "71.31.67.0/24",
"pools": [
{
@@ -26278,6 +26703,7 @@
]
},
{
+ "id": 413,
"subnet": "173.188.191.0/24",
"pools": [
{
@@ -26480,6 +26906,7 @@
"name": "ctc-vlan984",
"subnet4": [
{
+ "id": 414,
"subnet": "166.82.152.0/24",
"pools": [
{
@@ -26503,6 +26930,7 @@
]
},
{
+ "id": 415,
"subnet": "166.82.124.0/24",
"pools": [
{
@@ -26519,6 +26947,7 @@
]
},
{
+ "id": 416,
"subnet": "166.82.125.0/24",
"pools": [
{
@@ -26535,6 +26964,7 @@
]
},
{
+ "id": 417,
"subnet": "98.21.224.0/24",
"pools": [
{
@@ -26551,6 +26981,7 @@
]
},
{
+ "id": 418,
"subnet": "98.21.239.0/24",
"pools": [
{
@@ -26567,6 +26998,7 @@
]
},
{
+ "id": 419,
"subnet": "174.131.135.0/24",
"pools": [
{
@@ -26743,6 +27175,7 @@
"name": "ctc-vlan985",
"subnet4": [
{
+ "id": 420,
"subnet": "166.82.134.0/24",
"pools": [
{
@@ -26759,6 +27192,7 @@
]
},
{
+ "id": 421,
"subnet": "166.82.200.128/25",
"pools": [
{
@@ -26775,6 +27209,7 @@
]
},
{
+ "id": 422,
"subnet": "67.141.212.0/24",
"pools": [
{
@@ -26948,6 +27383,7 @@
"name": "ctc-vlan987",
"subnet4": [
{
+ "id": 423,
"subnet": "166.82.159.0/24",
"pools": [
{
@@ -26964,6 +27400,7 @@
]
},
{
+ "id": 424,
"subnet": "174.131.134.0/24",
"pools": [
{
@@ -27137,6 +27574,7 @@
"name": "ctc-vlan988",
"subnet4": [
{
+ "id": 425,
"subnet": "166.82.200.0/25",
"pools": [
{
@@ -27153,6 +27591,7 @@
]
},
{
+ "id": 426,
"subnet": "173.188.182.0/25",
"pools": [
{
@@ -27330,6 +27769,7 @@
"name": "ctc-vlan990",
"subnet4": [
{
+ "id": 427,
"subnet": "166.82.224.0/24",
"pools": [
{
@@ -27346,6 +27786,7 @@
]
},
{
+ "id": 428,
"subnet": "166.82.19.0/25",
"pools": [
{
@@ -27362,6 +27803,7 @@
]
},
{
+ "id": 429,
"subnet": "166.82.225.0/24",
"pools": [
{
@@ -27479,6 +27921,7 @@
# }
# }
{
+ "id": 431,
"subnet": "166.82.126.0/24",
"pools": [
{
@@ -27495,6 +27938,7 @@
]
},
{
+ "id": 432,
"subnet": "166.82.121.0/24",
"pools": [
{
@@ -27512,6 +27956,7 @@
},
# 166.82.59.5 - 254 are static IPs for VLAN 1000
{
+ "id": 433,
"subnet": "166.82.56.0/22",
"pools": [
{
@@ -27786,6 +28231,7 @@
},
# Static IPs for VLAN 1000
{
+ "id": 434,
"subnet": "174.131.157.0/25",
"option-data": [
{
@@ -27889,6 +28335,7 @@
]
},
{
+ "id": 435,
"subnet": "166.82.81.0/24",
"pools": [
{
@@ -27905,6 +28352,7 @@
]
},
{
+ "id": 436,
"subnet": "166.82.35.0/24",
"pools": [
{
@@ -27921,6 +28369,7 @@
]
},
{
+ "id": 437,
"subnet": "166.82.69.0/24",
"pools": [
{
@@ -27937,6 +28386,7 @@
]
},
{
+ "id": 438,
"subnet": "166.82.180.0/24",
"pools": [
{
@@ -27953,6 +28403,7 @@
]
},
{
+ "id": 439,
"subnet": "166.82.179.0/24",
"pools": [
{
@@ -27969,6 +28420,7 @@
]
},
{
+ "id": 440,
"subnet": "166.82.67.0/25",
"pools": [
{
@@ -27985,6 +28437,7 @@
]
},
{
+ "id": 441,
"subnet": "98.21.231.0/24",
"pools": [
{
@@ -28001,6 +28454,7 @@
]
},
{
+ "id": 442,
"subnet": "98.21.236.0/24",
"pools": [
{
@@ -28017,6 +28471,7 @@
]
},
{
+ "id": 443,
"subnet": "71.31.68.0/24",
"pools": [
{
@@ -28033,6 +28488,7 @@
]
},
{
+ "id": 444,
"subnet": "71.31.69.0/24",
"pools": [
{
@@ -28110,6 +28566,7 @@
"name": "ctc-vlan1300",
"subnet4": [
{
+ "id": 446,
"subnet": "166.82.108.0/23",
"pools": [
{
@@ -28263,6 +28720,7 @@
]
},
{
+ "id": 447,
"subnet": "166.82.9.0/24",
"pools": [
{
@@ -28279,6 +28737,7 @@
]
},
{
+ "id": 448,
"subnet": "166.82.102.0/24",
"pools": [
{
@@ -28295,6 +28754,7 @@
]
},
{
+ "id": 449,
"subnet": "166.82.48.0/24",
"pools": [
{
@@ -28311,6 +28771,7 @@
]
},
{
+ "id": 450,
"subnet": "166.82.49.0/24",
"pools": [
{
@@ -28327,6 +28788,7 @@
]
},
{
+ "id": 451,
"subnet": "166.82.141.0/24",
"pools": [
{
@@ -28350,6 +28812,7 @@
]
},
{
+ "id": 452,
"subnet": "166.82.139.0/24",
"pools": [
{
@@ -28366,6 +28829,7 @@
]
},
{
+ "id": 453,
"subnet": "166.82.131.0/24",
"pools": [
{
@@ -28382,6 +28846,7 @@
]
},
{
+ "id": 454,
"subnet": "166.82.116.0/24",
"pools": [
{
@@ -28398,6 +28863,7 @@
]
},
{
+ "id": 455,
"subnet": "166.82.82.0/24",
"pools": [
{
@@ -28414,6 +28880,7 @@
]
},
{
+ "id": 456,
"subnet": "71.31.71.0/24",
"pools": [
{
@@ -28447,6 +28914,7 @@
"name": "ctc-vlan7000",
"subnet4": [
{
+ "id": 458,
"subnet": "166.82.17.0/24",
"pools": [
{
@@ -28464,6 +28932,7 @@
},
#CNCR range
{
+ "id": 459,
"subnet": "173.188.149.0/25",
"option-data": [
{
@@ -28487,6 +28956,7 @@
]
},
{
+ "id": 460,
"subnet": "173.189.47.128/25",
"pools": [
{
@@ -28663,6 +29133,7 @@
"name": "ctc-vlan7003",
"subnet4": [
{
+ "id": 463,
"subnet": "166.82.16.0/24",
"pools": [
{
@@ -28679,6 +29150,7 @@
]
},
{
+ "id": 464,
"subnet": "166.82.26.224/28",
"option-data": [
{
@@ -28702,6 +29174,7 @@
]
},
{
+ "id": 465,
"subnet": "173.188.182.128/25",
"pools": [
{
@@ -28875,6 +29348,7 @@
"name": "ctc-vlan7005",
"subnet4": [
{
+ "id": 467,
"subnet": "166.82.18.0/24",
"pools": [
{
@@ -28891,6 +29365,7 @@
]
},
{
+ "id": 468,
"subnet": "166.82.26.240/28",
"option-data": [
{
@@ -29053,6 +29528,7 @@
"name": "ltrkarlcs-lab00",
"subnet4": [
{
+ "id": 470,
"subnet": "162.39.168.64/29",
"pools": [
{
@@ -29111,6 +29587,7 @@
]
},
{
+ "id": 471,
"subnet": "75.89.98.72/29",
"pools": [
{