summaryrefslogtreecommitdiff
path: root/keama
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2017-11-25 21:37:08 +0100
committerFrancis Dupont <fdupont@isc.org>2018-11-29 16:43:00 +0100
commitdb9915e25927f6339870aaa086e515e0c13d3759 (patch)
treef03d37b025871f73032714c1a8eb2c5f10e80cf8 /keama
parent65d6efd1121f025fdaeb99f1e2a3ab3042a08241 (diff)
downloadisc-dhcp-db9915e25927f6339870aaa086e515e0c13d3759.tar.gz
Assume trac5374 is integrated
Diffstat (limited to 'keama')
-rw-r--r--keama/confparse.c114
-rw-r--r--keama/doc.txt2
-rw-r--r--keama/tests/ba/kea.json856
-rw-r--r--keama/tests/dhcp3/kea.json10182
-rw-r--r--keama/tests/permitauth4.out18
-rw-r--r--keama/tests/permitauth6.out18
-rw-r--r--keama/tests/samples/example.json24
7 files changed, 5634 insertions, 5580 deletions
diff --git a/keama/confparse.c b/keama/confparse.c
index ffeb156b..54da779d 100644
--- a/keama/confparse.c
+++ b/keama/confparse.c
@@ -77,6 +77,7 @@ static void post_process_authoritative(struct parse *);
static size_t post_process_reservations(struct parse *);
static void post_process_classes(struct parse *);
static void post_process_generated_classes(struct parse *);
+static void check_depend(struct element *, struct element *);
static void post_process_option_definitions(struct parse *);
static void add_host_reservation_identifiers(struct parse *, const char *);
static void add_host_id_option(struct parse *, const struct option *, int);
@@ -357,19 +358,71 @@ post_process_generated_classes(struct parse *cfile)
/* remove unused gen#ALL */
class = listGet(generated, 0);
- if (!mapContains(class, "referenced"))
- listRemove(generated, 0);
- else
+ listRemove(generated, 0);
+ if (mapContains(class, "referenced")) {
mapRemove(class, "referenced");
+ listPush(classes, class);
+ }
while (listSize(generated) > 0) {
class = listGet(generated, 0);
listRemove(generated, 0);
+ check_depend(class, classes);
listPush(classes, class);
}
}
static void
+check_depend(struct element *class, struct element *classes)
+{
+ struct element *list;
+
+ if (!mapContains(class, "depend"))
+ return;
+ list = mapGet(class, "depend");
+ mapRemove(class, "depend");
+ while (listSize(list) > 0) {
+ struct element *depend;
+ struct string *dname;
+ struct string *msg;
+ struct comment *comment;
+ isc_boolean_t found;
+ size_t i;
+
+ depend = listGet(list, 0);
+ listRemove(list, 0);
+ assert(depend != NULL);
+ assert(depend->type == ELEMENT_STRING);
+ dname = stringValue(depend);
+ found = ISC_FALSE;
+ for (i = 0; i < listSize(classes); i++) {
+ struct element *item;
+ struct element *name;
+
+ item = listGet(classes, i);
+ assert(item != NULL);
+ assert(item->type == ELEMENT_MAP);
+ name = mapGet(item, "name");
+ if (name == NULL)
+ continue;
+ assert(name->type == ELEMENT_STRING);
+ if (eqString(stringValue(name), dname)) {
+ found = ISC_TRUE;
+ break;
+ }
+ }
+ if (found)
+ continue;
+ msg = makeString(-1, "/// Depend on missing '");
+ concatString(msg, dname);
+ appendString(msg, "' class");
+ comment = createComment(msg->content);
+ TAILQ_INSERT_TAIL(&class->comments, comment);
+ class->skip = ISC_TRUE;
+ }
+}
+
+static void
post_process_option_definitions(struct parse *cfile)
{
struct element *opt_def;
@@ -937,10 +990,6 @@ get_permit(struct parse *cfile, struct element *permit_head)
negative = ISC_TRUE;
known_clients:
known_clients = ISC_TRUE;
- permit_head->skip = ISC_TRUE;
- cfile->issue_counter++;
- comment = createComment("/// [un]known-clients is not yet "
- "supported by Kea");
break;
case KNOWN_CLIENTS:
@@ -965,7 +1014,7 @@ get_permit(struct parse *cfile, struct element *permit_head)
break;
case AUTHENTICATED:
- permit = makeString(-1, "ALL");
+ permit = makeString(-1, "gen#ALL#");
alias = makeString(-1, "authenticated clients");
negative = ISC_TRUE;
authenticated_clients:
@@ -975,13 +1024,13 @@ get_permit(struct parse *cfile, struct element *permit_head)
break;
case UNAUTHENTICATED:
- permit = makeString(-1, "ALL");
+ permit = makeString(-1, "gen#ALL#");
alias = makeString(-1, "unauthenticated clients");
goto authenticated_clients;
break;
case ALL:
- permit = makeString(-1, "ALL");
+ permit = makeString(-1, "gen#ALL#");
alias = makeString(-1, "all clients");
use_all = ISC_TRUE;
break;
@@ -991,7 +1040,7 @@ get_permit(struct parse *cfile, struct element *permit_head)
* client set is the empty set. */
if (next_token(&val, NULL, cfile) != TOKEN_BOOTP)
parse_error(cfile, "expecting \"bootp\"");
- permit = makeString(-1, "ALL");
+ permit = makeString(-1, "gen#ALL#");
negative = ISC_TRUE;
alias = makeString(-1, "dynamic bootp clients");
use_all = ISC_TRUE;
@@ -4707,6 +4756,7 @@ generate_class(struct parse *cfile, struct element *pool,
struct element *class;
struct element *elem;
struct element *prop;
+ struct element *depend;
struct element *result = NULL;
struct string *name;
struct string *expr;
@@ -4837,8 +4887,6 @@ generate_class(struct parse *cfile, struct element *pool,
listRemove(allow, i);
result = createString(makeString(-1,
boolValue(prop) ? "never" : "only"));
- /* pool class not yet merged */
- result->skip = ISC_TRUE;
mapSet(pool, result, "known-clients");
rescan = ISC_TRUE;
break;
@@ -4871,8 +4919,6 @@ generate_class(struct parse *cfile, struct element *pool,
if (boolValue(prop)) {
result = createString(stringValue(class));
TAILQ_CONCAT(&result->comments, &comments);
- /* pool class not yet merged */
- result->skip = ISC_TRUE;
mapSet(pool, result, "client-class");
return;
}
@@ -4888,10 +4934,14 @@ generate_class(struct parse *cfile, struct element *pool,
assert(prop->type == ELEMENT_BOOLEAN);
if (!boolValue(prop))
appendString(name, "!");
- prop = mapGet(elem, "class");
- assert(prop != NULL);
- assert(prop->type == ELEMENT_STRING);
- concatString(name, stringValue(prop));
+ if (mapContains(elem, "use-all"))
+ concatString(name, makeString(-1, "ALL"));
+ else {
+ prop = mapGet(elem, "class");
+ assert(prop != NULL);
+ assert(prop->type == ELEMENT_STRING);
+ concatString(name, stringValue(prop));
+ }
appendString(name, "#");
}
if (listSize(deny) > 0) {
@@ -4904,10 +4954,14 @@ generate_class(struct parse *cfile, struct element *pool,
assert(prop->type == ELEMENT_BOOLEAN);
if (boolValue(prop))
appendString(name, "!");
- prop = mapGet(elem, "class");
- assert(prop != NULL);
- assert(prop->type == ELEMENT_STRING);
- concatString(name, stringValue(prop));
+ if (mapContains(elem, "use-all"))
+ concatString(name, makeString(-1, "ALL"));
+ else {
+ prop = mapGet(elem, "class");
+ assert(prop != NULL);
+ assert(prop->type == ELEMENT_STRING);
+ concatString(name, stringValue(prop));
+ }
appendString(name, "#");
}
}
@@ -4928,14 +4982,13 @@ generate_class(struct parse *cfile, struct element *pool,
mapSet(class, createNull(), "referenced");
result = createString(name);
TAILQ_CONCAT(&result->comments, &comments);
- /* pool class not yet merged */
- result->skip = ISC_TRUE;
mapSet(pool, result, "client-class");
return;
}
/* Create expression */
class = createMap();
+ depend = createList();
expr = allocString();
if ((listSize(allow) > 0) && (listSize(deny) > 0))
@@ -4953,7 +5006,6 @@ generate_class(struct parse *cfile, struct element *pool,
if (negative)
appendString(expr, "not ");
appendString(expr, "member('");
- class->skip = ISC_TRUE;
concatString(expr, stringValue(prop));
appendString(expr, "')");
if (mapContains(elem, "use-all")) {
@@ -4962,7 +5014,8 @@ generate_class(struct parse *cfile, struct element *pool,
all = listGet(classes, 0);
if (!mapContains(all, "referenced"))
mapSet(all, createNull(), "referenced");
- }
+ } else
+ listPush(depend, createString(stringValue(prop)));
}
if ((listSize(allow) > 0) && (listSize(deny) > 0))
@@ -4980,7 +5033,6 @@ generate_class(struct parse *cfile, struct element *pool,
if (negative)
appendString(expr, "not ");
appendString(expr, "member('");
- class->skip = ISC_TRUE;
concatString(expr, stringValue(prop));
appendString(expr, "')");
if (mapContains(elem, "use-all")) {
@@ -4989,18 +5041,18 @@ generate_class(struct parse *cfile, struct element *pool,
all = listGet(classes, 0);
if (!mapContains(all, "referenced"))
mapSet(all, createNull(), "referenced");
- }
+ } else
+ listPush(depend, createString(stringValue(prop)));
}
mapSet(class, createString(name), "name");
mapSet(class, createString(expr), "test");
+ mapSet(class, depend, "depend");
/* inherit untranslatable cases */
class->skip |= allow->skip || deny->skip;
listPush(classes, class);
result = createString(name);
TAILQ_CONCAT(&result->comments, &comments);
- /* pool class not yet merged */
- result->skip = ISC_TRUE;
mapSet(pool, result, "client-class");
}
diff --git a/keama/doc.txt b/keama/doc.txt
index c186f62b..e470ce8a 100644
--- a/keama/doc.txt
+++ b/keama/doc.txt
@@ -522,4 +522,6 @@ Variables:
to recognize booleans and numbers. Unfortunately this is very spcific...
TODO:
+ - set subnet IDs
+ - add -A for partial config (authoritative, interface, ...)
- classes in pools (to finish: add tests, after merge)
diff --git a/keama/tests/ba/kea.json b/keama/tests/ba/kea.json
index 4feb7b98..d57f1dbc 100644
--- a/keama/tests/ba/kea.json
+++ b/keama/tests/ba/kea.json
@@ -145,11 +145,11 @@
"name": "MotoVIP",
/// from: match if (substring(option dhcp.vendor-class-identifier, 0, 7)) = 'MotoVIP'
"test": "substring(option[60].hex,0,7) == 'MotoVIP'"
+ },
+ {
+ "name": "gen#_AND_#!MotoVIP#",
+ "test": "not member('MotoVIP')"
}
-// {
-// "name": "gen#_AND_#!MotoVIP#",
-// "test": "not member('MotoVIP')"
-// }
],
"subnet4": [
# Loopback subnet
@@ -288,10 +288,10 @@
// ],
"pools": [
{
- "pool": "10.207.192.1 - 10.207.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.207.192.1 - 10.207.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -384,10 +384,10 @@
// },
"pools": [
{
- "pool": "10.208.64.1 - 10.208.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.208.64.1 - 10.208.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -479,10 +479,10 @@
// },
"pools": [
{
- "pool": "10.208.192.1 - 10.208.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.208.192.1 - 10.208.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -574,10 +574,10 @@
// },
"pools": [
{
- "pool": "10.209.64.1 - 10.209.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.209.64.1 - 10.209.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -669,10 +669,10 @@
// },
"pools": [
{
- "pool": "10.209.192.1 - 10.209.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.209.192.1 - 10.209.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -764,10 +764,10 @@
// },
"pools": [
{
- "pool": "10.210.64.1 - 10.210.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.210.64.1 - 10.210.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -859,10 +859,10 @@
// },
"pools": [
{
- "pool": "10.210.192.1 - 10.210.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.210.192.1 - 10.210.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -954,10 +954,10 @@
// },
"pools": [
{
- "pool": "10.212.64.1 - 10.212.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.212.64.1 - 10.212.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1049,10 +1049,10 @@
// },
"pools": [
{
- "pool": "10.212.192.1 - 10.212.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.212.192.1 - 10.212.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1144,10 +1144,10 @@
// },
"pools": [
{
- "pool": "10.213.64.1 - 10.213.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.213.64.1 - 10.213.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1239,10 +1239,10 @@
// },
"pools": [
{
- "pool": "10.213.192.1 - 10.213.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.213.192.1 - 10.213.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1334,10 +1334,10 @@
// },
"pools": [
{
- "pool": "10.214.64.1 - 10.214.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.214.64.1 - 10.214.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1429,10 +1429,10 @@
// },
"pools": [
{
- "pool": "10.214.192.1 - 10.214.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.214.192.1 - 10.214.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1525,10 +1525,10 @@
// },
"pools": [
{
- "pool": "10.215.64.0 - 10.215.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.215.64.0 - 10.215.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1621,10 +1621,10 @@
// },
"pools": [
{
- "pool": "10.215.129.0 - 10.215.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.215.129.0 - 10.215.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1716,10 +1716,10 @@
// },
"pools": [
{
- "pool": "10.216.64.1 - 10.216.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.216.64.1 - 10.216.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1811,10 +1811,10 @@
// },
"pools": [
{
- "pool": "10.216.192.1 - 10.216.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.216.192.1 - 10.216.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -1906,10 +1906,10 @@
// },
"pools": [
{
- "pool": "10.217.64.1 - 10.217.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.217.64.1 - 10.217.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2001,10 +2001,10 @@
// },
"pools": [
{
- "pool": "10.217.192.1 - 10.217.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.217.192.1 - 10.217.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2096,10 +2096,10 @@
// },
"pools": [
{
- "pool": "10.192.64.1 - 10.192.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.192.64.1 - 10.192.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2191,10 +2191,10 @@
// },
"pools": [
{
- "pool": "10.193.64.1 - 10.193.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.193.64.1 - 10.193.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2286,10 +2286,10 @@
// },
"pools": [
{
- "pool": "10.193.193.1 - 10.193.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.193.193.1 - 10.193.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2381,10 +2381,10 @@
// },
"pools": [
{
- "pool": "10.194.64.1 - 10.194.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.194.64.1 - 10.194.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2476,10 +2476,10 @@
// },
"pools": [
{
- "pool": "10.194.129.0 - 10.194.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.194.129.0 - 10.194.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2571,10 +2571,10 @@
// },
"pools": [
{
- "pool": "10.195.64.1 - 10.195.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.195.64.1 - 10.195.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2666,10 +2666,10 @@
// },
"pools": [
{
- "pool": "10.194.193.1 - 10.194.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.194.193.1 - 10.194.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2761,10 +2761,10 @@
// },
"pools": [
{
- "pool": "10.195.129.0 - 10.195.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.195.129.0 - 10.195.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2856,10 +2856,10 @@
// },
"pools": [
{
- "pool": "10.196.64.0 - 10.196.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.196.64.0 - 10.196.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -2951,10 +2951,10 @@
// },
"pools": [
{
- "pool": "10.196.129.0 - 10.196.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.196.129.0 - 10.196.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3046,10 +3046,10 @@
// },
"pools": [
{
- "pool": "10.197.64.1 - 10.197.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.197.64.1 - 10.197.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3141,10 +3141,10 @@
// },
"pools": [
{
- "pool": "10.195.193.1 - 10.195.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.195.193.1 - 10.195.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3236,10 +3236,10 @@
// },
"pools": [
{
- "pool": "10.198.64.1 - 10.198.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.198.64.1 - 10.198.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3331,10 +3331,10 @@
// },
"pools": [
{
- "pool": "10.199.64.1 - 10.199.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.199.64.1 - 10.199.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3426,10 +3426,10 @@
// },
"pools": [
{
- "pool": "10.224.64.1 - 10.224.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.224.64.1 - 10.224.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3521,10 +3521,10 @@
// },
"pools": [
{
- "pool": "10.227.1.1 - 10.227.31.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.227.1.1 - 10.227.31.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3615,10 +3615,10 @@
// },
"pools": [
{
- "pool": "10.227.33.1 - 10.227.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.227.33.1 - 10.227.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3710,10 +3710,10 @@
// },
"pools": [
{
- "pool": "10.227.65.1 - 10.227.95.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.227.65.1 - 10.227.95.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3805,10 +3805,10 @@
// },
"pools": [
{
- "pool": "10.227.97.1 - 10.227.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.227.97.1 - 10.227.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3900,10 +3900,10 @@
// },
"pools": [
{
- "pool": "10.197.129.1 - 10.197.159.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.197.129.1 - 10.197.159.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -3994,10 +3994,10 @@
// },
"pools": [
{
- "pool": "10.197.161.1 - 10.197.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.197.161.1 - 10.197.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4089,10 +4089,10 @@
// },
"pools": [
{
- "pool": "10.218.65.1 - 10.218.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.218.65.1 - 10.218.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4184,10 +4184,10 @@
// },
"pools": [
{
- "pool": "10.225.3.1 - 10.225.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.225.3.1 - 10.225.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4279,10 +4279,10 @@
// },
"pools": [
{
- "pool": "10.203.193.0 - 10.203.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.203.193.0 - 10.203.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4375,10 +4375,10 @@
// },
"pools": [
{
- "pool": "10.204.192.1 - 10.204.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.204.192.1 - 10.204.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4474,10 +4474,10 @@
// },
"pools": [
{
- "pool": "10.204.64.1 - 10.204.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.204.64.1 - 10.204.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4569,10 +4569,10 @@
// },
"pools": [
{
- "pool": "10.220.64.1 - 10.220.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.220.64.1 - 10.220.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4664,10 +4664,10 @@
// },
"pools": [
{
- "pool": "10.220.129.0 - 10.220.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.220.129.0 - 10.220.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4759,10 +4759,10 @@
// },
"pools": [
{
- "pool": "10.220.193.0 - 10.220.223.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.220.193.0 - 10.220.223.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4845,10 +4845,10 @@
// },
"pools": [
{
- "pool": "10.221.64.1 - 10.221.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.221.64.1 - 10.221.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -4941,10 +4941,10 @@
// },
"pools": [
{
- "pool": "10.232.1.1 - 10.232.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.232.1.1 - 10.232.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5037,10 +5037,10 @@
// },
"pools": [
{
- "pool": "10.232.65.0 - 10.232.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.232.65.0 - 10.232.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5133,10 +5133,10 @@
// },
"pools": [
{
- "pool": "10.233.1.0 - 10.233.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.233.1.0 - 10.233.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5230,10 +5230,10 @@
// },
"pools": [
{
- "pool": "10.205.65.0 - 10.205.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.205.65.0 - 10.205.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5326,10 +5326,10 @@
// },
"pools": [
{
- "pool": "10.205.129.0 - 10.205.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.205.129.0 - 10.205.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5422,10 +5422,10 @@
// },
"pools": [
{
- "pool": "10.226.1.0 - 10.226.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.226.1.0 - 10.226.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5518,10 +5518,10 @@
// },
"pools": [
{
- "pool": "10.224.129.0 - 10.224.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.224.129.0 - 10.224.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5614,10 +5614,10 @@
// },
"pools": [
{
- "pool": "10.205.1.0 - 10.205.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.205.1.0 - 10.205.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5710,10 +5710,10 @@
// },
"pools": [
{
- "pool": "10.193.129.0 - 10.193.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.193.129.0 - 10.193.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5806,10 +5806,10 @@
// },
"pools": [
{
- "pool": "10.203.129.0 - 10.203.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.203.129.0 - 10.203.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5902,10 +5902,10 @@
// },
"pools": [
{
- "pool": "10.218.1.0 - 10.218.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.218.1.0 - 10.218.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -5998,10 +5998,10 @@
// },
"pools": [
{
- "pool": "10.218.129.0 - 10.218.254.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.218.129.0 - 10.218.254.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6094,10 +6094,10 @@
// },
"pools": [
{
- "pool": "10.211.1.0 - 10.211.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.211.1.0 - 10.211.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6189,10 +6189,10 @@
// },
"pools": [
{
- "pool": "10.211.129.0 - 10.211.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.211.129.0 - 10.211.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6285,10 +6285,10 @@
// },
"pools": [
{
- "pool": "10.228.129.0 - 10.228.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.228.129.0 - 10.228.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6381,10 +6381,10 @@
// },
"pools": [
{
- "pool": "10.228.193.0 - 10.228.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.228.193.0 - 10.228.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6477,10 +6477,10 @@
// },
"pools": [
{
- "pool": "10.221.129.0 - 10.221.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.221.129.0 - 10.221.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6573,10 +6573,10 @@
// },
"pools": [
{
- "pool": "10.234.1.0 - 10.234.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.234.1.0 - 10.234.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6669,10 +6669,10 @@
// },
"pools": [
{
- "pool": "10.203.1.0 - 10.203.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.203.1.0 - 10.203.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6765,10 +6765,10 @@
// },
"pools": [
{
- "pool": "10.221.193.0 - 10.221.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.221.193.0 - 10.221.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6861,10 +6861,10 @@
// },
"pools": [
{
- "pool": "10.203.65.0 - 10.203.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.203.65.0 - 10.203.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -6957,10 +6957,10 @@
// },
"pools": [
{
- "pool": "10.222.129.0 - 10.222.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.222.129.0 - 10.222.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7053,10 +7053,10 @@
// },
"pools": [
{
- "pool": "10.222.193.0 - 10.222.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.222.193.0 - 10.222.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7149,10 +7149,10 @@
// },
"pools": [
{
- "pool": "10.228.1.0 - 10.228.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.228.1.0 - 10.228.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7245,10 +7245,10 @@
// },
"pools": [
{
- "pool": "10.228.65.0 - 10.228.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.228.65.0 - 10.228.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7341,10 +7341,10 @@
// },
"pools": [
{
- "pool": "10.222.65.0 - 10.222.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.222.65.0 - 10.222.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7437,10 +7437,10 @@
// },
"pools": [
{
- "pool": "10.222.1.0 - 10.222.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.222.1.0 - 10.222.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7533,10 +7533,10 @@
// },
"pools": [
{
- "pool": "10.226.65.0 - 10.226.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.226.65.0 - 10.226.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7629,10 +7629,10 @@
// },
"pools": [
{
- "pool": "10.226.193.0 - 10.226.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.226.193.0 - 10.226.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7724,10 +7724,10 @@
// },
"pools": [
{
- "pool": "10.176.1.0 - 10.176.31.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.176.1.0 - 10.176.31.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7819,10 +7819,10 @@
// },
"pools": [
{
- "pool": "10.176.33.0 - 10.176.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.176.33.0 - 10.176.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -7915,10 +7915,10 @@
// },
"pools": [
{
- "pool": "10.176.65.0 - 10.176.95.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.176.65.0 - 10.176.95.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8011,10 +8011,10 @@
// },
"pools": [
{
- "pool": "10.176.97.0 - 10.176.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.176.97.0 - 10.176.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8107,10 +8107,10 @@
// },
"pools": [
{
- "pool": "10.176.129.0 - 10.176.159.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.176.129.0 - 10.176.159.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8203,10 +8203,10 @@
// },
"pools": [
{
- "pool": "10.176.161.0 - 10.176.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.176.161.0 - 10.176.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8299,10 +8299,10 @@
// },
"pools": [
{
- "pool": "10.176.193.0 - 10.176.223.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.176.193.0 - 10.176.223.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8395,10 +8395,10 @@
// },
"pools": [
{
- "pool": "10.205.193.0 - 10.205.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.205.193.0 - 10.205.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8491,10 +8491,10 @@
// },
"pools": [
{
- "pool": "10.192.193.0 - 10.192.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.192.193.0 - 10.192.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8587,10 +8587,10 @@
// },
"pools": [
{
- "pool": "10.192.129.0 - 10.192.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.192.129.0 - 10.192.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8683,10 +8683,10 @@
// },
"pools": [
{
- "pool": "10.225.129.0 - 10.225.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.225.129.0 - 10.225.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8779,10 +8779,10 @@
// },
"pools": [
{
- "pool": "10.211.193.0 - 10.211.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.211.193.0 - 10.211.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8875,10 +8875,10 @@
// },
"pools": [
{
- "pool": "10.211.65.0 - 10.211.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.211.65.0 - 10.211.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -8971,10 +8971,10 @@
// },
"pools": [
{
- "pool": "10.225.193.0 - 10.225.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.225.193.0 - 10.225.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9067,10 +9067,10 @@
// },
"pools": [
{
- "pool": "10.215.193.0 - 10.215.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.215.193.0 - 10.215.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9163,10 +9163,10 @@
// },
"pools": [
{
- "pool": "10.226.129.0 - 10.226.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.226.129.0 - 10.226.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9259,10 +9259,10 @@
// },
"pools": [
{
- "pool": "10.177.1.0 - 10.177.31.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.177.1.0 - 10.177.31.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9355,10 +9355,10 @@
// },
"pools": [
{
- "pool": "10.177.65.0 - 10.177.95.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.177.65.0 - 10.177.95.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9451,10 +9451,10 @@
// },
"pools": [
{
- "pool": "10.177.33.0 - 10.177.63.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.177.33.0 - 10.177.63.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9547,10 +9547,10 @@
// },
"pools": [
{
- "pool": "10.177.97.0 - 10.177.127.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.177.97.0 - 10.177.127.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9643,10 +9643,10 @@
// },
"pools": [
{
- "pool": "10.177.129.0 - 10.177.159.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.177.129.0 - 10.177.159.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9739,10 +9739,10 @@
// },
"pools": [
{
- "pool": "10.177.193.0 - 10.177.223.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.177.193.0 - 10.177.223.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9835,10 +9835,10 @@
// },
"pools": [
{
- "pool": "10.232.193.0 - 10.232.223.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.232.193.0 - 10.232.223.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -9931,10 +9931,10 @@
// },
"pools": [
{
- "pool": "10.232.129.0 - 10.232.159.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.232.129.0 - 10.232.159.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -10027,10 +10027,10 @@
// },
"pools": [
{
- "pool": "10.197.193.0 - 10.197.223.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.197.193.0 - 10.197.223.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -10123,10 +10123,10 @@
// },
"pools": [
{
- "pool": "10.197.225.0 - 10.197.255.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.197.225.0 - 10.197.255.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -10219,10 +10219,10 @@
// },
"pools": [
{
- "pool": "10.198.129.0 - 10.198.159.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.198.129.0 - 10.198.159.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
},
@@ -10315,10 +10315,10 @@
// },
"pools": [
{
- "pool": "10.198.161.0 - 10.198.191.254"
-// /// From:
-// /// deny MotoVIP
-// "client-class": "gen#_AND_#!MotoVIP#"
+ "pool": "10.198.161.0 - 10.198.191.254",
+ /// From:
+ /// deny MotoVIP
+ "client-class": "gen#_AND_#!MotoVIP#"
}
]
}
diff --git a/keama/tests/dhcp3/kea.json b/keama/tests/dhcp3/kea.json
index f3d79bbf..ec1be468 100644
--- a/keama/tests/dhcp3/kea.json
+++ b/keama/tests/dhcp3/kea.json
@@ -94,13 +94,13 @@
// ],
"pools": [
{
- "pool": "50.30.208.90 - 50.30.208.94"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.208.90 - 50.30.208.94",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -168,13 +168,13 @@
// ],
"pools": [
{
- "pool": "68.234.128.100 - 68.234.128.126"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.128.100 - 68.234.128.126",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -236,13 +236,13 @@
// ],
"pools": [
{
- "pool": "96.63.203.141 - 96.63.203.142"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.203.141 - 96.63.203.142",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -304,13 +304,13 @@
// ],
"pools": [
{
- "pool": "66.253.181.205 - 66.253.181.206"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.181.205 - 66.253.181.206",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -355,12 +355,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "66.253.181.90 - 66.253.181.119"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "66.253.181.90 - 66.253.181.119",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -455,13 +455,13 @@
// ],
"pools": [
{
- "pool": "68.180.82.21 - 68.180.82.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.82.21 - 68.180.82.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -523,13 +523,13 @@
// ],
"pools": [
{
- "pool": "68.180.83.21 - 68.180.83.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.83.21 - 68.180.83.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -591,13 +591,13 @@
// ],
"pools": [
{
- "pool": "173.230.8.157 - 173.230.8.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.8.157 - 173.230.8.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -659,13 +659,13 @@
// ],
"pools": [
{
- "pool": "66.253.131.5 - 66.253.131.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.131.5 - 66.253.131.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -741,13 +741,13 @@
// ],
"pools": [
{
- "pool": "68.253.247.21 - 68.253.247.126"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.253.247.21 - 68.253.247.126",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
}
@@ -965,47 +965,47 @@
"name": "BEC",
/// from: match if (substring(hardware, 1, 3)) = 0x0004ed
"test": "substring(pkt4.mac,0,3) == 0x0004ed"
+ },
+ {
+ "name": "gen#_AND_#!ruckus#!ubnt#",
+ "test": "not member('ruckus') and not member('ubnt')"
+ },
+ {
+ "name": "gen#ruckus#ubnt#",
+ "test": "member('ruckus') or member('ubnt')"
+ },
+ {
+ "name": "gen#_AND_#!ruckus#",
+ "test": "not member('ruckus')"
+ },
+ {
+ "name": "gen#ruckus#BEC#",
+ "test": "member('ruckus') or member('BEC')"
+ },
+ {
+ "name": "gen#_AND_#!Trapeze#!Trapeze2#",
+ "test": "not member('Trapeze') and not member('Trapeze2')"
+ },
+ {
+ "name": "gen#Trapeze#Trapeze2#",
+ "test": "member('Trapeze') or member('Trapeze2')"
+ },
+ {
+ "name": "gen#_AND_#!ruckus#!ubnt#!HP#",
+ "test": "not member('ruckus') and not member('ubnt') and not member('HP')"
+ },
+ {
+ "name": "gen#ruckus#ubnt#HP#",
+ "test": "member('ruckus') or member('ubnt') or member('HP')"
+ },
+ {
+ "name": "gen#_AND_#!ruckus#!cm-unregistered#!ubnt#",
+ "test": "not member('ruckus') and not member('cm-unregistered') and not member('ubnt')"
+ },
+ {
+ "name": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#",
+ "test": "not member('ruckus') and not member('cm-unregistered') and not member('3010s')"
}
-// {
-// "name": "gen#_AND_#!ruckus#!ubnt#",
-// "test": "not member('ruckus') and not member('ubnt')"
-// }
-// {
-// "name": "gen#ruckus#ubnt#",
-// "test": "member('ruckus') or member('ubnt')"
-// }
-// {
-// "name": "gen#_AND_#!ruckus#",
-// "test": "not member('ruckus')"
-// }
-// {
-// "name": "gen#ruckus#BEC#",
-// "test": "member('ruckus') or member('BEC')"
-// }
-// {
-// "name": "gen#_AND_#!Trapeze#!Trapeze2#",
-// "test": "not member('Trapeze') and not member('Trapeze2')"
-// }
-// {
-// "name": "gen#Trapeze#Trapeze2#",
-// "test": "member('Trapeze') or member('Trapeze2')"
-// }
-// {
-// "name": "gen#_AND_#!ruckus#!ubnt#!HP#",
-// "test": "not member('ruckus') and not member('ubnt') and not member('HP')"
-// }
-// {
-// "name": "gen#ruckus#ubnt#HP#",
-// "test": "member('ruckus') or member('ubnt') or member('HP')"
-// }
-// {
-// "name": "gen#_AND_#!ruckus#!cm-unregistered#!ubnt#",
-// "test": "not member('ruckus') and not member('cm-unregistered') and not member('ubnt')"
-// }
-// {
-// "name": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#",
-// "test": "not member('ruckus') and not member('cm-unregistered') and not member('3010s')"
-// }
],
/// Kea shared-networks are different, cf Kea #5430
"shared-networks": [
@@ -1070,13 +1070,13 @@
// ],
"pools": [
{
- "pool": "66.253.160.21 - 66.253.163.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.160.21 - 66.253.163.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -1182,13 +1182,13 @@
"valid-lifetime": 14400,
"pools": [
{
- "pool": "74.223.30.3 - 74.223.31.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "74.223.30.3 - 74.223.31.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -1225,13 +1225,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.114.100 - 10.146.114.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.114.100 - 10.146.114.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -1300,13 +1300,13 @@
// ],
"pools": [
{
- "pool": "68.180.118.21 - 68.180.119.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.118.21 - 68.180.119.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -1374,13 +1374,13 @@
// ],
"pools": [
{
- "pool": "216.171.45.3 - 216.171.45.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.45.3 - 216.171.45.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -1417,13 +1417,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.10.100 - 10.149.10.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.10.100 - 10.149.10.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -1493,13 +1493,13 @@
// ],
"pools": [
{
- "pool": "76.10.34.21 - 76.10.35.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.34.21 - 76.10.35.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -1550,13 +1550,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.58.100 - 10.149.58.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.58.100 - 10.149.58.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -1625,13 +1625,13 @@
// ],
"pools": [
{
- "pool": "50.30.252.21 - 50.30.253.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.252.21 - 50.30.253.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -1688,13 +1688,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.90.100 - 10.144.90.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.90.100 - 10.144.90.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -1784,13 +1784,13 @@
// ],
"pools": [
{
- "pool": "76.10.32.21 - 76.10.33.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.32.21 - 76.10.33.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -1850,13 +1850,13 @@
// ],
"pools": [
{
- "pool": "66.253.212.3 - 66.253.212.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.212.3 - 66.253.212.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -1893,13 +1893,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.62.100 - 10.149.62.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.62.100 - 10.149.62.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -1971,13 +1971,13 @@
// ],
"pools": [
{
- "pool": "68.180.64.21 - 68.180.67.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.64.21 - 68.180.67.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -2028,13 +2028,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.122.100 - 10.149.122.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.122.100 - 10.149.122.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -2104,13 +2104,13 @@
// ],
"pools": [
{
- "pool": "50.30.250.21 - 50.30.251.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.250.21 - 50.30.251.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -2167,13 +2167,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.86.100 - 10.144.86.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.86.100 - 10.144.86.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -2233,13 +2233,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "76.10.14.0 - 76.10.15.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.14.0 - 76.10.15.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -6427,13 +6427,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.153.14.100 - 10.153.14.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.14.100 - 10.153.14.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -6503,13 +6503,13 @@
// ],
"pools": [
{
- "pool": "96.63.220.21 - 96.63.223.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.220.21 - 96.63.223.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -6546,13 +6546,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.152.38.100 - 10.152.38.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.38.100 - 10.152.38.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -6622,13 +6622,13 @@
// ],
"pools": [
{
- "pool": "50.30.210.21 - 50.30.211.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.210.21 - 50.30.211.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -6673,13 +6673,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.152.6.100 - 10.152.6.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.6.100 - 10.152.6.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -6749,13 +6749,13 @@
// ],
"pools": [
{
- "pool": "50.30.224.21 - 50.30.231.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.224.21 - 50.30.231.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -6800,13 +6800,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.152.42.100 - 10.152.42.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.42.100 - 10.152.42.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -6875,13 +6875,13 @@
// ],
"pools": [
{
- "pool": "76.10.8.21 - 76.10.11.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.8.21 - 76.10.11.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -6949,13 +6949,13 @@
// ],
"pools": [
{
- "pool": "66.253.248.3 - 66.253.249.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.248.3 - 66.253.249.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7010,13 +7010,13 @@
// ],
"pools": [
{
- "pool": "10.144.22.20 - 10.144.22.250"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.22.20 - 10.144.22.250",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -7086,13 +7086,13 @@
// ],
"pools": [
{
- "pool": "50.30.216.21 - 50.30.219.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.216.21 - 50.30.219.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7152,13 +7152,13 @@
// ],
"pools": [
{
- "pool": "50.30.214.3 - 50.30.215.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.214.3 - 50.30.215.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -7226,13 +7226,13 @@
// ],
"pools": [
{
- "pool": "50.30.244.3 - 50.30.244.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.244.3 - 50.30.244.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7269,13 +7269,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.152.10.100 - 10.152.10.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.10.100 - 10.152.10.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -7345,13 +7345,13 @@
// ],
"pools": [
{
- "pool": "66.253.167.21 - 66.253.167.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.167.21 - 66.253.167.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7411,13 +7411,13 @@
// ],
"pools": [
{
- "pool": "68.180.44.3 - 68.180.45.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.44.3 - 68.180.45.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7477,13 +7477,13 @@
// ],
"pools": [
{
- "pool": "68.180.46.3 - 68.180.47.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.46.3 - 68.180.47.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7543,13 +7543,13 @@
// ],
"pools": [
{
- "pool": "68.180.52.3 - 68.180.53.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.52.3 - 68.180.53.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7609,13 +7609,13 @@
// ],
"pools": [
{
- "pool": "68.180.54.3 - 68.180.55.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.54.3 - 68.180.55.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7649,13 +7649,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.153.17.20 - 10.153.17.254"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.17.20 - 10.153.17.254",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
},
@@ -7686,13 +7686,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.153.18.20 - 10.153.18.254"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.18.20 - 10.153.18.254",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -7761,13 +7761,13 @@
// ],
"pools": [
{
- "pool": "50.30.160.21 - 50.30.161.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.160.21 - 50.30.161.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7827,13 +7827,13 @@
// ],
"pools": [
{
- "pool": "10.146.121.3 - 10.146.121.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.146.121.3 - 10.146.121.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7899,13 +7899,13 @@
// ],
"pools": [
{
- "pool": "10.146.123.3 - 10.146.123.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.146.123.3 - 10.146.123.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -7936,13 +7936,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.152.14.100 - 10.152.14.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.14.100 - 10.152.14.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -8012,13 +8012,13 @@
// ],
"pools": [
{
- "pool": "50.30.209.21 - 50.30.209.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.209.21 - 50.30.209.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8055,13 +8055,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.152.18.100 - 10.152.18.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.18.100 - 10.152.18.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -8131,13 +8131,13 @@
// ],
"pools": [
{
- "pool": "50.30.212.21 - 50.30.213.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.212.21 - 50.30.213.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8174,13 +8174,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.152.22.100 - 10.152.22.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.22.100 - 10.152.22.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -8233,13 +8233,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "24.248.188.21 - 24.248.191.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "24.248.188.21 - 24.248.191.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -8305,13 +8305,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "50.30.153.3 - 50.30.153.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.153.3 - 50.30.153.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8354,13 +8354,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "50.30.182.3 - 50.30.182.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.182.3 - 50.30.182.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8403,13 +8403,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "96.63.213.3 - 96.63.213.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.213.3 - 96.63.213.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8452,13 +8452,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.114.3 - 173.230.115.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.114.3 - 173.230.115.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8495,13 +8495,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.152.26.100 - 10.152.26.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.26.100 - 10.152.26.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -8570,13 +8570,13 @@
// ],
"pools": [
{
- "pool": "68.180.16.21 - 68.180.19.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.16.21 - 68.180.19.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8636,13 +8636,13 @@
// ],
"pools": [
{
- "pool": "173.230.53.3 - 173.230.53.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.53.3 - 173.230.53.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8702,13 +8702,13 @@
// ],
"pools": [
{
- "pool": "173.230.113.3 - 173.230.113.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.113.3 - 173.230.113.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8768,13 +8768,13 @@
// ],
"pools": [
{
- "pool": "10.180.126.3 - 10.180.127.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.126.3 - 10.180.127.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -8829,13 +8829,13 @@
// ],
"pools": [
{
- "pool": "10.152.30.100 - 10.152.30.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.30.100 - 10.152.30.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -8905,13 +8905,13 @@
// ],
"pools": [
{
- "pool": "68.180.92.21 - 68.180.93.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.92.21 - 68.180.93.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -8979,13 +8979,13 @@
// ],
"pools": [
{
- "pool": "68.180.127.3 - 68.180.127.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.127.3 - 68.180.127.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -9045,13 +9045,13 @@
// ],
"pools": [
{
- "pool": "173.230.122.3 - 173.230.122.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.122.3 - 173.230.122.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -9088,13 +9088,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.6.100 - 10.144.6.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.6.100 - 10.144.6.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -9219,13 +9219,13 @@
// ],
"pools": [
{
- "pool": "10.144.38.80 - 10.144.38.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.38.80 - 10.144.38.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -9295,13 +9295,13 @@
// ],
"pools": [
{
- "pool": "66.253.176.21 - 66.253.177.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.176.21 - 66.253.177.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -9361,13 +9361,13 @@
// ],
"pools": [
{
- "pool": "66.253.205.3 - 66.253.205.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.205.3 - 66.253.205.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -9427,13 +9427,13 @@
// ],
"pools": [
{
- "pool": "66.253.213.3 - 66.253.213.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.213.3 - 66.253.213.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -9488,13 +9488,13 @@
// ],
"pools": [
{
- "pool": "10.144.14.100 - 10.144.14.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.14.100 - 10.144.14.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -9564,13 +9564,13 @@
// ],
"pools": [
{
- "pool": "50.30.134.21 - 50.30.135.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.134.21 - 50.30.135.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -9625,13 +9625,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.153.26.100 - 10.153.26.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.26.100 - 10.153.26.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -9700,13 +9700,13 @@
// ],
"pools": [
{
- "pool": "76.10.29.21 - 76.10.29.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.29.21 - 76.10.29.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -9766,13 +9766,13 @@
// ],
"pools": [
{
- "pool": "173.230.127.3 - 173.230.127.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.127.3 - 173.230.127.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -9827,13 +9827,13 @@
// ],
"pools": [
{
- "pool": "10.148.26.100 - 10.148.26.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.148.26.100 - 10.148.26.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -9902,13 +9902,13 @@
// ],
"pools": [
{
- "pool": "68.234.148.21 - 68.234.151.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.148.21 - 68.234.151.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -9963,13 +9963,13 @@
// ],
"pools": [
{
- "pool": "10.153.10.100 - 10.153.10.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.10.100 - 10.153.10.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -10037,13 +10037,13 @@
// ],
"pools": [
{
- "pool": "66.253.132.21 - 66.253.135.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.132.21 - 66.253.135.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -10088,13 +10088,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.148.10.100 - 10.148.10.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.148.10.100 - 10.148.10.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -10171,13 +10171,13 @@
// ],
"pools": [
{
- "pool": "66.253.208.21 - 66.253.211.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.208.21 - 66.253.211.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -10222,13 +10222,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.148.22.100 - 10.148.22.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.148.22.100 - 10.148.22.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -10298,13 +10298,13 @@
// ],
"pools": [
{
- "pool": "66.253.244.21 - 66.253.245.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.244.21 - 66.253.245.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -10364,13 +10364,13 @@
// ],
"pools": [
{
- "pool": "66.253.254.3 - 66.253.255.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.254.3 - 66.253.255.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -10430,13 +10430,13 @@
// ],
"pools": [
{
- "pool": "66.253.156.3 - 66.253.156.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.156.3 - 66.253.156.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -10491,13 +10491,13 @@
// ],
"pools": [
{
- "pool": "10.148.66.100 - 10.148.66.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.148.66.100 - 10.148.66.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -10561,13 +10561,13 @@
// ],
"pools": [
{
- "pool": "10.16.4.20 - 10.16.7.200"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.16.4.20 - 10.16.7.200",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -10608,13 +10608,13 @@
// ],
"pools": [
{
- "pool": "10.153.30.20 - 10.153.30.200"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.30.20 - 10.153.30.200",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -10666,12 +10666,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.234.136.21 - 68.234.139.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "68.234.136.21 - 68.234.139.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -10728,12 +10728,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.234.254.3 - 68.234.254.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "68.234.254.3 - 68.234.254.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -10770,145 +10770,145 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.6 - 10.144.82.6"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.6 - 10.144.82.6",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.18 - 10.144.82.18"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.18 - 10.144.82.18",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.96 - 10.144.82.96"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.96 - 10.144.82.96",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.165 - 10.144.82.165"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.165 - 10.144.82.165",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.176 - 10.144.82.184"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.176 - 10.144.82.184",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.193 - 10.144.82.193"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.193 - 10.144.82.193",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.206 - 10.144.82.206"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.206 - 10.144.82.206",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.213 - 10.144.82.219"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.213 - 10.144.82.219",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.223 - 10.144.82.223"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.223 - 10.144.82.223",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.227 - 10.144.82.227"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.227 - 10.144.82.227",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.234 - 10.144.82.234"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.234 - 10.144.82.234",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.237 - 10.144.82.239"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.237 - 10.144.82.239",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.82.241 - 10.144.82.248"
-// /// From:
-// /// allow ruckus
-// /// allow BEC
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#BEC#"
+ "pool": "10.144.82.241 - 10.144.82.248",
+ /// From:
+ /// allow ruckus
+ /// allow BEC
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#BEC#"
}
],
"reservations": [
@@ -13762,13 +13762,13 @@
// ],
"pools": [
{
- "pool": "173.230.118.21 - 173.230.119.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.118.21 - 173.230.119.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -13836,13 +13836,13 @@
// ],
"pools": [
{
- "pool": "173.230.121.3 - 173.230.121.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.121.3 - 173.230.121.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -13902,13 +13902,13 @@
// ],
"pools": [
{
- "pool": "50.30.139.3 - 50.30.139.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.139.3 - 50.30.139.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -13945,13 +13945,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.78.100 - 10.144.78.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.78.100 - 10.144.78.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -14020,13 +14020,13 @@
// ],
"pools": [
{
- "pool": "173.230.92.21 - 173.230.95.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.92.21 - 173.230.95.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14081,13 +14081,13 @@
// ],
"pools": [
{
- "pool": "10.145.6.100 - 10.145.6.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.6.100 - 10.145.6.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -14142,13 +14142,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.234.200.21 - 68.234.207.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.200.21 - 68.234.207.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14185,13 +14185,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.148.58.100 - 10.148.58.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.148.58.100 - 10.148.58.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -14261,13 +14261,13 @@
// ],
"pools": [
{
- "pool": "67.79.132.21 - 67.79.133.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "67.79.132.21 - 67.79.133.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14304,13 +14304,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.106.100 - 10.149.106.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.106.100 - 10.149.106.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -14379,13 +14379,13 @@
// ],
"pools": [
{
- "pool": "66.253.220.21 - 66.253.223.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.220.21 - 66.253.223.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14425,13 +14425,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.110.100 - 10.144.110.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.110.100 - 10.144.110.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -14501,13 +14501,13 @@
// ],
"pools": [
{
- "pool": "68.234.130.21 - 68.234.130.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.130.21 - 68.234.130.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14544,13 +14544,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.147.18.100 - 10.147.18.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.147.18.100 - 10.147.18.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -14620,13 +14620,13 @@
// ],
"pools": [
{
- "pool": "96.63.214.21 - 96.63.215.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.214.21 - 96.63.215.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14657,13 +14657,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.147.20.100 - 10.147.20.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.147.20.100 - 10.147.20.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -14732,13 +14732,13 @@
// ],
"pools": [
{
- "pool": "66.253.144.21 - 66.253.147.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.144.21 - 66.253.147.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14798,13 +14798,13 @@
// ],
"pools": [
{
- "pool": "10.144.152.3 - 10.144.153.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.144.152.3 - 10.144.153.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14864,13 +14864,13 @@
// ],
"pools": [
{
- "pool": "10.144.154.3 - 10.144.155.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.144.154.3 - 10.144.155.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -14925,13 +14925,13 @@
// ],
"pools": [
{
- "pool": "10.144.114.50 - 10.144.114.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.114.50 - 10.144.114.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -15001,13 +15001,13 @@
// ],
"pools": [
{
- "pool": "76.10.38.21 - 76.10.39.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.38.21 - 76.10.39.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -15052,13 +15052,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.147.134.100 - 10.147.134.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.147.134.100 - 10.147.134.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -15128,13 +15128,13 @@
// ],
"pools": [
{
- "pool": "50.30.176.21 - 50.30.179.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.176.21 - 50.30.179.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -15179,13 +15179,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.154.100 - 10.149.154.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.154.100 - 10.149.154.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -15255,13 +15255,13 @@
// ],
"pools": [
{
- "pool": "68.234.224.21 - 68.234.231.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.224.21 - 68.234.231.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -15298,13 +15298,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.147.30.100 - 10.147.30.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.147.30.100 - 10.147.30.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -15374,12 +15374,12 @@
// ],
"pools": [
{
- "pool": "76.10.56.21 - 76.10.57.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "76.10.56.21 - 76.10.57.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -15424,13 +15424,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.147.54.100 - 10.147.54.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.147.54.100 - 10.147.54.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -15500,13 +15500,13 @@
// ],
"pools": [
{
- "pool": "68.180.4.21 - 68.180.5.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.4.21 - 68.180.5.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -15566,13 +15566,13 @@
// ],
"pools": [
{
- "pool": "68.180.38.3 - 68.180.39.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.38.3 - 68.180.39.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -15609,13 +15609,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.147.58.100 - 10.147.58.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.147.58.100 - 10.147.58.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -15667,12 +15667,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.234.188.21 - 68.234.191.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "68.234.188.21 - 68.234.191.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -15717,12 +15717,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.26.100 - 10.151.26.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.151.26.100 - 10.151.26.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -15777,12 +15777,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.14.229 - 173.230.14.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.14.229 - 173.230.14.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -15813,12 +15813,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.189.100 - 10.159.189.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.189.100 - 10.159.189.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -15888,13 +15888,13 @@
// ],
"pools": [
{
- "pool": "96.63.205.133 - 96.63.205.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.205.133 - 96.63.205.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -15925,13 +15925,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.11.100 - 10.159.11.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.11.100 - 10.159.11.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -15986,12 +15986,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.10.37 - 173.230.10.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.10.37 - 173.230.10.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -16022,12 +16022,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.221.100 - 10.159.221.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.221.100 - 10.159.221.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -16082,12 +16082,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.16.133 - 173.230.16.190"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.16.133 - 173.230.16.190",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -16118,12 +16118,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.121.100 - 10.159.121.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.121.100 - 10.159.121.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -16193,13 +16193,13 @@
// ],
"pools": [
{
- "pool": "173.230.28.197 - 173.230.28.222"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.28.197 - 173.230.28.222",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -16230,13 +16230,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.171.100 - 10.159.171.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.171.100 - 10.159.171.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -16306,13 +16306,13 @@
// ],
"pools": [
{
- "pool": "173.230.18.37 - 173.230.18.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.18.37 - 173.230.18.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -16343,13 +16343,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.222.100 - 10.159.222.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.222.100 - 10.159.222.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -16404,12 +16404,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.16.197 - 173.230.16.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.16.197 - 173.230.16.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -16440,12 +16440,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.133.100 - 10.159.133.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.133.100 - 10.159.133.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -16518,13 +16518,13 @@
// ],
"pools": [
{
- "pool": "96.63.200.69 - 96.63.200.94"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.200.69 - 96.63.200.94",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -16555,13 +16555,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.17.100 - 10.159.17.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.17.100 - 10.159.17.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -16631,13 +16631,13 @@
// ],
"pools": [
{
- "pool": "216.171.3.197 - 216.171.3.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.3.197 - 216.171.3.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -16668,13 +16668,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.18.100 - 10.159.18.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.18.100 - 10.159.18.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -16744,13 +16744,13 @@
// ],
"pools": [
{
- "pool": "96.63.200.101 - 96.63.200.126"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.200.101 - 96.63.200.126",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -16810,13 +16810,13 @@
// ],
"pools": [
{
- "pool": "173.230.11.67 - 173.230.11.94"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.11.67 - 173.230.11.94",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -16847,13 +16847,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.19.100 - 10.159.19.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.19.100 - 10.159.19.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -16917,12 +16917,12 @@
// ],
"pools": [
{
- "pool": "173.230.11.5 - 173.230.11.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.11.5 - 173.230.11.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -16953,12 +16953,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.214.100 - 10.159.214.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.214.100 - 10.159.214.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -17028,13 +17028,13 @@
// ],
"pools": [
{
- "pool": "66.253.172.133 - 66.253.172.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.172.133 - 66.253.172.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -17094,13 +17094,13 @@
// ],
"pools": [
{
- "pool": "66.253.172.195 - 66.253.172.222"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.172.195 - 66.253.172.222",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -17131,13 +17131,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.26.100 - 10.159.26.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.26.100 - 10.159.26.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -17192,12 +17192,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.17.5 - 173.230.17.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.17.5 - 173.230.17.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -17228,12 +17228,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.122.100 - 10.159.122.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.122.100 - 10.159.122.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -17303,13 +17303,13 @@
// ],
"pools": [
{
- "pool": "173.230.17.133 - 173.230.17.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.17.133 - 173.230.17.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -17340,13 +17340,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.134.100 - 10.159.134.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.134.100 - 10.159.134.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -17416,13 +17416,13 @@
// ],
"pools": [
{
- "pool": "173.230.13.37 - 173.230.13.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.13.37 - 173.230.13.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -17482,13 +17482,13 @@
// ],
"pools": [
{
- "pool": "173.230.19.163 - 173.230.19.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.19.163 - 173.230.19.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -17519,13 +17519,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.157.100 - 10.159.157.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.157.100 - 10.159.157.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -17580,12 +17580,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.17.69 - 173.230.17.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.17.69 - 173.230.17.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -17616,12 +17616,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.115.100 - 10.159.115.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.115.100 - 10.159.115.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -17676,12 +17676,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.25.101 - 173.230.25.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.25.101 - 173.230.25.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -17712,12 +17712,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.165.100 - 10.159.165.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.165.100 - 10.159.165.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -17787,13 +17787,13 @@
// ],
"pools": [
{
- "pool": "173.230.8.69 - 173.230.8.94"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.8.69 - 173.230.8.94",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -17853,13 +17853,13 @@
// ],
"pools": [
{
- "pool": "173.230.18.3 - 173.230.18.30"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.18.3 - 173.230.18.30",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -17890,13 +17890,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.120.100 - 10.159.120.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.120.100 - 10.159.120.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -17949,13 +17949,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.18.69 - 173.230.18.126"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.18.69 - 173.230.18.126",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -17986,13 +17986,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.102.100 - 10.159.102.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.102.100 - 10.159.102.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -18047,12 +18047,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.23.101 - 173.230.23.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.23.101 - 173.230.23.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -18083,12 +18083,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.162.100 - 10.159.162.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.162.100 - 10.159.162.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -18143,12 +18143,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.14.101 - 173.230.14.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.14.101 - 173.230.14.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -18179,12 +18179,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.16.100 - 10.159.16.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.16.100 - 10.159.16.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -18254,13 +18254,13 @@
// ],
"pools": [
{
- "pool": "173.230.24.101 - 173.230.24.126"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.24.101 - 173.230.24.126",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -18291,13 +18291,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.163.100 - 10.159.163.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.163.100 - 10.159.163.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -18367,13 +18367,13 @@
// ],
"pools": [
{
- "pool": "96.63.206.21 - 96.63.206.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.206.21 - 96.63.206.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -18404,13 +18404,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.108.100 - 10.151.108.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.151.108.100 - 10.151.108.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -18465,12 +18465,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.14.197 - 173.230.14.222"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.14.197 - 173.230.14.222",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -18501,12 +18501,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.13.100 - 10.159.13.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.13.100 - 10.159.13.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -18576,13 +18576,13 @@
// ],
"pools": [
{
- "pool": "173.230.8.133 - 173.230.8.142"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.8.133 - 173.230.8.142",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -18642,13 +18642,13 @@
// ],
"pools": [
{
- "pool": "96.63.203.147 - 96.63.203.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.203.147 - 96.63.203.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -18679,13 +18679,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.236.100 - 10.159.236.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.236.100 - 10.159.236.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -18740,12 +18740,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.10.229 - 173.230.10.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.10.229 - 173.230.10.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -18776,12 +18776,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.217.100 - 10.159.217.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.217.100 - 10.159.217.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -18851,13 +18851,13 @@
// ],
"pools": [
{
- "pool": "173.230.27.37 - 173.230.27.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.27.37 - 173.230.27.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -18888,13 +18888,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.166.100 - 10.159.166.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.166.100 - 10.159.166.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -18964,13 +18964,13 @@
// ],
"pools": [
{
- "pool": "66.253.172.69 - 66.253.172.94"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.172.69 - 66.253.172.94",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -19001,13 +19001,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.24.100 - 10.159.24.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.24.100 - 10.159.24.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -19062,12 +19062,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.14.37 - 173.230.14.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.14.37 - 173.230.14.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -19098,12 +19098,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.191.100 - 10.159.191.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.191.100 - 10.159.191.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -19173,13 +19173,13 @@
// ],
"pools": [
{
- "pool": "96.63.207.5 - 96.63.207.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.207.5 - 96.63.207.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -19210,13 +19210,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.116.100 - 10.159.116.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.116.100 - 10.159.116.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -19286,13 +19286,13 @@
// ],
"pools": [
{
- "pool": "173.230.27.5 - 173.230.27.30"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.27.5 - 173.230.27.30",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -19323,13 +19323,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.154.100 - 10.159.154.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.154.100 - 10.159.154.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -19399,13 +19399,13 @@
// ],
"pools": [
{
- "pool": "173.230.20.69 - 173.230.20.94"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.20.69 - 173.230.20.94",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -19465,13 +19465,13 @@
// ],
"pools": [
{
- "pool": "173.230.17.227 - 173.230.17.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.17.227 - 173.230.17.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -19502,13 +19502,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.148.100 - 10.159.148.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.148.100 - 10.159.148.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -19563,12 +19563,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.14.165 - 173.230.14.190"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.14.165 - 173.230.14.190",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -19599,12 +19599,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.14.100 - 10.159.14.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.14.100 - 10.159.14.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -19659,12 +19659,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.19.197 - 173.230.19.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.19.197 - 173.230.19.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -19695,12 +19695,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.112.100 - 10.159.112.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.112.100 - 10.159.112.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -19755,12 +19755,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.29.69 - 173.230.29.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.29.69 - 173.230.29.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -19791,12 +19791,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.175.100 - 10.159.175.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.175.100 - 10.159.175.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -19851,12 +19851,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.20.5 - 173.230.20.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.20.5 - 173.230.20.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -19887,12 +19887,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.113.100 - 10.159.113.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.113.100 - 10.159.113.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -19947,12 +19947,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.19.5 - 173.230.19.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.19.5 - 173.230.19.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -19983,12 +19983,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.142.100 - 10.159.142.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.142.100 - 10.159.142.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -20043,12 +20043,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.15.69 - 173.230.15.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.15.69 - 173.230.15.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -20079,12 +20079,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.186.100 - 10.159.186.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.186.100 - 10.159.186.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -20154,13 +20154,13 @@
// ],
"pools": [
{
- "pool": "173.230.8.37 - 173.230.8.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.8.37 - 173.230.8.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -20220,13 +20220,13 @@
// ],
"pools": [
{
- "pool": "173.230.9.227 - 173.230.9.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.9.227 - 173.230.9.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -20257,13 +20257,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.4.100 - 10.159.4.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.4.100 - 10.159.4.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -20316,13 +20316,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.112.37 - 173.230.112.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.112.37 - 173.230.112.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -20353,13 +20353,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.250.100 - 10.159.250.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.250.100 - 10.159.250.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -20414,12 +20414,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.14.133 - 173.230.14.158"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.14.133 - 173.230.14.158",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -20450,12 +20450,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.15.100 - 10.159.15.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.15.100 - 10.159.15.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -20525,13 +20525,13 @@
// ],
"pools": [
{
- "pool": "96.63.203.21 - 96.63.203.126"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.203.21 - 96.63.203.126",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -20562,13 +20562,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.10.100 - 10.159.10.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.10.100 - 10.159.10.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -20623,12 +20623,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.29.197 - 173.230.29.222"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.29.197 - 173.230.29.222",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -20659,12 +20659,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.179.100 - 10.159.179.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.179.100 - 10.159.179.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -20719,12 +20719,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.9.197 - 173.230.9.222"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.9.197 - 173.230.9.222",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -20755,12 +20755,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.225.100 - 10.159.225.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.225.100 - 10.159.225.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -20815,12 +20815,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.9.101 - 173.230.9.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.9.101 - 173.230.9.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -20851,12 +20851,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.230.100 - 10.159.230.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.230.100 - 10.159.230.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -20926,13 +20926,13 @@
// ],
"pools": [
{
- "pool": "173.230.21.5 - 173.230.21.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.21.5 - 173.230.21.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -20963,13 +20963,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.108.100 - 10.159.108.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.108.100 - 10.159.108.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -21039,13 +21039,13 @@
// ],
"pools": [
{
- "pool": "173.230.16.5 - 173.230.16.30"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.16.5 - 173.230.16.30",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -21076,13 +21076,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.8.100 - 10.159.8.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.8.100 - 10.159.8.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -21137,12 +21137,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.12.197 - 173.230.12.222"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.12.197 - 173.230.12.222",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -21173,12 +21173,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.201.100 - 10.159.201.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.201.100 - 10.159.201.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -21248,13 +21248,13 @@
// ],
"pools": [
{
- "pool": "173.230.21.133 - 173.230.21.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.21.133 - 173.230.21.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -21303,13 +21303,13 @@
// ],
"pools": [
{
- "pool": "10.159.127.100 - 10.159.127.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.127.100 - 10.159.127.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -21364,12 +21364,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.29.229 - 173.230.29.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.29.229 - 173.230.29.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -21400,12 +21400,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.180.100 - 10.159.180.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.180.100 - 10.159.180.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -21460,12 +21460,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.9.69 - 173.230.9.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.9.69 - 173.230.9.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -21496,12 +21496,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.231.100 - 10.159.231.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.231.100 - 10.159.231.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -21571,13 +21571,13 @@
// ],
"pools": [
{
- "pool": "173.230.16.37 - 173.230.16.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.16.37 - 173.230.16.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -21608,13 +21608,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.227.100 - 10.159.227.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.227.100 - 10.159.227.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -21683,13 +21683,13 @@
// ],
"pools": [
{
- "pool": "68.234.168.21 - 68.234.171.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.168.21 - 68.234.171.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -21758,13 +21758,13 @@
// ],
"pools": [
{
- "pool": "10.145.10.100 - 10.145.10.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.10.100 - 10.145.10.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -21834,13 +21834,13 @@
// ],
"pools": [
{
- "pool": "173.230.21.197 - 173.230.21.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.21.197 - 173.230.21.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -21871,13 +21871,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.125.100 - 10.159.125.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.125.100 - 10.159.125.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -21932,12 +21932,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.20.101 - 173.230.20.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.20.101 - 173.230.20.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -21968,12 +21968,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.158.100 - 10.159.158.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.158.100 - 10.159.158.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -22035,13 +22035,13 @@
// ],
"pools": [
{
- "pool": "173.230.23.37 - 173.230.23.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.23.37 - 173.230.23.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -22072,13 +22072,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.155.100 - 10.159.155.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.155.100 - 10.159.155.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -22133,12 +22133,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.9.165 - 173.230.9.190"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.9.165 - 173.230.9.190",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -22169,12 +22169,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.226.100 - 10.159.226.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.226.100 - 10.159.226.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -22229,12 +22229,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.19.101 - 173.230.19.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.19.101 - 173.230.19.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -22265,12 +22265,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.229.100 - 10.159.229.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.229.100 - 10.159.229.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -22325,12 +22325,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.15.229 - 173.230.15.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.15.229 - 173.230.15.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -22361,12 +22361,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.172.100 - 10.159.172.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.172.100 - 10.159.172.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -22421,12 +22421,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.16.69 - 173.230.16.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.16.69 - 173.230.16.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -22457,12 +22457,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.228.100 - 10.159.228.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.228.100 - 10.159.228.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -22532,13 +22532,13 @@
// ],
"pools": [
{
- "pool": "216.171.8.21 - 216.171.9.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.8.21 - 216.171.9.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -22618,13 +22618,13 @@
// ],
"pools": [
{
- "pool": "66.253.193.2 - 66.253.193.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.193.2 - 66.253.193.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -22684,13 +22684,13 @@
// ],
"pools": [
{
- "pool": "216.171.27.2 - 216.171.27.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.27.2 - 216.171.27.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -22721,13 +22721,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.10.50 - 10.151.10.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.151.10.50 - 10.151.10.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -22782,12 +22782,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.22.5 - 173.230.22.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.22.5 - 173.230.22.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -22818,12 +22818,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.128.100 - 10.159.128.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.128.100 - 10.159.128.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -22878,12 +22878,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.29.101 - 173.230.29.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.29.101 - 173.230.29.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -22914,12 +22914,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.176.100 - 10.159.176.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.176.100 - 10.159.176.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -22989,13 +22989,13 @@
// ],
"pools": [
{
- "pool": "173.230.29.133 - 173.230.29.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.29.133 - 173.230.29.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -23026,13 +23026,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.177.100 - 10.159.177.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.177.100 - 10.159.177.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -23102,13 +23102,13 @@
// ],
"pools": [
{
- "pool": "173.230.8.165 - 173.230.8.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.8.165 - 173.230.8.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -23139,13 +23139,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.118.100 - 10.159.118.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.118.100 - 10.159.118.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -23200,12 +23200,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.23.69 - 173.230.23.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.23.69 - 173.230.23.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -23236,12 +23236,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.156.100 - 10.159.156.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.156.100 - 10.159.156.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -23311,13 +23311,13 @@
// ],
"pools": [
{
- "pool": "173.230.22.197 - 173.230.22.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.22.197 - 173.230.22.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -23362,13 +23362,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.126.100 - 10.159.126.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.126.100 - 10.159.126.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -23437,13 +23437,13 @@
// ],
"pools": [
{
- "pool": "173.230.15.197 - 173.230.15.222"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.15.197 - 173.230.15.222",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -23492,13 +23492,13 @@
// ],
"pools": [
{
- "pool": "10.159.182.100 - 10.159.182.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.182.100 - 10.159.182.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -23553,12 +23553,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.10.5 - 173.230.10.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.10.5 - 173.230.10.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -23589,12 +23589,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.198.100 - 10.159.198.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.198.100 - 10.159.198.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -23649,12 +23649,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.12.37 - 173.230.12.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.12.37 - 173.230.12.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -23685,12 +23685,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.193.100 - 10.159.193.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.193.100 - 10.159.193.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -23745,12 +23745,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.20.165 - 173.230.20.190"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.20.165 - 173.230.20.190",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -23781,12 +23781,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.151.100 - 10.159.151.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.151.100 - 10.159.151.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -23856,13 +23856,13 @@
// ],
"pools": [
{
- "pool": "173.230.15.165 - 173.230.15.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.15.165 - 173.230.15.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -23893,13 +23893,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.183.100 - 10.159.183.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.183.100 - 10.159.183.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -23969,13 +23969,13 @@
// ],
"pools": [
{
- "pool": "173.230.12.101 - 173.230.12.126"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.12.101 - 173.230.12.126",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -24006,13 +24006,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.203.100 - 10.159.203.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.203.100 - 10.159.203.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
},
@@ -24070,12 +24070,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.12.69 - 173.230.12.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.12.69 - 173.230.12.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -24106,12 +24106,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.194.100 - 10.159.194.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.194.100 - 10.159.194.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -24181,13 +24181,13 @@
// ],
"pools": [
{
- "pool": "173.230.20.133 - 173.230.20.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.20.133 - 173.230.20.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -24218,13 +24218,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.150.100 - 10.159.150.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.150.100 - 10.159.150.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -24279,12 +24279,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.19.37 - 173.230.19.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.19.37 - 173.230.19.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -24315,12 +24315,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.144.100 - 10.159.144.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.144.100 - 10.159.144.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -24390,13 +24390,13 @@
// ],
"pools": [
{
- "pool": "96.63.203.165 - 96.63.203.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.203.165 - 96.63.203.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -24427,13 +24427,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.3.100 - 10.159.3.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.3.100 - 10.159.3.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -24503,13 +24503,13 @@
// ],
"pools": [
{
- "pool": "173.230.13.229 - 173.230.13.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.13.229 - 173.230.13.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -24540,13 +24540,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.22.100 - 10.159.22.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.22.100 - 10.159.22.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -24616,13 +24616,13 @@
// ],
"pools": [
{
- "pool": "66.253.172.5 - 66.253.172.30"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.172.5 - 66.253.172.30",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -24653,13 +24653,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.242.100 - 10.159.242.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.242.100 - 10.159.242.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -24729,13 +24729,13 @@
// ],
"pools": [
{
- "pool": "216.171.3.165 - 216.171.3.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.3.165 - 216.171.3.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -24784,13 +24784,13 @@
// ],
"pools": [
{
- "pool": "10.159.192.100 - 10.159.192.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.192.100 - 10.159.192.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -24860,13 +24860,13 @@
// ],
"pools": [
{
- "pool": "173.230.23.197 - 173.230.23.222"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.23.197 - 173.230.23.222",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -24897,13 +24897,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.110.100 - 10.159.110.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.110.100 - 10.159.110.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -24958,12 +24958,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.10.69 - 173.230.10.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.10.69 - 173.230.10.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -24994,12 +24994,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.196.100 - 10.159.196.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.196.100 - 10.159.196.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -25054,12 +25054,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.10.197 - 173.230.10.222"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.10.197 - 173.230.10.222",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -25090,12 +25090,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.216.100 - 10.159.216.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.216.100 - 10.159.216.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -25150,12 +25150,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.27.197 - 173.230.27.222"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.27.197 - 173.230.27.222",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -25186,12 +25186,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.167.100 - 10.159.167.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.167.100 - 10.159.167.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -25246,12 +25246,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.16.101 - 173.230.16.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.16.101 - 173.230.16.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -25282,12 +25282,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.5.100 - 10.159.5.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.5.100 - 10.159.5.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -25342,12 +25342,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.24.5 - 173.230.24.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.24.5 - 173.230.24.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -25378,12 +25378,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.117.100 - 10.159.117.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.117.100 - 10.159.117.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -25438,12 +25438,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.15.133 - 173.230.15.158"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.15.133 - 173.230.15.158",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -25474,12 +25474,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.184.100 - 10.159.184.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.184.100 - 10.159.184.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -25534,12 +25534,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.19.133 - 173.230.19.158"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.19.133 - 173.230.19.158",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -25570,12 +25570,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.147.100 - 10.159.147.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.147.100 - 10.159.147.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -25645,13 +25645,13 @@
// ],
"pools": [
{
- "pool": "96.63.200.165 - 96.63.200.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.200.165 - 96.63.200.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -25682,13 +25682,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.7.100 - 10.159.7.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.7.100 - 10.159.7.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -25758,13 +25758,13 @@
// ],
"pools": [
{
- "pool": "173.230.18.133 - 173.230.18.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.18.133 - 173.230.18.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -25795,13 +25795,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.152.100 - 10.159.152.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.152.100 - 10.159.152.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -25871,13 +25871,13 @@
// ],
"pools": [
{
- "pool": "173.230.12.229 - 173.230.12.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.12.229 - 173.230.12.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -25908,13 +25908,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.200.100 - 10.159.200.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.200.100 - 10.159.200.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -25984,13 +25984,13 @@
// ],
"pools": [
{
- "pool": "173.230.24.133 - 173.230.24.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.24.133 - 173.230.24.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -26021,13 +26021,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.109.100 - 10.159.109.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.109.100 - 10.159.109.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -26082,12 +26082,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.24.37 - 173.230.24.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.24.37 - 173.230.24.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -26118,12 +26118,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.223.100 - 10.159.223.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.223.100 - 10.159.223.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -26178,12 +26178,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.29.37 - 173.230.29.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.29.37 - 173.230.29.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -26214,12 +26214,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.174.100 - 10.159.174.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.174.100 - 10.159.174.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -26289,13 +26289,13 @@
// ],
"pools": [
{
- "pool": "96.63.200.133 - 96.63.200.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.200.133 - 96.63.200.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -26355,13 +26355,13 @@
// ],
"pools": [
{
- "pool": "173.230.8.3 - 173.230.8.30"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.8.3 - 173.230.8.30",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -26392,13 +26392,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.12.100 - 10.159.12.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.12.100 - 10.159.12.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -26453,12 +26453,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.29.5 - 173.230.29.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.29.5 - 173.230.29.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -26489,12 +26489,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.173.100 - 10.159.173.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.173.100 - 10.159.173.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -26549,12 +26549,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.25.5 - 173.230.25.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.25.5 - 173.230.25.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -26585,12 +26585,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.107.100 - 10.159.107.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.107.100 - 10.159.107.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -26660,13 +26660,13 @@
// ],
"pools": [
{
- "pool": "173.230.19.69 - 173.230.19.94"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.19.69 - 173.230.19.94",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -26697,13 +26697,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.145.100 - 10.159.145.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.145.100 - 10.159.145.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -26773,13 +26773,13 @@
// ],
"pools": [
{
- "pool": "173.230.10.165 - 173.230.10.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.10.165 - 173.230.10.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -26828,13 +26828,13 @@
// ],
"pools": [
{
- "pool": "10.159.218.100 - 10.159.218.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.218.100 - 10.159.218.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -26904,13 +26904,13 @@
// ],
"pools": [
{
- "pool": "66.253.172.37 - 66.253.172.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.172.37 - 66.253.172.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -26941,13 +26941,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.241.100 - 10.159.241.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.241.100 - 10.159.241.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -27002,12 +27002,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.10.133 - 173.230.10.158"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.10.133 - 173.230.10.158",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -27038,12 +27038,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.219.100 - 10.159.219.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.219.100 - 10.159.219.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -27113,13 +27113,13 @@
// ],
"pools": [
{
- "pool": "173.230.10.101 - 173.230.10.126"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.10.101 - 173.230.10.126",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -27150,13 +27150,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.220.100 - 10.159.220.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.220.100 - 10.159.220.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -27226,13 +27226,13 @@
// ],
"pools": [
{
- "pool": "173.230.13.5 - 173.230.13.14"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.13.5 - 173.230.13.14",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -27263,13 +27263,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.161.100 - 10.159.161.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.161.100 - 10.159.161.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -27324,12 +27324,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.12.165 - 173.230.12.190"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.12.165 - 173.230.12.190",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -27360,12 +27360,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.197.100 - 10.159.197.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.197.100 - 10.159.197.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -27420,12 +27420,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.24.69 - 173.230.24.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.24.69 - 173.230.24.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -27456,12 +27456,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.160.100 - 10.159.160.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.160.100 - 10.159.160.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -27516,12 +27516,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.24.197 - 173.230.24.222"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.24.197 - 173.230.24.222",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -27552,12 +27552,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.149.100 - 10.159.149.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.149.100 - 10.159.149.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -27612,12 +27612,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.24.229 - 173.230.24.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.24.229 - 173.230.24.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -27648,12 +27648,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.153.100 - 10.159.153.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.153.100 - 10.159.153.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -27723,13 +27723,13 @@
// ],
"pools": [
{
- "pool": "173.230.25.197 - 173.230.25.222"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.25.197 - 173.230.25.222",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -27760,13 +27760,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.130.100 - 10.159.130.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.130.100 - 10.159.130.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -27821,12 +27821,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.26.133 - 173.230.26.190"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.26.133 - 173.230.26.190",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -27857,12 +27857,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.124.100 - 10.159.124.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.124.100 - 10.159.124.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -27917,12 +27917,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.9.37 - 173.230.9.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.9.37 - 173.230.9.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -27953,12 +27953,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.205.100 - 10.159.205.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.205.100 - 10.159.205.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -28028,13 +28028,13 @@
// ],
"pools": [
{
- "pool": "173.230.12.5 - 173.230.12.30"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.12.5 - 173.230.12.30",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -28065,13 +28065,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.206.100 - 10.159.206.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.206.100 - 10.159.206.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -28141,13 +28141,13 @@
// ],
"pools": [
{
- "pool": "173.230.26.197 - 173.230.26.222"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.26.197 - 173.230.26.222",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -28178,13 +28178,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.114.100 - 10.159.114.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.114.100 - 10.159.114.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -28239,12 +28239,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.11.197 - 173.230.11.222"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.11.197 - 173.230.11.222",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -28275,12 +28275,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.208.100 - 10.159.208.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.208.100 - 10.159.208.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -28335,12 +28335,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.27.69 - 173.230.27.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.27.69 - 173.230.27.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -28371,12 +28371,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.105.100 - 10.159.105.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.105.100 - 10.159.105.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -28431,12 +28431,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.27.229 - 173.230.27.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.27.229 - 173.230.27.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -28467,12 +28467,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.168.100 - 10.159.168.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.168.100 - 10.159.168.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -28527,12 +28527,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.28.5 - 173.230.28.30"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.28.5 - 173.230.28.30",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -28563,12 +28563,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.169.100 - 10.159.169.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.169.100 - 10.159.169.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -28623,12 +28623,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.27.133 - 173.230.27.190"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.27.133 - 173.230.27.190",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -28659,12 +28659,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.111.100 - 10.159.111.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.111.100 - 10.159.111.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -28719,12 +28719,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.28.37 - 173.230.28.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.28.37 - 173.230.28.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -28755,12 +28755,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.170.100 - 10.159.170.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.170.100 - 10.159.170.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -28815,12 +28815,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.28.69 - 173.230.28.126"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.28.69 - 173.230.28.126",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -28851,12 +28851,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.101.100 - 10.159.101.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.101.100 - 10.159.101.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -28911,12 +28911,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.11.37 - 173.230.11.62"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.11.37 - 173.230.11.62",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -28947,12 +28947,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.159.213.100 - 10.159.213.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.159.213.100 - 10.159.213.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -29022,13 +29022,13 @@
// ],
"pools": [
{
- "pool": "50.30.140.21 - 50.30.143.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.140.21 - 50.30.143.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -32251,13 +32251,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.118.100 - 10.144.118.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.118.100 - 10.144.118.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -32657,13 +32657,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "96.63.207.149 - 96.63.207.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.207.149 - 96.63.207.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -32694,13 +32694,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.237.100 - 10.159.237.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.237.100 - 10.159.237.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -32755,12 +32755,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "216.171.6.21 - 216.171.6.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "216.171.6.21 - 216.171.6.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -32797,12 +32797,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.90.100 - 10.151.90.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.151.90.100 - 10.151.90.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -32855,12 +32855,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "216.171.20.21 - 216.171.23.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "216.171.20.21 - 216.171.23.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -32911,12 +32911,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "216.171.28.3 - 216.171.29.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "216.171.28.3 - 216.171.29.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -32953,12 +32953,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.34.100 - 10.151.34.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.151.34.100 - 10.151.34.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -33027,13 +33027,13 @@
// ],
"pools": [
{
- "pool": "68.180.36.21 - 68.180.36.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.36.21 - 68.180.36.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -33096,13 +33096,13 @@
// ],
"pools": [
{
- "pool": "10.152.34.100 - 10.152.34.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.152.34.100 - 10.152.34.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -33155,12 +33155,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "66.253.183.69 - 66.253.183.94"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "66.253.183.69 - 66.253.183.94",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -33197,12 +33197,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.62.100 - 10.151.62.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.151.62.100 - 10.151.62.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -33272,13 +33272,13 @@
// ],
"pools": [
{
- "pool": "66.253.181.37 - 66.253.181.62"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.181.37 - 66.253.181.62",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -33338,13 +33338,13 @@
// ],
"pools": [
{
- "pool": "66.253.181.131 - 66.253.181.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.181.131 - 66.253.181.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -33381,22 +33381,22 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.98.100 - 10.151.98.199"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.151.98.100 - 10.151.98.199",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
},
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.98.200 - 10.151.98.239"
-// /// From:
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ubnt"
+ "pool": "10.151.98.200 - 10.151.98.239",
+ /// From:
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ubnt"
}
]
}
@@ -33465,13 +33465,13 @@
// ],
"pools": [
{
- "pool": "66.253.228.81 - 66.253.229.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.228.81 - 66.253.229.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -34148,13 +34148,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.138.100 - 10.144.138.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.138.100 - 10.144.138.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -34209,12 +34209,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.8.146 - 173.230.8.150"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.8.146 - 173.230.8.150",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
}
@@ -34284,13 +34284,13 @@
// ],
"pools": [
{
- "pool": "66.253.172.165 - 66.253.172.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.172.165 - 66.253.172.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -34321,13 +34321,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.25.100 - 10.159.25.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.25.100 - 10.159.25.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -34380,13 +34380,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.234.160.21 - 68.234.161.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.160.21 - 68.234.161.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -34436,13 +34436,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.234.180.3 - 68.234.180.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.180.3 - 68.234.180.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -34479,13 +34479,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.114.100 - 10.151.114.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.151.114.100 - 10.151.114.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -34554,13 +34554,13 @@
// ],
"pools": [
{
- "pool": "68.234.240.21 - 68.234.243.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.240.21 - 68.234.243.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -34620,13 +34620,13 @@
// ],
"pools": [
{
- "pool": "10.180.120.3 - 10.180.121.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.120.3 - 10.180.121.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -34681,13 +34681,13 @@
// ],
"pools": [
{
- "pool": "10.151.118.100 - 10.151.118.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.151.118.100 - 10.151.118.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -34757,13 +34757,13 @@
// ],
"pools": [
{
- "pool": "216.171.40.21 - 216.171.43.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.40.21 - 216.171.43.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -34800,13 +34800,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.94.100 - 10.151.94.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.151.94.100 - 10.151.94.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -34877,13 +34877,13 @@
// ],
"pools": [
{
- "pool": "173.230.112.133 - 173.230.112.190"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.112.133 - 173.230.112.190",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -34932,13 +34932,13 @@
// ],
"pools": [
{
- "pool": "10.159.100.100 - 10.159.100.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.100.100 - 10.159.100.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -35008,13 +35008,13 @@
// ],
"pools": [
{
- "pool": "216.171.7.21 - 216.171.7.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.7.21 - 216.171.7.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -35045,13 +35045,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.215.100 - 10.159.215.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.215.100 - 10.159.215.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -35121,13 +35121,13 @@
// ],
"pools": [
{
- "pool": "173.230.12.133 - 173.230.12.158"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.12.133 - 173.230.12.158",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -35158,13 +35158,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.202.100 - 10.159.202.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.202.100 - 10.159.202.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -35233,13 +35233,13 @@
// ],
"pools": [
{
- "pool": "216.171.16.21 - 216.171.19.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.16.21 - 216.171.19.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -35296,13 +35296,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.66.100 - 10.151.66.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.151.66.100 - 10.151.66.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -35371,13 +35371,13 @@
// ],
"pools": [
{
- "pool": "96.63.203.197 - 96.63.203.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.203.197 - 96.63.203.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -35408,13 +35408,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.159.190.100 - 10.159.190.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.159.190.100 - 10.159.190.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -35467,12 +35467,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "216.171.10.21 - 216.171.11.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "216.171.10.21 - 216.171.11.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -35529,12 +35529,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "66.253.179.3 - 66.253.179.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "66.253.179.3 - 66.253.179.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -35571,12 +35571,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.151.70.100 - 10.151.70.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.151.70.100 - 10.151.70.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -35627,12 +35627,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "216.171.12.21 - 216.171.15.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "216.171.12.21 - 216.171.15.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -35669,12 +35669,12 @@
{
# default-lease-time dTruk;
# max-lease-time mdTruk;
- "pool": "10.151.78.100 - 10.151.78.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.151.78.100 - 10.151.78.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -35744,13 +35744,13 @@
// ],
"pools": [
{
- "pool": "96.63.224.21 - 96.63.227.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.224.21 - 96.63.227.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -35803,13 +35803,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.66.100 - 10.150.66.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.66.100 - 10.150.66.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -35879,13 +35879,13 @@
// ],
"pools": [
{
- "pool": "173.230.72.21 - 173.230.75.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.72.21 - 173.230.75.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -35930,13 +35930,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.6.100 - 10.150.6.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.6.100 - 10.150.6.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -36006,13 +36006,13 @@
// ],
"pools": [
{
- "pool": "68.234.156.21 - 68.234.159.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.156.21 - 68.234.159.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -36049,13 +36049,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.118.100 - 10.150.118.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.118.100 - 10.150.118.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -36124,13 +36124,13 @@
// ],
"pools": [
{
- "pool": "68.234.144.21 - 68.234.147.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.144.21 - 68.234.147.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -36240,13 +36240,13 @@
// ],
"pools": [
{
- "pool": "68.234.182.3 - 68.234.183.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.182.3 - 68.234.183.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -36283,13 +36283,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.94.100 - 10.150.94.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.94.100 - 10.150.94.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -36358,13 +36358,13 @@
// ],
"pools": [
{
- "pool": "50.30.236.21 - 50.30.239.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.236.21 - 50.30.239.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -36427,13 +36427,13 @@
// ],
"pools": [
{
- "pool": "10.153.66.100 - 10.153.66.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.66.100 - 10.153.66.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -36502,13 +36502,13 @@
// ],
"pools": [
{
- "pool": "173.230.60.21 - 173.230.63.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.60.21 - 173.230.63.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -36563,13 +36563,13 @@
// ],
"pools": [
{
- "pool": "10.149.42.100 - 10.149.42.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.42.100 - 10.149.42.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -36638,13 +36638,13 @@
// ],
"pools": [
{
- "pool": "66.253.136.21 - 66.253.137.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.136.21 - 66.253.137.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -36704,13 +36704,13 @@
// ],
"pools": [
{
- "pool": "66.253.240.3 - 66.253.241.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.240.3 - 66.253.241.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -36765,13 +36765,13 @@
// ],
"pools": [
{
- "pool": "10.151.86.100 - 10.151.86.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.151.86.100 - 10.151.86.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -36841,13 +36841,13 @@
// ],
"pools": [
{
- "pool": "50.30.162.21 - 50.30.163.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.162.21 - 50.30.163.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -36907,13 +36907,13 @@
// ],
"pools": [
{
- "pool": "50.30.187.3 - 50.30.187.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.187.3 - 50.30.187.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -36950,13 +36950,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.250.78.100 - 10.250.78.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.250.78.100 - 10.250.78.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -37026,12 +37026,12 @@
// ],
"pools": [
{
- "pool": "216.171.32.21 - 216.171.33.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "216.171.32.21 - 216.171.33.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -37105,12 +37105,12 @@
// ],
"pools": [
{
- "pool": "216.171.38.3 - 216.171.38.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "216.171.38.3 - 216.171.38.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -37147,12 +37147,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.98.100 - 10.150.98.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.150.98.100 - 10.150.98.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -37222,13 +37222,13 @@
// ],
"pools": [
{
- "pool": "50.30.154.21 - 50.30.155.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.154.21 - 50.30.155.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -37327,13 +37327,13 @@
// ],
"pools": [
{
- "pool": "50.30.183.3 - 50.30.183.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.183.3 - 50.30.183.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -37370,13 +37370,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.122.100 - 10.144.122.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.122.100 - 10.144.122.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -37446,13 +37446,13 @@
// ],
"pools": [
{
- "pool": "76.10.50.21 - 76.10.51.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.50.21 - 76.10.51.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -37520,13 +37520,13 @@
// ],
"pools": [
{
- "pool": "68.234.162.3 - 68.234.163.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.162.3 - 68.234.163.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -37563,13 +37563,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.82.100 - 10.150.82.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.82.100 - 10.150.82.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -37638,13 +37638,13 @@
// ],
"pools": [
{
- "pool": "76.10.52.21 - 76.10.53.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.52.21 - 76.10.53.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -37704,13 +37704,13 @@
// ],
"pools": [
{
- "pool": "68.180.68.3 - 68.180.71.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.68.3 - 68.180.71.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -37765,13 +37765,13 @@
// ],
"pools": [
{
- "pool": "10.144.18.50 - 10.144.18.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.18.50 - 10.144.18.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -37840,13 +37840,13 @@
// ],
"pools": [
{
- "pool": "68.234.140.21 - 68.234.143.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.140.21 - 68.234.143.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -37914,13 +37914,13 @@
// ],
"pools": [
{
- "pool": "68.234.193.3 - 68.234.193.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.193.3 - 68.234.193.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -37975,13 +37975,13 @@
// ],
"pools": [
{
- "pool": "10.147.130.100 - 10.147.130.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.147.130.100 - 10.147.130.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -38050,13 +38050,13 @@
// ],
"pools": [
{
- "pool": "68.234.134.21 - 68.234.135.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.134.21 - 68.234.135.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -38116,13 +38116,13 @@
// ],
"pools": [
{
- "pool": "68.234.194.3 - 68.234.194.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.194.3 - 68.234.194.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -38177,13 +38177,13 @@
// ],
"pools": [
{
- "pool": "10.147.34.100 - 10.147.34.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.147.34.100 - 10.147.34.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -38256,13 +38256,13 @@
// ],
"pools": [
{
- "pool": "173.230.84.21 - 173.230.87.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.84.21 - 173.230.87.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -38336,13 +38336,13 @@
// ],
"pools": [
{
- "pool": "68.180.116.3 - 68.180.117.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.116.3 - 68.180.117.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -38402,13 +38402,13 @@
// ],
"pools": [
{
- "pool": "66.253.157.3 - 66.253.157.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.157.3 - 66.253.157.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -38445,13 +38445,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.110.100 - 10.150.110.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.110.100 - 10.150.110.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -38530,13 +38530,13 @@
// ],
"pools": [
{
- "pool": "66.253.184.21 - 66.253.187.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.184.21 - 66.253.187.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -38573,13 +38573,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.86.100 - 10.150.86.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.86.100 - 10.150.86.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -38648,13 +38648,13 @@
// ],
"pools": [
{
- "pool": "76.10.20.21 - 76.10.23.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.20.21 - 76.10.23.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -38717,13 +38717,13 @@
// ],
"pools": [
{
- "pool": "10.148.46.100 - 10.148.46.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.148.46.100 - 10.148.46.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -38791,13 +38791,13 @@
// ],
"pools": [
{
- "pool": "66.253.164.21 - 66.253.165.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.164.21 - 66.253.165.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -38865,13 +38865,13 @@
// ],
"pools": [
{
- "pool": "216.171.50.3 - 216.171.50.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.50.3 - 216.171.50.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -38908,13 +38908,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.14.100 - 10.145.14.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.14.100 - 10.145.14.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -38984,13 +38984,13 @@
// ],
"pools": [
{
- "pool": "68.180.124.21 - 68.180.125.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.124.21 - 68.180.125.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -39057,13 +39057,13 @@
// ],
"pools": [
{
- "pool": "68.180.126.3 - 68.180.126.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.126.3 - 68.180.126.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -39100,13 +39100,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.18.100 - 10.145.18.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.18.100 - 10.145.18.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -39176,13 +39176,13 @@
// ],
"pools": [
{
- "pool": "68.180.114.26 - 68.180.115.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.114.26 - 68.180.115.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -39219,13 +39219,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.78.100 - 10.145.78.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.78.100 - 10.145.78.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -39295,13 +39295,13 @@
// ],
"pools": [
{
- "pool": "66.253.141.21 - 66.253.141.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.141.21 - 66.253.141.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -39361,13 +39361,13 @@
// ],
"pools": [
{
- "pool": "68.234.185.3 - 68.234.185.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.185.3 - 68.234.185.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -39404,13 +39404,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.22.100 - 10.145.22.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.22.100 - 10.145.22.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -39479,13 +39479,13 @@
// ],
"pools": [
{
- "pool": "68.180.72.25 - 68.180.73.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.72.25 - 68.180.73.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -39545,13 +39545,13 @@
// ],
"pools": [
{
- "pool": "68.180.60.3 - 68.180.61.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.60.3 - 68.180.61.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -39588,13 +39588,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.153.2.100 - 10.153.2.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.2.100 - 10.153.2.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -39664,13 +39664,13 @@
// ],
"pools": [
{
- "pool": "173.230.32.21 - 173.230.39.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.32.21 - 173.230.39.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -39707,13 +39707,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.146.100 - 10.146.146.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.146.100 - 10.146.146.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -39783,13 +39783,13 @@
// ],
"pools": [
{
- "pool": "216.171.56.21 - 216.171.59.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.56.21 - 216.171.59.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -39893,13 +39893,13 @@
// ],
"pools": [
{
- "pool": "68.180.20.3 - 68.180.21.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.20.3 - 68.180.21.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -39959,13 +39959,13 @@
// ],
"pools": [
{
- "pool": "66.253.142.3 - 66.253.142.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.142.3 - 66.253.142.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -40025,13 +40025,13 @@
// ],
"pools": [
{
- "pool": "68.180.79.3 - 68.180.79.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.79.3 - 68.180.79.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -40068,13 +40068,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.102.100 - 10.150.102.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.102.100 - 10.150.102.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -40144,13 +40144,13 @@
"pools": [
{
#failover peer "NATIONAL";
- "pool": "50.30.245.21 - 50.30.245.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.245.21 - 50.30.245.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -40219,13 +40219,13 @@
"pools": [
{
#failover peer "NATIONAL";
- "pool": "10.180.10.3 - 10.180.10.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.10.3 - 10.180.10.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -40280,13 +40280,13 @@
// ],
"pools": [
{
- "pool": "10.145.110.100 - 10.145.110.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.110.100 - 10.145.110.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -40356,13 +40356,13 @@
// ],
"pools": [
{
- "pool": "76.10.0.21 - 76.10.3.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.0.21 - 76.10.3.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -40399,13 +40399,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.42.100 - 10.150.42.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.42.100 - 10.150.42.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -40468,13 +40468,13 @@
// ],
"pools": [
{
- "pool": "10.145.118.100 - 10.145.118.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.118.100 - 10.145.118.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -40544,13 +40544,13 @@
// ],
"pools": [
{
- "pool": "68.180.32.21 - 68.180.35.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.32.21 - 68.180.35.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -40610,13 +40610,13 @@
// ],
"pools": [
{
- "pool": "66.253.140.3 - 66.253.140.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.140.3 - 66.253.140.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -40653,13 +40653,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.134.100 - 10.144.134.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.134.100 - 10.144.134.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -40728,13 +40728,13 @@
// ],
"pools": [
{
- "pool": "216.171.48.130 - 216.171.48.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.48.130 - 216.171.48.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -42077,13 +42077,13 @@
// ],
"pools": [
{
- "pool": "10.149.30.100 - 10.149.30.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.30.100 - 10.149.30.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -42153,13 +42153,13 @@
// ],
"pools": [
{
- "pool": "66.253.168.21 - 66.253.171.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.168.21 - 66.253.171.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -42227,13 +42227,13 @@
// ],
"pools": [
{
- "pool": "66.253.138.3 - 66.253.139.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.138.3 - 66.253.139.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -42270,13 +42270,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.46.100 - 10.150.46.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.46.100 - 10.150.46.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -42346,13 +42346,13 @@
// ],
"pools": [
{
- "pool": "66.253.238.21 - 66.253.239.254"
-// /// From:
-// /// deny Trapeze
-// /// deny Trapeze2
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!Trapeze#!Trapeze2#"
+ "pool": "66.253.238.21 - 66.253.239.254",
+ /// From:
+ /// deny Trapeze
+ /// deny Trapeze2
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!Trapeze#!Trapeze2#"
}
]
},
@@ -42396,13 +42396,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.147.2.100 - 10.147.2.239"
-// /// From:
-// /// allow Trapeze
-// /// allow Trapeze2
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#Trapeze#Trapeze2#"
+ "pool": "10.147.2.100 - 10.147.2.239",
+ /// From:
+ /// allow Trapeze
+ /// allow Trapeze2
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#Trapeze#Trapeze2#"
}
]
}
@@ -42481,13 +42481,13 @@
// ],
"pools": [
{
- "pool": "96.63.240.21 - 96.63.243.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.240.21 - 96.63.243.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -42532,13 +42532,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.126.100 - 10.149.126.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.126.100 - 10.149.126.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -42607,13 +42607,13 @@
// ],
"pools": [
{
- "pool": "96.63.244.21 - 96.63.247.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.244.21 - 96.63.247.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -42650,13 +42650,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.130.100 - 10.149.130.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.130.100 - 10.149.130.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -42717,12 +42717,12 @@
// ],
"pools": [
{
- "pool": "68.180.48.21 - 68.180.51.223"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "68.180.48.21 - 68.180.51.223",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -42787,12 +42787,12 @@
// ],
"pools": [
{
- "pool": "68.180.63.3 - 68.180.63.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "68.180.63.3 - 68.180.63.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -42844,12 +42844,12 @@
// ],
"pools": [
{
- "pool": "50.30.247.3 - 50.30.247.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "50.30.247.3 - 50.30.247.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -42901,12 +42901,12 @@
// ],
"pools": [
{
- "pool": "216.171.51.3 - 216.171.51.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "216.171.51.3 - 216.171.51.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -42966,12 +42966,12 @@
// ],
"pools": [
{
- "pool": "68.180.80.3 - 68.180.81.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "68.180.80.3 - 68.180.81.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -43008,12 +43008,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.154.50 - 10.145.154.200"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.145.154.50 - 10.145.154.200",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -43082,13 +43082,13 @@
// ],
"pools": [
{
- "pool": "68.180.37.21 - 68.180.37.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.37.21 - 68.180.37.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -43151,13 +43151,13 @@
// ],
"pools": [
{
- "pool": "10.150.34.100 - 10.150.34.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.34.100 - 10.150.34.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -43227,13 +43227,13 @@
// ],
"pools": [
{
- "pool": "50.30.248.21 - 50.30.249.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.248.21 - 50.30.249.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -43278,13 +43278,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.66.100 - 10.144.66.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.66.100 - 10.144.66.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -43333,13 +43333,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.158.100 - 10.149.158.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.158.100 - 10.149.158.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -43409,14 +43409,14 @@
// ],
"pools": [
{
- "pool": "50.30.204.21 - 50.30.207.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny HP
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#!HP#"
+ "pool": "50.30.204.21 - 50.30.207.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny HP
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#!HP#"
}
],
"reservations": [
@@ -43484,14 +43484,14 @@
// ],
"pools": [
{
- "pool": "50.30.191.3 - 50.30.191.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny HP
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#!HP#"
+ "pool": "50.30.191.3 - 50.30.191.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny HP
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#!HP#"
}
],
"reservations": [
@@ -43554,14 +43554,14 @@
// ],
"pools": [
{
- "pool": "10.148.70.100 - 10.148.70.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// allow HP
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#HP#"
+ "pool": "10.148.70.100 - 10.148.70.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// allow HP
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#HP#"
}
]
}
@@ -43631,13 +43631,13 @@
// ],
"pools": [
{
- "pool": "96.63.232.21 - 96.63.235.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.232.21 - 96.63.235.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -43674,13 +43674,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.118.100 - 10.149.118.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.118.100 - 10.149.118.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -43749,13 +43749,13 @@
// ],
"pools": [
{
- "pool": "68.180.74.21 - 68.180.75.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.74.21 - 68.180.75.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -43804,13 +43804,13 @@
// ],
"pools": [
{
- "pool": "10.149.26.100 - 10.149.26.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.26.100 - 10.149.26.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -43880,13 +43880,13 @@
// ],
"pools": [
{
- "pool": "50.30.240.21 - 50.30.243.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.240.21 - 50.30.243.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -43990,13 +43990,13 @@
// ],
"pools": [
{
- "pool": "50.30.246.3 - 50.30.246.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.246.3 - 50.30.246.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -44033,13 +44033,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.2.100 - 10.144.2.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.2.100 - 10.144.2.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -44147,13 +44147,13 @@
// ],
"pools": [
{
- "pool": "216.171.39.21 - 216.171.39.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.39.21 - 216.171.39.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -44184,13 +44184,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.56.100 - 10.144.56.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.56.100 - 10.144.56.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -44259,13 +44259,13 @@
// ],
"pools": [
{
- "pool": "68.234.212.21 - 68.234.215.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.212.21 - 68.234.215.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -44320,13 +44320,13 @@
// ],
"pools": [
{
- "pool": "10.144.142.100 - 10.144.142.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.142.100 - 10.144.142.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -44397,13 +44397,13 @@
// ],
"pools": [
{
- "pool": "68.180.104.21 - 68.180.105.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.104.21 - 68.180.105.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -44440,13 +44440,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.150.100 - 10.146.150.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.150.100 - 10.146.150.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -44498,12 +44498,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.180.109.150 - 68.180.109.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "68.180.109.150 - 68.180.109.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -49404,12 +49404,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "173.230.54.3 - 173.230.54.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.54.3 - 173.230.54.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -49446,12 +49446,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.154.100 - 10.146.154.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.146.154.100 - 10.146.154.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -49520,13 +49520,13 @@
// ],
"pools": [
{
- "pool": "66.253.153.21 - 66.253.153.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.153.21 - 66.253.153.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -49586,13 +49586,13 @@
// ],
"pools": [
{
- "pool": "216.171.47.3 - 216.171.47.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.47.3 - 216.171.47.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -49652,13 +49652,13 @@
// ],
"pools": [
{
- "pool": "173.230.55.3 - 173.230.55.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.55.3 - 173.230.55.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -49713,13 +49713,13 @@
// ],
"pools": [
{
- "pool": "10.146.166.100 - 10.146.166.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.166.100 - 10.146.166.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -49789,13 +49789,13 @@
// ],
"pools": [
{
- "pool": "96.63.212.221 - 96.63.212.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.212.221 - 96.63.212.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -49856,13 +49856,13 @@
// ],
"pools": [
{
- "pool": "66.253.154.3 - 66.253.155.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.154.3 - 66.253.155.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -49922,13 +49922,13 @@
// ],
"pools": [
{
- "pool": "216.171.52.3 - 216.171.52.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.52.3 - 216.171.52.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -49965,13 +49965,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.158.100 - 10.146.158.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.158.100 - 10.146.158.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -50041,13 +50041,13 @@
// ],
"pools": [
{
- "pool": "66.253.130.21 - 66.253.130.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.130.21 - 66.253.130.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -50078,13 +50078,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.4.100 - 10.146.4.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.4.100 - 10.146.4.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -50153,12 +50153,12 @@
// ],
"pools": [
{
- "pool": "173.230.66.1 - 173.230.67.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "173.230.66.1 - 173.230.67.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -55548,12 +55548,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.2.100 - 10.146.2.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.146.2.100 - 10.146.2.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -55623,13 +55623,13 @@
// ],
"pools": [
{
- "pool": "173.230.68.21 - 173.230.69.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.68.21 - 173.230.69.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -55666,13 +55666,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.18.100 - 10.146.18.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.18.100 - 10.146.18.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -55744,13 +55744,13 @@
// ],
"pools": [
{
- "pool": "68.234.167.21 - 68.234.167.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.167.21 - 68.234.167.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -55787,13 +55787,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.42.100 - 10.146.42.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.42.100 - 10.146.42.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -55863,13 +55863,13 @@
// ],
"pools": [
{
- "pool": "68.234.164.21 - 68.234.165.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.164.21 - 68.234.165.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -55914,13 +55914,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.38.100 - 10.146.38.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.38.100 - 10.146.38.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -55990,13 +55990,13 @@
// ],
"pools": [
{
- "pool": "76.10.30.21 - 76.10.31.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.30.21 - 76.10.31.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -56059,13 +56059,13 @@
// ],
"pools": [
{
- "pool": "10.146.30.100 - 10.146.30.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.30.100 - 10.146.30.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -56135,13 +56135,13 @@
// ],
"pools": [
{
- "pool": "66.253.174.21 - 66.253.175.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.174.21 - 66.253.175.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -56172,13 +56172,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.48.100 - 10.146.48.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.48.100 - 10.146.48.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -56247,13 +56247,13 @@
// ],
"pools": [
{
- "pool": "68.180.107.1 - 68.180.107.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.107.1 - 68.180.107.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -59199,13 +59199,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.162.100 - 10.146.162.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.162.100 - 10.146.162.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -59277,13 +59277,13 @@
// ],
"pools": [
{
- "pool": "66.253.128.21 - 66.253.129.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.128.21 - 66.253.129.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -59320,13 +59320,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.130.100 - 10.146.130.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.130.100 - 10.146.130.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -59396,13 +59396,13 @@
// ],
"pools": [
{
- "pool": "66.253.246.21 - 66.253.246.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.246.21 - 66.253.246.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -59483,13 +59483,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.138.100 - 10.146.138.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.138.100 - 10.146.138.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -59559,13 +59559,13 @@
// ],
"pools": [
{
- "pool": "68.234.176.21 - 68.234.179.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.176.21 - 68.234.179.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -59602,13 +59602,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.42.100 - 10.144.42.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.42.100 - 10.144.42.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -59677,13 +59677,13 @@
// ],
"pools": [
{
- "pool": "68.180.84.21 - 68.180.87.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.84.21 - 68.180.87.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -59743,13 +59743,13 @@
// ],
"pools": [
{
- "pool": "10.180.124.3 - 10.180.125.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.124.3 - 10.180.125.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -59804,13 +59804,13 @@
// ],
"pools": [
{
- "pool": "10.144.126.100 - 10.144.126.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.126.100 - 10.144.126.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -59880,13 +59880,13 @@
// ],
"pools": [
{
- "pool": "50.30.200.21 - 50.30.203.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.200.21 - 50.30.203.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -59923,13 +59923,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.214.100 - 10.146.214.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.214.100 - 10.146.214.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -59998,13 +59998,13 @@
// ],
"pools": [
{
- "pool": "50.30.232.21 - 50.30.235.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.232.21 - 50.30.235.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -60064,13 +60064,13 @@
// ],
"pools": [
{
- "pool": "66.253.250.3 - 66.253.251.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.250.3 - 66.253.251.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -60125,13 +60125,13 @@
// ],
"pools": [
{
- "pool": "10.150.26.20 - 10.150.26.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.26.20 - 10.150.26.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -60200,13 +60200,13 @@
// ],
"pools": [
{
- "pool": "68.234.208.21 - 68.234.211.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.208.21 - 68.234.211.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -60269,13 +60269,13 @@
// ],
"pools": [
{
- "pool": "10.144.146.100 - 10.144.146.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.146.100 - 10.144.146.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -60344,13 +60344,13 @@
// ],
"pools": [
{
- "pool": "50.30.136.181 - 50.30.137.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.136.181 - 50.30.137.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -62198,13 +62198,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.158.100 - 10.145.158.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.158.100 - 10.145.158.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -62273,13 +62273,13 @@
// ],
"pools": [
{
- "pool": "216.171.34.21 - 216.171.35.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.34.21 - 216.171.35.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -62340,13 +62340,13 @@
"pools": [
{
#failover peer "NATIONAL";
- "pool": "10.180.11.3 - 10.180.11.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.11.3 - 10.180.11.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -62401,13 +62401,13 @@
// ],
"pools": [
{
- "pool": "10.146.134.100 - 10.146.134.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.134.100 - 10.146.134.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -62462,13 +62462,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "10.180.0.21 - 10.180.7.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.0.21 - 10.180.7.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -62505,13 +62505,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.250.134.100 - 10.250.134.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.250.134.100 - 10.250.134.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -62579,13 +62579,13 @@
// ],
"pools": [
{
- "pool": "96.63.252.21 - 96.63.255.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.252.21 - 96.63.255.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -62659,13 +62659,13 @@
// ],
"pools": [
{
- "pool": "216.171.46.3 - 216.171.46.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.46.3 - 216.171.46.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -62702,13 +62702,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.150.70.100 - 10.150.70.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.70.100 - 10.150.70.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -62777,13 +62777,13 @@
// ],
"pools": [
{
- "pool": "68.180.88.21 - 68.180.91.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.88.21 - 68.180.91.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -62843,13 +62843,13 @@
// ],
"pools": [
{
- "pool": "50.30.132.3 - 50.30.132.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.132.3 - 50.30.132.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -62909,13 +62909,13 @@
// ],
"pools": [
{
- "pool": "10.180.122.3 - 10.180.123.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.122.3 - 10.180.123.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -62970,13 +62970,13 @@
// ],
"pools": [
{
- "pool": "10.150.62.100 - 10.150.62.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.62.100 - 10.150.62.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -63045,13 +63045,13 @@
// ],
"pools": [
{
- "pool": "68.180.56.21 - 68.180.57.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.56.21 - 68.180.57.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -63111,13 +63111,13 @@
// ],
"pools": [
{
- "pool": "68.180.6.3 - 68.180.6.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.6.3 - 68.180.6.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -63172,13 +63172,13 @@
// ],
"pools": [
{
- "pool": "10.144.46.100 - 10.144.46.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.46.100 - 10.144.46.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -63248,13 +63248,13 @@
// ],
"pools": [
{
- "pool": "66.253.236.21 - 66.253.237.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.236.21 - 66.253.237.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -63291,13 +63291,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.62.100 - 10.145.62.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.62.100 - 10.145.62.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -63367,13 +63367,13 @@
// ],
"pools": [
{
- "pool": "68.180.24.21 - 68.180.27.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.24.21 - 68.180.27.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -63410,13 +63410,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.86.100 - 10.145.86.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.86.100 - 10.145.86.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -63485,13 +63485,13 @@
// ],
"pools": [
{
- "pool": "96.63.248.21 - 96.63.251.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.248.21 - 96.63.251.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -63560,13 +63560,13 @@
// ],
"pools": [
{
- "pool": "10.145.106.100 - 10.145.106.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.106.100 - 10.145.106.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -63636,13 +63636,13 @@
// ],
"pools": [
{
- "pool": "50.30.170.21 - 50.30.171.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.170.21 - 50.30.171.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -63702,13 +63702,13 @@
// ],
"pools": [
{
- "pool": "50.30.180.3 - 50.30.181.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.180.3 - 50.30.181.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -63745,13 +63745,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.130.100 - 10.144.130.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.130.100 - 10.144.130.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -63820,13 +63820,13 @@
// ],
"pools": [
{
- "pool": "68.180.98.21 - 68.180.99.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.98.21 - 68.180.99.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -63894,13 +63894,13 @@
// ],
"pools": [
{
- "pool": "10.180.34.3 - 10.180.34.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.34.3 - 10.180.34.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -63955,13 +63955,13 @@
// ],
"pools": [
{
- "pool": "10.145.30.100 - 10.145.30.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.30.100 - 10.145.30.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -64030,13 +64030,13 @@
// ],
"pools": [
{
- "pool": "68.180.120.21 - 68.180.123.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.120.21 - 68.180.123.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -64096,13 +64096,13 @@
// ],
"pools": [
{
- "pool": "66.253.196.3 - 66.253.197.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.196.3 - 66.253.197.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -64162,13 +64162,13 @@
// ],
"pools": [
{
- "pool": "66.253.198.3 - 66.253.198.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.198.3 - 66.253.198.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -64228,13 +64228,13 @@
// ],
"pools": [
{
- "pool": "10.180.14.3 - 10.180.15.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.14.3 - 10.180.15.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -64289,13 +64289,13 @@
// ],
"pools": [
{
- "pool": "10.145.122.100 - 10.145.122.254"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.122.100 - 10.145.122.254",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -64365,13 +64365,13 @@
// ],
"pools": [
{
- "pool": "76.10.16.21 - 76.10.19.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.16.21 - 76.10.19.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -64416,13 +64416,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.153.42.100 - 10.153.42.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.42.100 - 10.153.42.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -64492,13 +64492,13 @@
// ],
"pools": [
{
- "pool": "96.63.228.21 - 96.63.231.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.228.21 - 96.63.231.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -64535,13 +64535,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.194.100 - 10.146.194.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.194.100 - 10.146.194.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -64620,13 +64620,13 @@
],
"pools": [
{
- "pool": "68.234.152.21 - 68.234.155.223"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.152.21 - 68.234.155.223",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -64686,13 +64686,13 @@
// ],
"pools": [
{
- "pool": "66.253.199.3 - 66.253.199.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.199.3 - 66.253.199.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -64752,13 +64752,13 @@
// ],
"pools": [
{
- "pool": "216.171.53.3 - 216.171.53.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.53.3 - 216.171.53.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -64813,13 +64813,13 @@
// ],
"pools": [
{
- "pool": "10.148.50.100 - 10.148.50.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.148.50.100 - 10.148.50.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -64889,13 +64889,13 @@
// ],
"pools": [
{
- "pool": "68.180.100.21 - 68.180.103.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.100.21 - 68.180.103.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -64969,13 +64969,13 @@
// ],
"pools": [
{
- "pool": "68.180.28.3 - 68.180.29.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.28.3 - 68.180.29.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -65012,13 +65012,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.126.100 - 10.146.126.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.126.100 - 10.146.126.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -65087,13 +65087,13 @@
// ],
"pools": [
{
- "pool": "76.10.24.21 - 76.10.27.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.24.21 - 76.10.27.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -65148,13 +65148,13 @@
// ],
"pools": [
{
- "pool": "10.150.38.100 - 10.150.38.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.38.100 - 10.150.38.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -65224,13 +65224,13 @@
// ],
"pools": [
{
- "pool": "50.30.131.21 - 50.30.131.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.131.21 - 50.30.131.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -65290,13 +65290,13 @@
// ],
"pools": [
{
- "pool": "68.180.7.3 - 68.180.7.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.7.3 - 68.180.7.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -65327,13 +65327,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.251.4.100 - 10.251.4.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.251.4.100 - 10.251.4.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -65403,13 +65403,13 @@
// ],
"pools": [
{
- "pool": "173.230.80.21 - 173.230.83.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.80.21 - 173.230.83.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -65446,13 +65446,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.134.100 - 10.149.134.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.134.100 - 10.149.134.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -65522,13 +65522,13 @@
// ],
"pools": [
{
- "pool": "173.230.48.21 - 173.230.51.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.48.21 - 173.230.51.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -65565,13 +65565,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.10.100 - 10.144.10.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.10.100 - 10.144.10.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -65641,13 +65641,13 @@
// ],
"pools": [
{
- "pool": "68.180.30.21 - 68.180.31.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.30.21 - 68.180.31.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -65727,13 +65727,13 @@
// ],
"pools": [
{
- "pool": "68.180.58.3 - 68.180.59.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.58.3 - 68.180.59.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -65770,13 +65770,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.94.100 - 10.149.94.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.94.100 - 10.149.94.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -65854,13 +65854,13 @@
// ],
"pools": [
{
- "pool": "173.230.96.21 - 173.230.103.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.96.21 - 173.230.103.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -65897,13 +65897,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.54.100 - 10.144.54.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.54.100 - 10.144.54.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -65973,13 +65973,13 @@
// ],
"pools": [
{
- "pool": "76.10.60.21 - 76.10.63.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.60.21 - 76.10.63.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -66034,13 +66034,13 @@
// ],
"pools": [
{
- "pool": "10.144.50.100 - 10.144.50.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.50.100 - 10.144.50.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -66110,13 +66110,13 @@
// ],
"pools": [
{
- "pool": "76.10.58.21 - 76.10.59.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.58.21 - 76.10.59.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -66176,13 +66176,13 @@
// ],
"pools": [
{
- "pool": "76.10.37.3 - 76.10.37.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.37.3 - 76.10.37.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -66219,13 +66219,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.70.100 - 10.149.70.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.70.100 - 10.149.70.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -66295,13 +66295,13 @@
// ],
"pools": [
{
- "pool": "68.180.22.21 - 68.180.23.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.22.21 - 68.180.23.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -66352,13 +66352,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.98.100 - 10.149.98.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.98.100 - 10.149.98.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -66410,13 +66410,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "216.171.60.21 - 216.171.63.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "216.171.60.21 - 216.171.63.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -66459,13 +66459,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.234.181.3 - 68.234.181.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.181.3 - 68.234.181.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -66508,13 +66508,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "76.10.28.3 - 76.10.28.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "76.10.28.3 - 76.10.28.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -66557,13 +66557,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.78.50 - 10.149.78.250"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.78.50 - 10.149.78.250",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -66632,13 +66632,13 @@
// ],
"pools": [
{
- "pool": "50.30.164.21 - 50.30.165.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.164.21 - 50.30.165.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -66698,13 +66698,13 @@
// ],
"pools": [
{
- "pool": "50.30.188.3 - 50.30.188.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.188.3 - 50.30.188.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -66749,13 +66749,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.250.62.100 - 10.250.62.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.250.62.100 - 10.250.62.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -66833,13 +66833,13 @@
// ],
"pools": [
{
- "pool": "66.253.216.21 - 66.253.219.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.216.21 - 66.253.219.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -66890,13 +66890,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.74.100 - 10.144.74.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.74.100 - 10.144.74.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -66965,13 +66965,13 @@
// ],
"pools": [
{
- "pool": "68.234.187.223 - 68.234.187.241"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.187.223 - 68.234.187.241",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -69622,13 +69622,13 @@
// ],
"pools": [
{
- "pool": "10.180.35.10 - 10.180.35.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.180.35.10 - 10.180.35.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -69683,13 +69683,13 @@
// ],
"pools": [
{
- "pool": "10.146.198.100 - 10.146.198.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.198.100 - 10.146.198.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -69758,13 +69758,13 @@
// ],
"pools": [
{
- "pool": "50.30.254.21 - 50.30.255.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.254.21 - 50.30.255.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -69815,13 +69815,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.94.100 - 10.144.94.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.94.100 - 10.144.94.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -69905,13 +69905,13 @@
// ],
"pools": [
{
- "pool": "66.253.148.21 - 66.253.148.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.148.21 - 66.253.148.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -69942,13 +69942,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.146.228.100 - 10.146.228.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.146.228.100 - 10.146.228.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -70018,13 +70018,13 @@
// ],
"pools": [
{
- "pool": "173.230.44.21 - 173.230.47.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.44.21 - 173.230.47.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -70055,13 +70055,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.96.100 - 10.145.96.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.96.100 - 10.145.96.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -70131,13 +70131,13 @@
// ],
"pools": [
{
- "pool": "96.63.216.21 - 96.63.219.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.216.21 - 96.63.219.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -70188,13 +70188,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.90.100 - 10.145.90.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.90.100 - 10.145.90.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -70264,13 +70264,13 @@
// ],
"pools": [
{
- "pool": "50.30.220.21 - 50.30.223.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.220.21 - 50.30.223.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -70315,13 +70315,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.153.22.100 - 10.153.22.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.153.22.100 - 10.153.22.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -70400,13 +70400,13 @@
"valid-lifetime": 14400,
"pools": [
{
- "pool": "50.30.144.21 - 50.30.147.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.144.21 - 50.30.147.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -70475,13 +70475,13 @@
"valid-lifetime": 14400,
"pools": [
{
- "pool": "50.30.128.3 - 50.30.128.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.128.3 - 50.30.128.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -70550,13 +70550,13 @@
"valid-lifetime": 14400,
"pools": [
{
- "pool": "50.30.150.3 - 50.30.151.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.150.3 - 50.30.151.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -70593,13 +70593,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.70.100 - 10.144.70.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.70.100 - 10.144.70.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -70668,13 +70668,13 @@
// ],
"pools": [
{
- "pool": "68.180.96.21 - 68.180.97.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.96.21 - 68.180.97.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -70719,13 +70719,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.38.100 - 10.145.38.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.38.100 - 10.145.38.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -70795,13 +70795,13 @@
// ],
"pools": [
{
- "pool": "50.30.192.21 - 50.30.199.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.192.21 - 50.30.199.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -70838,13 +70838,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.46.100 - 10.145.46.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.46.100 - 10.145.46.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -70914,13 +70914,13 @@
// ],
"pools": [
{
- "pool": "96.63.236.21 - 96.63.239.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "96.63.236.21 - 96.63.239.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -70965,13 +70965,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.94.100 - 10.145.94.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.94.100 - 10.145.94.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -71041,13 +71041,13 @@
// ],
"pools": [
{
- "pool": "68.234.172.21 - 68.234.175.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.172.21 - 68.234.175.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -71107,22 +71107,22 @@
// ],
"pools": [
{
- "pool": "66.253.158.3 - 66.253.158.7"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.158.3 - 66.253.158.7",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
},
{
- "pool": "66.253.158.9 - 66.253.159.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.158.9 - 66.253.159.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -71173,13 +71173,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.58.100 - 10.145.58.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.58.100 - 10.145.58.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -71249,13 +71249,13 @@
// ],
"pools": [
{
- "pool": "71.42.232.21 - 71.42.235.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "71.42.232.21 - 71.42.235.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -71292,13 +71292,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.82.100 - 10.145.82.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.82.100 - 10.145.82.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -71367,13 +71367,13 @@
// ],
"pools": [
{
- "pool": "68.180.14.21 - 68.180.15.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.14.21 - 68.180.15.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -71418,13 +71418,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.102.100 - 10.144.102.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.102.100 - 10.144.102.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -71477,13 +71477,13 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "68.234.216.21 - 68.234.223.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.216.21 - 68.234.223.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -71520,13 +71520,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.54.100 - 10.145.54.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.54.100 - 10.145.54.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -71596,13 +71596,13 @@
// ],
"pools": [
{
- "pool": "173.230.88.21 - 173.230.91.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.88.21 - 173.230.91.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -71657,13 +71657,13 @@
// ],
"pools": [
{
- "pool": "10.144.26.100 - 10.144.26.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.26.100 - 10.144.26.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -71733,13 +71733,13 @@
// ],
"pools": [
{
- "pool": "173.230.40.21 - 173.230.43.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.40.21 - 173.230.43.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -71790,13 +71790,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.145.50.100 - 10.145.50.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.145.50.100 - 10.145.50.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -71866,13 +71866,13 @@
// ],
"pools": [
{
- "pool": "50.30.166.21 - 50.30.167.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.166.21 - 50.30.167.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -71940,13 +71940,13 @@
// ],
"pools": [
{
- "pool": "50.30.189.3 - 50.30.189.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.189.3 - 50.30.189.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -71983,13 +71983,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.250.70.100 - 10.250.70.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.250.70.100 - 10.250.70.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -72058,13 +72058,13 @@
// ],
"pools": [
{
- "pool": "50.30.168.21 - 50.30.169.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.168.21 - 50.30.169.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -72132,13 +72132,13 @@
// ],
"pools": [
{
- "pool": "50.30.190.3 - 50.30.190.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.190.3 - 50.30.190.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -72175,13 +72175,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.250.74.100 - 10.250.74.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.250.74.100 - 10.250.74.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -72251,13 +72251,13 @@
// ],
"pools": [
{
- "pool": "68.180.12.21 - 68.180.13.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.180.12.21 - 68.180.13.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -72308,13 +72308,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.144.98.100 - 10.144.98.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.144.98.100 - 10.144.98.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
],
"reservations": [
@@ -72400,13 +72400,13 @@
// ],
"pools": [
{
- "pool": "10.16.8.21 - 10.16.11.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "10.16.8.21 - 10.16.11.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -72443,13 +72443,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.148.38.100 - 10.148.38.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.148.38.100 - 10.148.38.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -72519,13 +72519,13 @@
// ],
"pools": [
{
- "pool": "173.230.0.21 - 173.230.7.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "173.230.0.21 - 173.230.7.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -72599,13 +72599,13 @@
// ],
"pools": [
{
- "pool": "66.253.180.3 - 66.253.180.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "66.253.180.3 - 66.253.180.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -72656,13 +72656,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.150.50 - 10.149.150.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.149.150.50 - 10.149.150.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -72732,13 +72732,13 @@
// ],
"pools": [
{
- "pool": "50.30.158.21 - 50.30.159.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.158.21 - 50.30.159.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
],
"reservations": [
@@ -72806,13 +72806,13 @@
// ],
"pools": [
{
- "pool": "50.30.185.3 - 50.30.185.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "50.30.185.3 - 50.30.185.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -72849,13 +72849,13 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.250.34.100 - 10.250.34.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.250.34.100 - 10.250.34.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -72924,13 +72924,13 @@
// ],
"pools": [
{
- "pool": "68.234.244.21 - 68.234.247.254"
-// /// From:
-// /// deny ruckus
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!ubnt#"
+ "pool": "68.234.244.21 - 68.234.247.254",
+ /// From:
+ /// deny ruckus
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!ubnt#"
}
]
},
@@ -72985,13 +72985,13 @@
// ],
"pools": [
{
- "pool": "10.150.22.100 - 10.150.22.239"
-// /// From:
-// /// allow ruckus
-// /// allow ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#ruckus#ubnt#"
+ "pool": "10.150.22.100 - 10.150.22.239",
+ /// From:
+ /// allow ruckus
+ /// allow ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#ruckus#ubnt#"
}
]
}
@@ -73043,12 +73043,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "66.253.232.21 - 66.253.235.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "66.253.232.21 - 66.253.235.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
],
"reservations": [
@@ -73111,12 +73111,12 @@
#default-lease-time dTlease0;
#max-lease-time mdTlease0;
{
- "pool": "66.253.242.3 - 66.253.243.254"
-// /// From:
-// /// deny ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#"
+ "pool": "66.253.242.3 - 66.253.243.254",
+ /// From:
+ /// deny ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#"
}
]
},
@@ -73153,12 +73153,12 @@
{
#default-lease-time dTruk;
#max-lease-time mdTruk;
- "pool": "10.149.50.100 - 10.149.50.239"
-// /// From:
-// /// allow ruckus
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "ruckus"
+ "pool": "10.149.50.100 - 10.149.50.239",
+ /// From:
+ /// allow ruckus
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "ruckus"
}
]
}
@@ -73240,10 +73240,10 @@
// ],
"pools": [
{
- "pool": "10.149.184.20 - 10.149.187.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.149.184.20 - 10.149.187.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
],
/// Host reservations without fixed addresses were put in the last declared subnet
@@ -74379,14 +74379,14 @@
// ],
"pools": [
{
- "pool": "68.234.252.21 - 68.234.252.254"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!ubnt#"
+ "pool": "68.234.252.21 - 68.234.252.254",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!ubnt#"
}
]
},
@@ -74446,14 +74446,14 @@
// ],
"pools": [
{
- "pool": "68.234.253.3 - 68.234.253.254"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!ubnt#"
+ "pool": "68.234.253.3 - 68.234.253.254",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!ubnt#"
}
]
},
@@ -74513,14 +74513,14 @@
// ],
"pools": [
{
- "pool": "68.234.255.3 - 68.234.255.254"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny ubnt
-// /// deny dynamic bootp clients
-// /// dynamic-bootp-client is not supported by Kea
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!ubnt#"
+ "pool": "68.234.255.3 - 68.234.255.254",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny ubnt
+ /// deny dynamic bootp clients
+ /// dynamic-bootp-client is not supported by Kea
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!ubnt#"
}
]
}
@@ -74600,10 +74600,10 @@
// ],
"pools": [
{
- "pool": "10.149.183.21 - 10.149.183.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.149.183.21 - 10.149.183.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
],
/// Host reservations without fixed addresses were put in the last declared subnet
@@ -74780,12 +74780,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "68.234.131.138 - 68.234.131.250"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "68.234.131.138 - 68.234.131.250",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -74867,10 +74867,10 @@
// ],
"pools": [
{
- "pool": "10.160.252.21 - 10.160.252.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.160.252.21 - 10.160.252.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
],
/// Host reservations without fixed addresses were put in the last declared subnet
@@ -74939,12 +74939,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "66.253.183.135 - 66.253.183.155"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "66.253.183.135 - 66.253.183.155",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -75029,10 +75029,10 @@
// ],
"pools": [
{
- "pool": "10.160.248.21 - 10.160.251.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.160.248.21 - 10.160.251.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
]
},
@@ -75081,12 +75081,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "66.253.201.146 - 66.253.201.155"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "66.253.201.146 - 66.253.201.155",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -75169,10 +75169,10 @@
// ],
"pools": [
{
- "pool": "10.160.16.20 - 10.160.16.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.160.16.20 - 10.160.16.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
],
/// Host reservations without fixed addresses were put in the last declared subnet
@@ -75274,12 +75274,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "10.160.18.20 - 10.160.18.250"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "10.160.18.20 - 10.160.18.250",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -75362,10 +75362,10 @@
// ],
"pools": [
{
- "pool": "10.160.28.20 - 10.160.28.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.160.28.20 - 10.160.28.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
],
/// Host reservations without fixed addresses were put in the last declared subnet
@@ -75517,22 +75517,22 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "10.160.30.20 - 10.160.30.250"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "10.160.30.20 - 10.160.30.250",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
},
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "10.160.31.20 - 10.160.31.250"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "10.160.31.20 - 10.160.31.250",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -75615,10 +75615,10 @@
// ],
"pools": [
{
- "pool": "10.160.32.20 - 10.160.32.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.160.32.20 - 10.160.32.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
],
/// Host reservations without fixed addresses were put in the last declared subnet
@@ -75705,12 +75705,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "10.160.34.20 - 10.160.34.250"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "10.160.34.20 - 10.160.34.250",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -75793,10 +75793,10 @@
// ],
"pools": [
{
- "pool": "10.160.24.20 - 10.160.24.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.160.24.20 - 10.160.24.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
]
},
@@ -75858,12 +75858,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "10.160.26.20 - 10.160.26.250"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "10.160.26.20 - 10.160.26.250",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -75943,10 +75943,10 @@
// ],
"pools": [
{
- "pool": "10.146.8.21 - 10.146.8.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.146.8.21 - 10.146.8.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
],
/// Host reservations without fixed addresses were put in the last declared subnet
@@ -76027,12 +76027,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "66.253.247.136 - 66.253.247.250"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "66.253.247.136 - 66.253.247.250",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -76112,10 +76112,10 @@
// ],
"pools": [
{
- "pool": "10.146.12.21 - 10.146.12.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.146.12.21 - 10.146.12.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
]
},
@@ -76172,12 +76172,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "173.230.70.15 - 173.230.70.126"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "173.230.70.15 - 173.230.70.126",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
@@ -76257,10 +76257,10 @@
// ],
"pools": [
{
- "pool": "10.160.44.21 - 10.160.47.250"
-// /// From:
-// /// allow cm-unregistered
-// "client-class": "cm-unregistered"
+ "pool": "10.160.44.21 - 10.160.47.250",
+ /// From:
+ /// allow cm-unregistered
+ "client-class": "cm-unregistered"
}
]
},
@@ -76321,12 +76321,12 @@
# default-lease-time dTlease0;
# max-lease-time mdTlease0;
{
- "pool": "66.253.224.20 - 66.253.227.250"
-// /// From:
-// /// deny ruckus
-// /// deny cm-unregistered
-// /// deny 3010s
-// "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
+ "pool": "66.253.224.20 - 66.253.227.250",
+ /// From:
+ /// deny ruckus
+ /// deny cm-unregistered
+ /// deny 3010s
+ "client-class": "gen#_AND_#!ruckus#!cm-unregistered#!3010s#"
}
]
}
diff --git a/keama/tests/permitauth4.out b/keama/tests/permitauth4.out
index fde523fa..539ec5b0 100644
--- a/keama/tests/permitauth4.out
+++ b/keama/tests/permitauth4.out
@@ -13,11 +13,11 @@
# pool declaration
{
# avoid empty pool
- "pool": "10.5.5.5 - 10.5.5.10"
-// /// From:
-// /// allow authenticated clients
-// /// [un]authenticated-clients is not supported by ISC DHCP and Kea
-// "client-class": "gen#!ALL#"
+ "pool": "10.5.5.5 - 10.5.5.10",
+ /// From:
+ /// allow authenticated clients
+ /// [un]authenticated-clients is not supported by ISC DHCP and Kea
+ "client-class": "gen#!ALL#"
}
]
}
@@ -27,11 +27,11 @@
{
"name": "gen#ALL#",
"test": "'' == ''"
+ },
+ {
+ "name": "gen#!ALL#",
+ "test": "not member('gen#ALL#')"
}
-// {
-// "name": "gen#!ALL#",
-// "test": "not member('ALL')"
-// }
]
}
}
diff --git a/keama/tests/permitauth6.out b/keama/tests/permitauth6.out
index cade66a6..ffa42e79 100644
--- a/keama/tests/permitauth6.out
+++ b/keama/tests/permitauth6.out
@@ -13,11 +13,11 @@
# pool declaration
{
# avoid empty pool
- "pool": "2001::100 - 2001::200"
-// /// From:
-// /// deny unauthenticated clients
-// /// [un]authenticated-clients is not supported by ISC DHCP and Kea
-// "client-class": "gen#_AND_#!ALL#"
+ "pool": "2001::100 - 2001::200",
+ /// From:
+ /// deny unauthenticated clients
+ /// [un]authenticated-clients is not supported by ISC DHCP and Kea
+ "client-class": "gen#_AND_#!ALL#"
}
]
}
@@ -27,11 +27,11 @@
{
"name": "gen#ALL#",
"test": "'' == ''"
+ },
+ {
+ "name": "gen#_AND_#!ALL#",
+ "test": "not member('gen#ALL#')"
}
-// {
-// "name": "gen#_AND_#!ALL#",
-// "test": "not member('ALL')"
-// }
]
}
}
diff --git a/keama/tests/samples/example.json b/keama/tests/samples/example.json
index 62a79d03..3ae88b75 100644
--- a/keama/tests/samples/example.json
+++ b/keama/tests/samples/example.json
@@ -176,11 +176,11 @@
"name": "foo",
/// from: match if (substring(option dhcp.vendor-class-identifier, 0, 4)) = 'SUNW'
"test": "substring(option[60].hex,0,4) == 'SUNW'"
+ },
+ {
+ "name": "gen#_AND_#!foo#",
+ "test": "not member('foo')"
}
-// {
-// "name": "gen#_AND_#!foo#",
-// "test": "not member('foo')"
-// }
],
/// Kea shared-networks are different, cf Kea #5430
"shared-networks": [
@@ -200,10 +200,10 @@
],
"pools": [
{
- "pool": "10.17.224.10 - 10.17.224.250"
-// /// From:
-// /// allow foo
-// "client-class": "foo"
+ "pool": "10.17.224.10 - 10.17.224.250",
+ /// From:
+ /// allow foo
+ "client-class": "foo"
}
]
},
@@ -220,10 +220,10 @@
],
"pools": [
{
- "pool": "10.0.29.10 - 10.0.29.230"
-// /// From:
-// /// deny foo
-// "client-class": "gen#_AND_#!foo#"
+ "pool": "10.0.29.10 - 10.0.29.230",
+ /// From:
+ /// deny foo
+ "client-class": "gen#_AND_#!foo#"
}
]
}