aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOle Mathias Heggem <olemathias.aa.heggem@gmail.com>2023-04-26 23:10:16 +0200
committerOle Mathias Heggem <olemathias.aa.heggem@gmail.com>2023-04-26 23:12:05 +0200
commit52fcb9b5aa3870c5c3852b9ec7a50c3d15df497b (patch)
tree0ba7b5ded5437a01b8fed86898b44ff53dc73746
parent7544288305b715416f2c2320ae27750bc3feab9a (diff)
Add TG23 DHCP Config 💾
-rw-r--r--examples/tg23/dhcp/README.md2
-rw-r--r--examples/tg23/dhcp/kea-dhcp4.conf3892
-rw-r--r--examples/tg23/dhcp/kea-dhcp6.conf2572
3 files changed, 6466 insertions, 0 deletions
diff --git a/examples/tg23/dhcp/README.md b/examples/tg23/dhcp/README.md
new file mode 100644
index 0000000..8ced33a
--- /dev/null
+++ b/examples/tg23/dhcp/README.md
@@ -0,0 +1,2 @@
+# DHCP
+Generated using TG DHCPNS \ No newline at end of file
diff --git a/examples/tg23/dhcp/kea-dhcp4.conf b/examples/tg23/dhcp/kea-dhcp4.conf
new file mode 100644
index 0000000..fed99f6
--- /dev/null
+++ b/examples/tg23/dhcp/kea-dhcp4.conf
@@ -0,0 +1,3892 @@
+{
+ "Dhcp4": {
+ "hooks-libraries": [
+ {
+ "library": "/usr/lib/x86_64-linux-gnu/kea/hooks/libdhcp_flex_option.so",
+ "parameters": {
+ "options": [
+ {
+ "name": "vendor-encapsulated-options",
+ "client-class": "fap-class",
+ "sub-options": [
+ {
+ "name": "config-file-name",
+ "space": "vendor-encapsulated-options-space",
+ "supersede": "ifelse(option[82].option[1].exists,concat('api/templates/magic.conf/a=', option[82].option[1].hex),'')"
+ }
+ ]
+ },
+ {
+ "name": "host-name",
+ "client-class": "fap-class",
+ "remove": "option[12].exists"
+ }
+ ]
+ }
+ },
+ {
+ "library": "/usr/lib/x86_64-linux-gnu/kea/hooks/libdhcp_run_script.so",
+ "parameters": {
+ "name": "/etc/kea/gondul.sh",
+ "sync": false
+ }
+ }
+ ],
+ "dhcp-ddns": {
+ "enable-updates": true,
+ "server-ip": "::1"
+ },
+ "ddns-send-updates": true,
+ "ddns-override-no-update": false,
+ "ddns-override-client-update": false,
+ "ddns-replace-client-name": "always",
+ "ddns-generated-prefix": "dyn",
+ "ddns-update-on-renew": false,
+ "ddns-use-conflict-resolution": true,
+ "interfaces-config": {
+ "interfaces": [
+ "eth0"
+ ],
+ "dhcp-socket-type": "udp"
+ },
+ "control-socket": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea4-ctrl-socket"
+ },
+ "lease-database": {
+ "type": "postgresql",
+ "name": "kea",
+ "user": "kea",
+ "password": "<removed>"
+ },
+ "expired-leases-processing": {
+ "reclaim-timer-wait-time": 10,
+ "flush-reclaimed-timer-wait-time": 25,
+ "hold-reclaimed-time": 3600,
+ "max-reclaim-leases": 100,
+ "max-reclaim-time": 250,
+ "unwarned-reclaim-cycles": 5
+ },
+ "authoritative": true,
+ "renew-timer": 900,
+ "rebind-timer": 1800,
+ "valid-lifetime": 3600,
+ "option-def": [
+ {
+ "name": "image-file-name",
+ "code": 0,
+ "space": "vendor-encapsulated-options-space",
+ "type": "string",
+ "array": false
+ },
+ {
+ "name": "config-file-name",
+ "code": 1,
+ "space": "vendor-encapsulated-options-space",
+ "type": "string",
+ "array": false
+ },
+ {
+ "name": "image-file-type",
+ "code": 2,
+ "space": "vendor-encapsulated-options-space",
+ "type": "string",
+ "array": false
+ },
+ {
+ "name": "transfer-mode",
+ "code": 3,
+ "space": "vendor-encapsulated-options-space",
+ "type": "string",
+ "array": false
+ },
+ {
+ "code": 150,
+ "name": "tftp-server-address",
+ "space": "dhcp4",
+ "type": "ipv4-address",
+ "array": true
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-name-servers",
+ "data": "185.110.148.101, 185.110.148.132"
+ },
+ {
+ "name": "domain-name",
+ "data": "tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "tg23.gathering.org"
+ }
+ ],
+ "client-classes": [
+ {
+ "name": "client-juniper-vendor",
+ "test": "substring(option[vendor-class-identifier].hex,0,7) == 'Juniper'"
+ },
+ {
+ "name": "client-juniper-mac",
+ "test": "substring(pkt4.mac, 0, 2) == '0x44f477' or substring(pkt4.mac, 0, 2) == '0xf01c2d'"
+ },
+ {
+ "name": "fap-class",
+ "test": "member('client-juniper-vendor') or member('client-juniper-mac')",
+ "option-data": [
+ {
+ "name": "vendor-encapsulated-options",
+ "always-send": true
+ },
+ {
+ "name": "transfer-mode",
+ "space": "vendor-encapsulated-options-space",
+ "data": "http",
+ "always-send": true
+ },
+ {
+ "name": "tftp-server-address",
+ "data": "185.110.148.105",
+ "always-send": true
+ }
+ ]
+ },
+ {
+ "name": "Cisco-Phone",
+ "test": "substring(option[60].hex,0,28) == 'Cisco Systems, Inc. IP Phone'",
+ "option-data": [
+ {
+ "name": "tftp-server-address",
+ "data": "<removed>",
+ "always-send": true
+ }
+ ]
+ },
+ {
+ "name": "PXE-XClient_iPXE",
+ "test": "substring(option[77].hex,0,4) == 'iPXE'",
+ "boot-file-name": "https://185.110.148.99/menu.ipxe"
+ },
+ {
+ "name": "PXE-UEFI-32-1",
+ "test": "substring(option[60].hex,0,20) == 'PXEClient:Arch:00006'",
+ "next-server": "185.110.148.99",
+ "boot-file-name": "netboot.xyz.efi"
+ },
+ {
+ "name": "PXE-UEFI-32-2",
+ "test": "substring(option[60].hex,0,20) == 'PXEClient:Arch:00002'",
+ "next-server": "185.110.148.99",
+ "boot-file-name": "netboot.xyz.efi"
+ },
+ {
+ "name": "PXE-UEFI-64-1",
+ "test": "substring(option[60].hex,0,20) == 'PXEClient:Arch:00007'",
+ "next-server": "185.110.148.99",
+ "boot-file-name": "netboot.xyz.efi"
+ },
+ {
+ "name": "PXE-UEFI-64-2",
+ "test": "substring(option[60].hex,0,20) == 'PXEClient:Arch:00008'",
+ "next-server": "185.110.148.99",
+ "boot-file-name": "netboot.xyz.efi"
+ },
+ {
+ "name": "PXE-UEFI-64-3",
+ "test": "substring(option[60].hex,0,20) == 'PXEClient:Arch:00009'",
+ "next-server": "185.110.148.99",
+ "boot-file-name": "netboot.xyz.efi"
+ },
+ {
+ "name": "PXE-Legacy",
+ "test": "substring(option[60].hex,0,20) == 'PXEClient:Arch:00000'",
+ "next-server": "185.110.148.99",
+ "boot-file-name": "netboot.xyz-undionly.kpxe"
+ }
+ ],
+ "subnet4": [
+ {
+ "id": 537,
+ "subnet": "88.92.21.64/26",
+ "ddns-qualifying-suffix": "net-e1.crew.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.21.66 - 88.92.21.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.21.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.crew.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.crew.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.crew",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 597,
+ "subnet": "88.92.21.128/26",
+ "ddns-qualifying-suffix": "net-e1.infodesk.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.21.130 - 88.92.21.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.21.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.infodesk.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.infodesk.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.infodesk",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 598,
+ "subnet": "88.92.21.192/26",
+ "ddns-qualifying-suffix": "net-e1.gamedesk.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.21.194 - 88.92.21.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.21.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.gamedesk.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.gamedesk.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.gamedesk",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 352,
+ "subnet": "88.92.0.0/26",
+ "ddns-qualifying-suffix": "net-e1-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.0.2 - 88.92.0.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.0.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 354,
+ "subnet": "88.92.0.64/26",
+ "ddns-qualifying-suffix": "net-e1-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.0.66 - 88.92.0.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.0.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 356,
+ "subnet": "88.92.0.128/26",
+ "ddns-qualifying-suffix": "net-e1-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.0.130 - 88.92.0.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.0.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 358,
+ "subnet": "88.92.0.192/26",
+ "ddns-qualifying-suffix": "net-e1-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.0.194 - 88.92.0.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.0.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 360,
+ "subnet": "88.92.1.0/26",
+ "ddns-qualifying-suffix": "net-e3-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.1.2 - 88.92.1.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.1.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e3-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e3-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 362,
+ "subnet": "88.92.1.64/26",
+ "ddns-qualifying-suffix": "net-e3-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.1.66 - 88.92.1.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.1.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e3-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e3-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 364,
+ "subnet": "88.92.1.128/26",
+ "ddns-qualifying-suffix": "net-e3-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.1.130 - 88.92.1.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.1.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e3-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e3-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 366,
+ "subnet": "88.92.1.192/26",
+ "ddns-qualifying-suffix": "net-e3-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.1.194 - 88.92.1.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.1.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e3-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e3-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 368,
+ "subnet": "88.92.2.0/26",
+ "ddns-qualifying-suffix": "net-e5-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.2.2 - 88.92.2.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.2.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e5-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e5-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e5-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 370,
+ "subnet": "88.92.2.64/26",
+ "ddns-qualifying-suffix": "net-e5-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.2.66 - 88.92.2.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.2.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e5-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e5-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e5-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 372,
+ "subnet": "88.92.2.128/26",
+ "ddns-qualifying-suffix": "net-e5-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.2.130 - 88.92.2.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.2.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e5-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e5-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e5-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 374,
+ "subnet": "88.92.2.192/26",
+ "ddns-qualifying-suffix": "net-e5-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.2.194 - 88.92.2.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.2.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e5-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e5-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e5-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 376,
+ "subnet": "88.92.3.0/26",
+ "ddns-qualifying-suffix": "net-e7-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.3.2 - 88.92.3.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.3.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e7-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e7-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e7-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 378,
+ "subnet": "88.92.3.64/26",
+ "ddns-qualifying-suffix": "net-e7-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.3.66 - 88.92.3.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.3.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e7-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e7-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e7-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 380,
+ "subnet": "88.92.3.128/26",
+ "ddns-qualifying-suffix": "net-e7-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.3.130 - 88.92.3.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.3.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e7-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e7-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e7-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 382,
+ "subnet": "88.92.3.192/26",
+ "ddns-qualifying-suffix": "net-e7-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.3.194 - 88.92.3.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.3.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e7-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e7-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e7-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 384,
+ "subnet": "88.92.4.0/26",
+ "ddns-qualifying-suffix": "net-e9-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.4.2 - 88.92.4.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.4.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e9-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e9-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e9-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 386,
+ "subnet": "88.92.4.64/26",
+ "ddns-qualifying-suffix": "net-e9-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.4.66 - 88.92.4.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.4.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e9-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e9-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e9-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 388,
+ "subnet": "88.92.4.128/26",
+ "ddns-qualifying-suffix": "net-e9-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.4.130 - 88.92.4.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.4.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e9-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e9-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e9-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 390,
+ "subnet": "88.92.4.192/26",
+ "ddns-qualifying-suffix": "net-e9-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.4.194 - 88.92.4.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.4.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e9-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e9-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e9-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 392,
+ "subnet": "88.92.5.0/26",
+ "ddns-qualifying-suffix": "net-e11-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.5.2 - 88.92.5.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.5.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e11-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e11-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e11-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 394,
+ "subnet": "88.92.5.64/26",
+ "ddns-qualifying-suffix": "net-e13-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.5.66 - 88.92.5.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.5.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e13-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e13-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e13-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 396,
+ "subnet": "88.92.5.128/26",
+ "ddns-qualifying-suffix": "net-e15-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.5.130 - 88.92.5.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.5.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e15-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e15-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e15-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 398,
+ "subnet": "88.92.5.192/26",
+ "ddns-qualifying-suffix": "net-e17-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.5.194 - 88.92.5.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.5.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e17-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e17-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e17-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 400,
+ "subnet": "88.92.6.0/26",
+ "ddns-qualifying-suffix": "net-e17-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.6.2 - 88.92.6.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.6.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e17-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e17-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e17-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 402,
+ "subnet": "88.92.6.64/26",
+ "ddns-qualifying-suffix": "net-e17-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.6.66 - 88.92.6.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.6.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e17-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e17-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e17-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 404,
+ "subnet": "88.92.6.128/26",
+ "ddns-qualifying-suffix": "net-e17-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.6.130 - 88.92.6.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.6.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e17-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e17-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e17-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 406,
+ "subnet": "88.92.6.192/26",
+ "ddns-qualifying-suffix": "net-e19-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.6.194 - 88.92.6.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.6.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e19-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e19-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e19-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 408,
+ "subnet": "88.92.7.0/26",
+ "ddns-qualifying-suffix": "net-e19-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.7.2 - 88.92.7.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.7.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e19-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e19-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e19-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 410,
+ "subnet": "88.92.7.64/26",
+ "ddns-qualifying-suffix": "net-e19-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.7.66 - 88.92.7.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.7.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e19-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e19-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e19-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 412,
+ "subnet": "88.92.7.128/26",
+ "ddns-qualifying-suffix": "net-e19-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.7.130 - 88.92.7.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.7.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e19-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e19-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e19-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 414,
+ "subnet": "88.92.7.192/26",
+ "ddns-qualifying-suffix": "net-e21-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.7.194 - 88.92.7.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.7.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e21-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e21-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e21-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 416,
+ "subnet": "88.92.8.0/26",
+ "ddns-qualifying-suffix": "net-e21-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.8.2 - 88.92.8.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.8.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e21-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e21-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e21-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 418,
+ "subnet": "88.92.8.64/26",
+ "ddns-qualifying-suffix": "net-e21-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.8.66 - 88.92.8.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.8.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e21-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e21-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e21-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 420,
+ "subnet": "88.92.8.128/26",
+ "ddns-qualifying-suffix": "net-e21-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.8.130 - 88.92.8.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.8.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e21-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e21-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e21-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 422,
+ "subnet": "88.92.8.192/26",
+ "ddns-qualifying-suffix": "net-e23-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.8.194 - 88.92.8.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.8.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e23-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e23-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e23-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 424,
+ "subnet": "88.92.9.0/26",
+ "ddns-qualifying-suffix": "net-e23-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.9.2 - 88.92.9.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.9.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e23-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e23-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e23-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 426,
+ "subnet": "88.92.9.64/26",
+ "ddns-qualifying-suffix": "net-e23-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.9.66 - 88.92.9.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.9.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e23-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e23-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e23-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 428,
+ "subnet": "88.92.9.128/26",
+ "ddns-qualifying-suffix": "net-e23-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.9.130 - 88.92.9.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.9.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e23-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e23-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e23-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 430,
+ "subnet": "88.92.9.192/26",
+ "ddns-qualifying-suffix": "net-e25-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.9.194 - 88.92.9.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.9.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e25-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e25-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e25-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 432,
+ "subnet": "88.92.10.0/26",
+ "ddns-qualifying-suffix": "net-e25-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.10.2 - 88.92.10.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.10.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e25-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e25-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e25-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 434,
+ "subnet": "88.92.10.64/26",
+ "ddns-qualifying-suffix": "net-e25-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.10.66 - 88.92.10.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.10.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e25-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e25-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e25-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 436,
+ "subnet": "88.92.10.128/26",
+ "ddns-qualifying-suffix": "net-e25-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.10.130 - 88.92.10.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.10.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e25-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e25-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e25-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 438,
+ "subnet": "88.92.10.192/26",
+ "ddns-qualifying-suffix": "net-e27-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.10.194 - 88.92.10.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.10.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e27-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e27-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e27-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 440,
+ "subnet": "88.92.11.0/26",
+ "ddns-qualifying-suffix": "net-e27-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.11.2 - 88.92.11.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.11.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e27-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e27-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e27-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 442,
+ "subnet": "88.92.11.64/26",
+ "ddns-qualifying-suffix": "net-e27-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.11.66 - 88.92.11.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.11.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e27-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e27-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e27-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 444,
+ "subnet": "88.92.11.128/26",
+ "ddns-qualifying-suffix": "net-e27-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.11.130 - 88.92.11.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.11.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e27-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e27-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e27-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 446,
+ "subnet": "88.92.11.192/26",
+ "ddns-qualifying-suffix": "net-e29-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.11.194 - 88.92.11.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.11.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e29-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e29-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e29-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 448,
+ "subnet": "88.92.12.0/26",
+ "ddns-qualifying-suffix": "net-e29-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.12.2 - 88.92.12.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.12.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e29-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e29-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e29-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 450,
+ "subnet": "88.92.12.64/26",
+ "ddns-qualifying-suffix": "net-e29-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.12.66 - 88.92.12.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.12.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e29-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e29-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e29-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 452,
+ "subnet": "88.92.12.128/26",
+ "ddns-qualifying-suffix": "net-e29-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.12.130 - 88.92.12.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.12.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e29-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e29-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e29-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 454,
+ "subnet": "88.92.12.192/26",
+ "ddns-qualifying-suffix": "net-e31-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.12.194 - 88.92.12.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.12.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e31-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e31-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e31-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 456,
+ "subnet": "88.92.13.0/26",
+ "ddns-qualifying-suffix": "net-e31-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.13.2 - 88.92.13.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.13.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e31-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e31-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e31-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 458,
+ "subnet": "88.92.13.64/26",
+ "ddns-qualifying-suffix": "net-e31-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.13.66 - 88.92.13.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.13.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e31-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e31-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e31-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 460,
+ "subnet": "88.92.13.128/26",
+ "ddns-qualifying-suffix": "net-e31-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.13.130 - 88.92.13.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.13.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e31-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e31-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e31-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 462,
+ "subnet": "88.92.13.192/26",
+ "ddns-qualifying-suffix": "net-e33-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.13.194 - 88.92.13.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.13.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e33-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e33-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e33-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 464,
+ "subnet": "88.92.14.0/26",
+ "ddns-qualifying-suffix": "net-e33-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.14.2 - 88.92.14.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.14.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e33-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e33-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e33-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 466,
+ "subnet": "88.92.14.64/26",
+ "ddns-qualifying-suffix": "net-e33-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.14.66 - 88.92.14.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.14.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e33-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e33-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e33-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 468,
+ "subnet": "88.92.14.128/26",
+ "ddns-qualifying-suffix": "net-e33-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.14.130 - 88.92.14.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.14.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e33-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e33-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e33-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 470,
+ "subnet": "88.92.14.192/26",
+ "ddns-qualifying-suffix": "net-e35-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.14.194 - 88.92.14.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.14.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e35-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e35-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e35-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 472,
+ "subnet": "88.92.15.0/26",
+ "ddns-qualifying-suffix": "net-e35-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.15.2 - 88.92.15.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.15.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e35-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e35-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e35-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 474,
+ "subnet": "88.92.15.64/26",
+ "ddns-qualifying-suffix": "net-e35-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.15.66 - 88.92.15.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.15.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e35-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e35-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e35-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 476,
+ "subnet": "88.92.15.128/26",
+ "ddns-qualifying-suffix": "net-e35-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.15.130 - 88.92.15.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.15.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e35-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e35-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e35-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 478,
+ "subnet": "88.92.15.192/26",
+ "ddns-qualifying-suffix": "net-e37-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.15.194 - 88.92.15.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.15.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e37-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e37-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e37-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 480,
+ "subnet": "88.92.16.0/26",
+ "ddns-qualifying-suffix": "net-e37-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.16.2 - 88.92.16.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.16.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e37-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e37-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e37-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 482,
+ "subnet": "88.92.16.64/26",
+ "ddns-qualifying-suffix": "net-e37-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.16.66 - 88.92.16.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.16.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e37-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e37-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e37-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 484,
+ "subnet": "88.92.16.128/26",
+ "ddns-qualifying-suffix": "net-e37-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.16.130 - 88.92.16.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.16.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e37-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e37-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e37-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 486,
+ "subnet": "88.92.16.192/26",
+ "ddns-qualifying-suffix": "net-e39-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.16.194 - 88.92.16.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.16.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e39-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e39-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e39-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 488,
+ "subnet": "88.92.17.0/26",
+ "ddns-qualifying-suffix": "net-e39-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.17.2 - 88.92.17.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.17.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e39-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e39-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e39-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 490,
+ "subnet": "88.92.17.64/26",
+ "ddns-qualifying-suffix": "net-e39-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.17.66 - 88.92.17.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.17.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e39-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e39-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e39-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 492,
+ "subnet": "88.92.17.128/26",
+ "ddns-qualifying-suffix": "net-e39-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.17.130 - 88.92.17.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.17.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e39-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e39-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e39-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 494,
+ "subnet": "88.92.17.192/26",
+ "ddns-qualifying-suffix": "net-e41-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.17.194 - 88.92.17.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.17.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e41-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e41-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e41-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 496,
+ "subnet": "88.92.18.0/26",
+ "ddns-qualifying-suffix": "net-e41-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.18.2 - 88.92.18.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.18.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e41-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e41-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e41-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 498,
+ "subnet": "88.92.18.64/26",
+ "ddns-qualifying-suffix": "net-e41-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.18.66 - 88.92.18.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.18.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e41-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e41-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e41-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 500,
+ "subnet": "88.92.18.128/26",
+ "ddns-qualifying-suffix": "net-e41-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.18.130 - 88.92.18.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.18.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e41-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e41-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e41-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 502,
+ "subnet": "88.92.18.192/26",
+ "ddns-qualifying-suffix": "net-e43-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.18.194 - 88.92.18.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.18.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e43-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e43-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e43-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 504,
+ "subnet": "88.92.19.0/26",
+ "ddns-qualifying-suffix": "net-e43-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.19.2 - 88.92.19.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.19.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e43-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e43-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e43-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 506,
+ "subnet": "88.92.19.64/26",
+ "ddns-qualifying-suffix": "net-e43-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.19.66 - 88.92.19.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.19.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e43-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e43-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e43-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 508,
+ "subnet": "88.92.19.128/26",
+ "ddns-qualifying-suffix": "net-e43-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.19.130 - 88.92.19.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.19.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e43-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e43-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e43-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 510,
+ "subnet": "88.92.19.192/26",
+ "ddns-qualifying-suffix": "net-e45-1.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.19.194 - 88.92.19.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.19.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e45-1.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e45-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e45-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 512,
+ "subnet": "88.92.20.0/26",
+ "ddns-qualifying-suffix": "net-e45-2.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.20.2 - 88.92.20.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.20.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e45-2.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e45-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e45-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 514,
+ "subnet": "88.92.20.64/26",
+ "ddns-qualifying-suffix": "net-e45-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.20.66 - 88.92.20.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.20.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e45-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e45-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e45-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 516,
+ "subnet": "88.92.20.128/26",
+ "ddns-qualifying-suffix": "net-e45-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.20.130 - 88.92.20.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.20.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e45-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e45-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e45-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 518,
+ "subnet": "88.92.20.192/26",
+ "ddns-qualifying-suffix": "net-e47-3.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.20.194 - 88.92.20.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.20.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e47-3.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e47-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e47-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 520,
+ "subnet": "88.92.21.0/26",
+ "ddns-qualifying-suffix": "net-e47-4.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "88.92.21.2 - 88.92.21.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "88.92.21.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e47-4.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e47-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e47-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 145,
+ "subnet": "185.110.148.192/26",
+ "ddns-qualifying-suffix": "net-e1.noc.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "185.110.148.194 - 185.110.148.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "185.110.148.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.noc.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.noc.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.noc",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 161,
+ "subnet": "151.216.160.0/26",
+ "ddns-qualifying-suffix": "net-e1.log.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.160.2 - 151.216.160.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.160.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.log.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.log.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.log",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 165,
+ "subnet": "151.216.160.64/26",
+ "ddns-qualifying-suffix": "net-e2.log.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.160.66 - 151.216.160.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.160.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.log.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.log.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.log",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 170,
+ "subnet": "151.216.160.128/26",
+ "ddns-qualifying-suffix": "net-e1.stand.tg23.gathering.org",
+ "ddns-replace-client-name": "when-not-present",
+ "pools": [
+ {
+ "pool": "151.216.160.130 - 151.216.160.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.160.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.stand.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.stand.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.stand",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 172,
+ "subnet": "151.216.160.192/26",
+ "ddns-qualifying-suffix": "net-e1.roof.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.160.194 - 151.216.160.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.160.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.roof.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.roof.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.roof",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 174,
+ "subnet": "151.216.161.0/26",
+ "ddns-qualifying-suffix": "net-e2.roof.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.161.2 - 151.216.161.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.161.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.roof.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.roof.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.roof",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 176,
+ "subnet": "151.216.161.64/26",
+ "ddns-qualifying-suffix": "net-e1.presse.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.161.66 - 151.216.161.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.161.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.presse.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.presse.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.presse",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 178,
+ "subnet": "151.216.161.128/26",
+ "ddns-qualifying-suffix": "net-e1.bird.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.161.130 - 151.216.161.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.161.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.bird.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.bird.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.bird",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 180,
+ "subnet": "151.216.161.192/26",
+ "ddns-qualifying-suffix": "net-e2.bird.tg23.gathering.org",
+ "ddns-replace-client-name": "when-not-present",
+ "pools": [
+ {
+ "pool": "151.216.161.194 - 151.216.161.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.161.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.bird.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.bird.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.bird",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 526,
+ "subnet": "151.216.162.0/26",
+ "ddns-qualifying-suffix": "net-e1.creative.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.162.2 - 151.216.162.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.162.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.creative.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.creative.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.creative",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 530,
+ "subnet": "151.216.162.64/26",
+ "ddns-qualifying-suffix": "net-e1.resepsjon.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.162.66 - 151.216.162.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.162.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.resepsjon.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.resepsjon.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.resepsjon",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 554,
+ "subnet": "151.216.162.128/26",
+ "ddns-qualifying-suffix": "net-e1.redet.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.162.130 - 151.216.162.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.162.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.redet.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.redet.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.redet",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 544,
+ "subnet": "151.216.162.192/26",
+ "ddns-qualifying-suffix": "net-e2.presse.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.162.194 - 151.216.162.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.162.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.presse.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.presse.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.presse",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 556,
+ "subnet": "151.216.163.0/26",
+ "ddns-qualifying-suffix": "net-e1.sec.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.163.2 - 151.216.163.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.163.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.sec.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.sec.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.sec",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 569,
+ "subnet": "151.216.163.64/26",
+ "ddns-qualifying-suffix": "net-e2.crew.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.163.66 - 151.216.163.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.163.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.crew.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.crew.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.crew",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 573,
+ "subnet": "151.216.163.128/26",
+ "ddns-qualifying-suffix": "net-e3.crew.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.163.130 - 151.216.163.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.163.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e3.crew.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e3.crew.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3.crew",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 575,
+ "subnet": "151.216.163.192/26",
+ "ddns-qualifying-suffix": "net-e1.redbull.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.163.194 - 151.216.163.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.163.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.redbull.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.redbull.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.redbull",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 577,
+ "subnet": "151.216.164.0/26",
+ "ddns-qualifying-suffix": "net-e4.crew.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.164.2 - 151.216.164.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.164.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e4.crew.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e4.crew.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e4.crew",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 581,
+ "subnet": "151.216.164.64/26",
+ "ddns-qualifying-suffix": "net-e2.creative.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.164.66 - 151.216.164.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.164.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.creative.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.creative.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.creative",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 583,
+ "subnet": "151.216.164.128/26",
+ "ddns-qualifying-suffix": "net-e1.mainstage.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.164.130 - 151.216.164.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.164.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.mainstage.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.mainstage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.mainstage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 585,
+ "subnet": "151.216.164.192/26",
+ "ddns-qualifying-suffix": "net-e1.gamestage.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.164.194 - 151.216.164.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.164.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.gamestage.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.gamestage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.gamestage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 587,
+ "subnet": "151.216.165.0/26",
+ "ddns-qualifying-suffix": "net-e1.foh.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.165.2 - 151.216.165.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.165.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.foh.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.foh.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.foh",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 589,
+ "subnet": "151.216.165.64/26",
+ "ddns-qualifying-suffix": "net-e1.medic.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.165.66 - 151.216.165.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.165.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.medic.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.medic.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.medic",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 591,
+ "subnet": "151.216.165.128/26",
+ "ddns-qualifying-suffix": "net-e3.creative.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.165.130 - 151.216.165.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.165.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e3.creative.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e3.creative.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3.creative",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 593,
+ "subnet": "151.216.165.192/26",
+ "ddns-qualifying-suffix": "net-e1.sponsor.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.165.194 - 151.216.165.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.165.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.sponsor.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.sponsor.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.sponsor",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 595,
+ "subnet": "151.216.166.0/26",
+ "ddns-qualifying-suffix": "net-e2.sponsor.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.166.2 - 151.216.166.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.166.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.sponsor.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.sponsor.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.sponsor",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 601,
+ "subnet": "151.216.166.64/26",
+ "ddns-qualifying-suffix": "net-e2.gamestage.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.166.66 - 151.216.166.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.166.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.gamestage.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.gamestage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.gamestage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 603,
+ "subnet": "151.216.166.128/26",
+ "ddns-qualifying-suffix": "net-e1.vanir.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.166.130 - 151.216.166.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.166.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.vanir.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.vanir.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.vanir",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 606,
+ "subnet": "151.216.166.192/26",
+ "ddns-qualifying-suffix": "net-e2.mainstage.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.166.194 - 151.216.166.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.166.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e2.mainstage.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e2.mainstage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.mainstage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 608,
+ "subnet": "151.216.167.0/26",
+ "ddns-qualifying-suffix": "net-e3.mainstage.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.167.2 - 151.216.167.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.167.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e3.mainstage.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e3.mainstage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3.mainstage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 612,
+ "subnet": "151.216.167.64/26",
+ "ddns-qualifying-suffix": "net-e1.obbuss.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.167.66 - 151.216.167.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.167.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.obbuss.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.obbuss.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.obbuss",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 614,
+ "subnet": "151.216.167.128/26",
+ "ddns-qualifying-suffix": "net-e3.sponsor.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.167.130 - 151.216.167.190"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.167.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e3.sponsor.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e3.sponsor.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3.sponsor",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 616,
+ "subnet": "151.216.167.192/26",
+ "ddns-qualifying-suffix": "net-e1.tele.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.167.194 - 151.216.167.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.167.193"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.tele.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.tele.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.tele",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 622,
+ "subnet": "151.216.168.0/26",
+ "ddns-qualifying-suffix": "net-e1.svenna.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.168.2 - 151.216.168.62"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.168.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e1.svenna.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e1.svenna.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.svenna",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 625,
+ "subnet": "151.216.168.64/26",
+ "ddns-qualifying-suffix": "net-e4.creative.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.168.66 - 151.216.168.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.168.65"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-e4.creative.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-e4.creative.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e4.creative",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 121,
+ "subnet": "151.216.131.128/25",
+ "ddns-qualifying-suffix": "net-wifi-mgmt.floor.r1.tele.tg23.gathering.org",
+ "ddns-replace-client-name": "when-not-present",
+ "pools": [
+ {
+ "pool": "151.216.131.130 - 151.216.131.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.131.129"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-wifi-mgmt.floor.r1.tele.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-wifi-mgmt.floor.r1.tele.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "wifi-mgmt.floor.r1.tele",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 132,
+ "subnet": "151.216.144.0/20",
+ "ddns-qualifying-suffix": "net-wifi-lol.tg23.gathering.org",
+ "ddns-replace-client-name": "always",
+ "pools": [
+ {
+ "pool": "151.216.144.2 - 151.216.159.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.144.1"
+ },
+ {
+ "name": "domain-name",
+ "data": "net-wifi-lol.tg23.gathering.org, tg23.gathering.org"
+ },
+ {
+ "name": "domain-search",
+ "data": "net-wifi-lol.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "wifi-lol",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 7,
+ "client-class": "fap-class",
+ "subnet": "151.216.130.0/24",
+ "pools": [
+ {
+ "pool": "151.216.130.206 - 151.216.130.254"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.130.1"
+ }
+ ],
+ "user-context": {
+ "name": "edge-mgmt.floor.r1.tele",
+ "type": "fap"
+ }
+ },
+ {
+ "id": 108,
+ "client-class": "fap-class",
+ "subnet": "151.216.131.0/25",
+ "pools": [
+ {
+ "pool": "151.216.131.78 - 151.216.131.126"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "routers",
+ "data": "151.216.131.1"
+ }
+ ],
+ "user-context": {
+ "name": "edge-mgmt.ring.r1.tele",
+ "type": "fap"
+ }
+ }
+ ],
+ "loggers": [
+ {
+ "name": "kea-dhcp4",
+ "output_options": [
+ {
+ "output": "/var/log/kea/dhcp4-debug.log",
+ "maxver": 8,
+ "maxsize": 204800,
+ "flush": true,
+ "pattern": "%d{%j %H:%M:%S.%q} %c %m\n"
+ }
+ ],
+ "severity": "DEBUG",
+ "debuglevel": 40
+ }
+ ]
+ }
+} \ No newline at end of file
diff --git a/examples/tg23/dhcp/kea-dhcp6.conf b/examples/tg23/dhcp/kea-dhcp6.conf
new file mode 100644
index 0000000..4675a89
--- /dev/null
+++ b/examples/tg23/dhcp/kea-dhcp6.conf
@@ -0,0 +1,2572 @@
+{
+ "Dhcp6": {
+ "hooks-libraries": [
+ {
+ "library": "/usr/lib/x86_64-linux-gnu/kea/hooks/libdhcp_run_script.so",
+ "parameters": {
+ "name": "/etc/kea/gondul.sh",
+ "sync": false
+ }
+ }
+ ],
+ "interfaces-config": {
+ "interfaces": [
+ "eth0/2a06:5841:f:d::98"
+ ]
+ },
+ "control-socket": {
+ "socket-type": "unix",
+ "socket-name": "/tmp/kea6-ctrl-socket"
+ },
+ "lease-database": {
+ "type": "postgresql",
+ "name": "kea",
+ "user": "kea",
+ "password": "<removed>"
+ },
+ "expired-leases-processing": {
+ "reclaim-timer-wait-time": 10,
+ "flush-reclaimed-timer-wait-time": 25,
+ "hold-reclaimed-time": 3600,
+ "max-reclaim-leases": 100,
+ "max-reclaim-time": 250,
+ "unwarned-reclaim-cycles": 5
+ },
+ "renew-timer": 900,
+ "rebind-timer": 1800,
+ "preferred-lifetime": 3000,
+ "valid-lifetime": 3600,
+ "option-data": [
+ {
+ "name": "dns-servers",
+ "data": "2a06:5841:f:d::101, 2a06:5841:f:e::132"
+ },
+ {
+ "name": "domain-search",
+ "data": "tg23.gathering.org"
+ },
+ {
+ "name": "unicast",
+ "data": "2a06:5841:f:d::98"
+ }
+ ],
+ "subnet6": [
+ {
+ "id": 539,
+ "subnet": "2a06:5844:e:100::/64",
+ "ddns-qualifying-suffix": "net-e1.crew.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:100::10-2a06:5844:e:100::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.crew.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.crew",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 599,
+ "subnet": "2a06:5844:e:101::/64",
+ "ddns-qualifying-suffix": "net-e1.infodesk.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:101::10-2a06:5844:e:101::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.infodesk.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.infodesk",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 600,
+ "subnet": "2a06:5844:e:102::/64",
+ "ddns-qualifying-suffix": "net-e1.gamedesk.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:102::10-2a06:5844:e:102::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.gamedesk.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.gamedesk",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 353,
+ "subnet": "2a06:5844:e:151::/64",
+ "ddns-qualifying-suffix": "net-e1-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:151::10-2a06:5844:e:151::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 355,
+ "subnet": "2a06:5844:e:152::/64",
+ "ddns-qualifying-suffix": "net-e1-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:152::10-2a06:5844:e:152::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 357,
+ "subnet": "2a06:5844:e:153::/64",
+ "ddns-qualifying-suffix": "net-e1-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:153::10-2a06:5844:e:153::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 359,
+ "subnet": "2a06:5844:e:154::/64",
+ "ddns-qualifying-suffix": "net-e1-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:154::10-2a06:5844:e:154::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 361,
+ "subnet": "2a06:5844:e:171::/64",
+ "ddns-qualifying-suffix": "net-e3-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:171::10-2a06:5844:e:171::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e3-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 363,
+ "subnet": "2a06:5844:e:172::/64",
+ "ddns-qualifying-suffix": "net-e3-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:172::10-2a06:5844:e:172::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e3-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 365,
+ "subnet": "2a06:5844:e:173::/64",
+ "ddns-qualifying-suffix": "net-e3-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:173::10-2a06:5844:e:173::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e3-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 367,
+ "subnet": "2a06:5844:e:174::/64",
+ "ddns-qualifying-suffix": "net-e3-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:174::10-2a06:5844:e:174::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e3-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 369,
+ "subnet": "2a06:5844:e:191::/64",
+ "ddns-qualifying-suffix": "net-e5-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:191::10-2a06:5844:e:191::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e5-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e5-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 371,
+ "subnet": "2a06:5844:e:192::/64",
+ "ddns-qualifying-suffix": "net-e5-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:192::10-2a06:5844:e:192::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e5-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e5-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 373,
+ "subnet": "2a06:5844:e:193::/64",
+ "ddns-qualifying-suffix": "net-e5-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:193::10-2a06:5844:e:193::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e5-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e5-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 375,
+ "subnet": "2a06:5844:e:194::/64",
+ "ddns-qualifying-suffix": "net-e5-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:194::10-2a06:5844:e:194::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e5-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e5-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 377,
+ "subnet": "2a06:5844:e:211::/64",
+ "ddns-qualifying-suffix": "net-e7-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:211::10-2a06:5844:e:211::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e7-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e7-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 379,
+ "subnet": "2a06:5844:e:212::/64",
+ "ddns-qualifying-suffix": "net-e7-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:212::10-2a06:5844:e:212::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e7-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e7-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 381,
+ "subnet": "2a06:5844:e:213::/64",
+ "ddns-qualifying-suffix": "net-e7-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:213::10-2a06:5844:e:213::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e7-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e7-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 383,
+ "subnet": "2a06:5844:e:214::/64",
+ "ddns-qualifying-suffix": "net-e7-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:214::10-2a06:5844:e:214::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e7-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e7-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 385,
+ "subnet": "2a06:5844:e:231::/64",
+ "ddns-qualifying-suffix": "net-e9-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:231::10-2a06:5844:e:231::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e9-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e9-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 387,
+ "subnet": "2a06:5844:e:232::/64",
+ "ddns-qualifying-suffix": "net-e9-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:232::10-2a06:5844:e:232::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e9-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e9-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 389,
+ "subnet": "2a06:5844:e:233::/64",
+ "ddns-qualifying-suffix": "net-e9-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:233::10-2a06:5844:e:233::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e9-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e9-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 391,
+ "subnet": "2a06:5844:e:234::/64",
+ "ddns-qualifying-suffix": "net-e9-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:234::10-2a06:5844:e:234::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e9-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e9-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 393,
+ "subnet": "2a06:5844:e:351::/64",
+ "ddns-qualifying-suffix": "net-e11-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:351::10-2a06:5844:e:351::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e11-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e11-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 395,
+ "subnet": "2a06:5844:e:371::/64",
+ "ddns-qualifying-suffix": "net-e13-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:371::10-2a06:5844:e:371::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e13-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e13-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 397,
+ "subnet": "2a06:5844:e:391::/64",
+ "ddns-qualifying-suffix": "net-e15-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:391::10-2a06:5844:e:391::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e15-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e15-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 399,
+ "subnet": "2a06:5844:e:411::/64",
+ "ddns-qualifying-suffix": "net-e17-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:411::10-2a06:5844:e:411::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e17-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e17-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 401,
+ "subnet": "2a06:5844:e:412::/64",
+ "ddns-qualifying-suffix": "net-e17-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:412::10-2a06:5844:e:412::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e17-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e17-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 403,
+ "subnet": "2a06:5844:e:413::/64",
+ "ddns-qualifying-suffix": "net-e17-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:413::10-2a06:5844:e:413::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e17-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e17-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 405,
+ "subnet": "2a06:5844:e:414::/64",
+ "ddns-qualifying-suffix": "net-e17-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:414::10-2a06:5844:e:414::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e17-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e17-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 407,
+ "subnet": "2a06:5844:e:431::/64",
+ "ddns-qualifying-suffix": "net-e19-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:431::10-2a06:5844:e:431::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e19-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e19-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 409,
+ "subnet": "2a06:5844:e:432::/64",
+ "ddns-qualifying-suffix": "net-e19-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:432::10-2a06:5844:e:432::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e19-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e19-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 411,
+ "subnet": "2a06:5844:e:433::/64",
+ "ddns-qualifying-suffix": "net-e19-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:433::10-2a06:5844:e:433::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e19-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e19-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 413,
+ "subnet": "2a06:5844:e:434::/64",
+ "ddns-qualifying-suffix": "net-e19-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:434::10-2a06:5844:e:434::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e19-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e19-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 415,
+ "subnet": "2a06:5844:e:451::/64",
+ "ddns-qualifying-suffix": "net-e21-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:451::10-2a06:5844:e:451::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e21-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e21-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 417,
+ "subnet": "2a06:5844:e:452::/64",
+ "ddns-qualifying-suffix": "net-e21-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:452::10-2a06:5844:e:452::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e21-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e21-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 419,
+ "subnet": "2a06:5844:e:453::/64",
+ "ddns-qualifying-suffix": "net-e21-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:453::10-2a06:5844:e:453::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e21-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e21-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 421,
+ "subnet": "2a06:5844:e:454::/64",
+ "ddns-qualifying-suffix": "net-e21-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:454::10-2a06:5844:e:454::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e21-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e21-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 423,
+ "subnet": "2a06:5844:e:471::/64",
+ "ddns-qualifying-suffix": "net-e23-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:471::10-2a06:5844:e:471::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e23-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e23-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 425,
+ "subnet": "2a06:5844:e:472::/64",
+ "ddns-qualifying-suffix": "net-e23-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:472::10-2a06:5844:e:472::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e23-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e23-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 427,
+ "subnet": "2a06:5844:e:473::/64",
+ "ddns-qualifying-suffix": "net-e23-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:473::10-2a06:5844:e:473::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e23-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e23-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 429,
+ "subnet": "2a06:5844:e:474::/64",
+ "ddns-qualifying-suffix": "net-e23-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:474::10-2a06:5844:e:474::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e23-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e23-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 431,
+ "subnet": "2a06:5844:e:491::/64",
+ "ddns-qualifying-suffix": "net-e25-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:491::10-2a06:5844:e:491::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e25-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e25-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 433,
+ "subnet": "2a06:5844:e:492::/64",
+ "ddns-qualifying-suffix": "net-e25-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:492::10-2a06:5844:e:492::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e25-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e25-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 435,
+ "subnet": "2a06:5844:e:493::/64",
+ "ddns-qualifying-suffix": "net-e25-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:493::10-2a06:5844:e:493::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e25-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e25-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 437,
+ "subnet": "2a06:5844:e:494::/64",
+ "ddns-qualifying-suffix": "net-e25-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:494::10-2a06:5844:e:494::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e25-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e25-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 439,
+ "subnet": "2a06:5844:e:511::/64",
+ "ddns-qualifying-suffix": "net-e27-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:511::10-2a06:5844:e:511::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e27-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e27-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 441,
+ "subnet": "2a06:5844:e:512::/64",
+ "ddns-qualifying-suffix": "net-e27-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:512::10-2a06:5844:e:512::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e27-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e27-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 443,
+ "subnet": "2a06:5844:e:513::/64",
+ "ddns-qualifying-suffix": "net-e27-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:513::10-2a06:5844:e:513::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e27-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e27-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 445,
+ "subnet": "2a06:5844:e:514::/64",
+ "ddns-qualifying-suffix": "net-e27-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:514::10-2a06:5844:e:514::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e27-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e27-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 447,
+ "subnet": "2a06:5844:e:531::/64",
+ "ddns-qualifying-suffix": "net-e29-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:531::10-2a06:5844:e:531::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e29-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e29-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 449,
+ "subnet": "2a06:5844:e:532::/64",
+ "ddns-qualifying-suffix": "net-e29-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:532::10-2a06:5844:e:532::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e29-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e29-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 451,
+ "subnet": "2a06:5844:e:533::/64",
+ "ddns-qualifying-suffix": "net-e29-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:533::10-2a06:5844:e:533::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e29-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e29-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 453,
+ "subnet": "2a06:5844:e:534::/64",
+ "ddns-qualifying-suffix": "net-e29-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:534::10-2a06:5844:e:534::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e29-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e29-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 455,
+ "subnet": "2a06:5844:e:551::/64",
+ "ddns-qualifying-suffix": "net-e31-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:551::10-2a06:5844:e:551::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e31-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e31-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 457,
+ "subnet": "2a06:5844:e:552::/64",
+ "ddns-qualifying-suffix": "net-e31-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:552::10-2a06:5844:e:552::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e31-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e31-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 459,
+ "subnet": "2a06:5844:e:553::/64",
+ "ddns-qualifying-suffix": "net-e31-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:553::10-2a06:5844:e:553::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e31-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e31-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 461,
+ "subnet": "2a06:5844:e:554::/64",
+ "ddns-qualifying-suffix": "net-e31-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:554::10-2a06:5844:e:554::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e31-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e31-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 463,
+ "subnet": "2a06:5844:e:591::/64",
+ "ddns-qualifying-suffix": "net-e33-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:591::10-2a06:5844:e:591::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e33-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e33-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 465,
+ "subnet": "2a06:5844:e:592::/64",
+ "ddns-qualifying-suffix": "net-e33-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:592::10-2a06:5844:e:592::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e33-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e33-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 467,
+ "subnet": "2a06:5844:e:593::/64",
+ "ddns-qualifying-suffix": "net-e33-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:593::10-2a06:5844:e:593::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e33-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e33-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 469,
+ "subnet": "2a06:5844:e:594::/64",
+ "ddns-qualifying-suffix": "net-e33-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:594::10-2a06:5844:e:594::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e33-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e33-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 471,
+ "subnet": "2a06:5844:e:611::/64",
+ "ddns-qualifying-suffix": "net-e35-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:611::10-2a06:5844:e:611::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e35-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e35-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 473,
+ "subnet": "2a06:5844:e:612::/64",
+ "ddns-qualifying-suffix": "net-e35-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:612::10-2a06:5844:e:612::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e35-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e35-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 475,
+ "subnet": "2a06:5844:e:613::/64",
+ "ddns-qualifying-suffix": "net-e35-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:613::10-2a06:5844:e:613::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e35-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e35-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 477,
+ "subnet": "2a06:5844:e:614::/64",
+ "ddns-qualifying-suffix": "net-e35-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:614::10-2a06:5844:e:614::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e35-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e35-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 479,
+ "subnet": "2a06:5844:e:631::/64",
+ "ddns-qualifying-suffix": "net-e37-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:631::10-2a06:5844:e:631::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e37-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e37-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 481,
+ "subnet": "2a06:5844:e:632::/64",
+ "ddns-qualifying-suffix": "net-e37-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:632::10-2a06:5844:e:632::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e37-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e37-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 483,
+ "subnet": "2a06:5844:e:633::/64",
+ "ddns-qualifying-suffix": "net-e37-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:633::10-2a06:5844:e:633::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e37-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e37-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 485,
+ "subnet": "2a06:5844:e:634::/64",
+ "ddns-qualifying-suffix": "net-e37-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:634::10-2a06:5844:e:634::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e37-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e37-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 487,
+ "subnet": "2a06:5844:e:651::/64",
+ "ddns-qualifying-suffix": "net-e39-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:651::10-2a06:5844:e:651::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e39-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e39-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 489,
+ "subnet": "2a06:5844:e:652::/64",
+ "ddns-qualifying-suffix": "net-e39-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:652::10-2a06:5844:e:652::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e39-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e39-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 491,
+ "subnet": "2a06:5844:e:653::/64",
+ "ddns-qualifying-suffix": "net-e39-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:653::10-2a06:5844:e:653::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e39-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e39-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 493,
+ "subnet": "2a06:5844:e:654::/64",
+ "ddns-qualifying-suffix": "net-e39-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:654::10-2a06:5844:e:654::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e39-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e39-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 495,
+ "subnet": "2a06:5844:e:671::/64",
+ "ddns-qualifying-suffix": "net-e41-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:671::10-2a06:5844:e:671::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e41-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e41-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 497,
+ "subnet": "2a06:5844:e:672::/64",
+ "ddns-qualifying-suffix": "net-e41-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:672::10-2a06:5844:e:672::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e41-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e41-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 499,
+ "subnet": "2a06:5844:e:673::/64",
+ "ddns-qualifying-suffix": "net-e41-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:673::10-2a06:5844:e:673::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e41-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e41-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 501,
+ "subnet": "2a06:5844:e:674::/64",
+ "ddns-qualifying-suffix": "net-e41-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:674::10-2a06:5844:e:674::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e41-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e41-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 503,
+ "subnet": "2a06:5844:e:691::/64",
+ "ddns-qualifying-suffix": "net-e43-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:691::10-2a06:5844:e:691::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e43-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e43-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 505,
+ "subnet": "2a06:5844:e:692::/64",
+ "ddns-qualifying-suffix": "net-e43-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:692::10-2a06:5844:e:692::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e43-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e43-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 507,
+ "subnet": "2a06:5844:e:693::/64",
+ "ddns-qualifying-suffix": "net-e43-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:693::10-2a06:5844:e:693::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e43-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e43-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 509,
+ "subnet": "2a06:5844:e:694::/64",
+ "ddns-qualifying-suffix": "net-e43-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:694::10-2a06:5844:e:694::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e43-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e43-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 511,
+ "subnet": "2a06:5844:e:711::/64",
+ "ddns-qualifying-suffix": "net-e45-1.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:711::10-2a06:5844:e:711::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e45-1.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e45-1",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 513,
+ "subnet": "2a06:5844:e:712::/64",
+ "ddns-qualifying-suffix": "net-e45-2.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:712::10-2a06:5844:e:712::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e45-2.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e45-2",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 515,
+ "subnet": "2a06:5844:e:713::/64",
+ "ddns-qualifying-suffix": "net-e45-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:713::10-2a06:5844:e:713::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e45-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e45-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 517,
+ "subnet": "2a06:5844:e:714::/64",
+ "ddns-qualifying-suffix": "net-e45-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:714::10-2a06:5844:e:714::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e45-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e45-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 519,
+ "subnet": "2a06:5844:e:733::/64",
+ "ddns-qualifying-suffix": "net-e47-3.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:733::10-2a06:5844:e:733::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e47-3.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e47-3",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 521,
+ "subnet": "2a06:5844:e:734::/64",
+ "ddns-qualifying-suffix": "net-e47-4.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5844:e:734::10-2a06:5844:e:734::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e47-4.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e47-4",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 150,
+ "subnet": "2a06:5841:f:1337::/64",
+ "ddns-qualifying-suffix": "net-e1.noc.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:f:1337::10-2a06:5841:f:1337::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.noc.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.noc",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 162,
+ "subnet": "2a06:5841:e:2000::/64",
+ "ddns-qualifying-suffix": "net-e1.log.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2000::10-2a06:5841:e:2000::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.log.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.log",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 166,
+ "subnet": "2a06:5841:e:2001::/64",
+ "ddns-qualifying-suffix": "net-e2.log.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2001::10-2a06:5841:e:2001::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.log.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.log",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 171,
+ "subnet": "2a06:5841:e:2002::/64",
+ "ddns-qualifying-suffix": "net-e1.stand.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2002::10-2a06:5841:e:2002::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.stand.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.stand",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 173,
+ "subnet": "2a06:5841:e:2003::/64",
+ "ddns-qualifying-suffix": "net-e1.roof.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2003::10-2a06:5841:e:2003::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.roof.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.roof",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 175,
+ "subnet": "2a06:5841:e:2004::/64",
+ "ddns-qualifying-suffix": "net-e2.roof.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2004::10-2a06:5841:e:2004::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.roof.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.roof",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 177,
+ "subnet": "2a06:5841:e:2005::/64",
+ "ddns-qualifying-suffix": "net-e1.presse.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2005::10-2a06:5841:e:2005::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.presse.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.presse",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 179,
+ "subnet": "2a06:5841:e:2006::/64",
+ "ddns-qualifying-suffix": "net-e1.bird.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2006::10-2a06:5841:e:2006::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.bird.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.bird",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 181,
+ "subnet": "2a06:5841:e:2007::/64",
+ "ddns-qualifying-suffix": "net-e2.bird.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2007::10-2a06:5841:e:2007::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.bird.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.bird",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 527,
+ "subnet": "2a06:5841:e:2008::/64",
+ "ddns-qualifying-suffix": "net-e1.creative.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2008::10-2a06:5841:e:2008::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.creative.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.creative",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 531,
+ "subnet": "2a06:5841:e:2009::/64",
+ "ddns-qualifying-suffix": "net-e1.resepsjon.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2009::10-2a06:5841:e:2009::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.resepsjon.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.resepsjon",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 555,
+ "subnet": "2a06:5841:e:200a::/64",
+ "ddns-qualifying-suffix": "net-e1.redet.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:200a::10-2a06:5841:e:200a::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.redet.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.redet",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 545,
+ "subnet": "2a06:5841:e:200b::/64",
+ "ddns-qualifying-suffix": "net-e2.presse.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:200b::10-2a06:5841:e:200b::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.presse.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.presse",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 557,
+ "subnet": "2a06:5841:e:200c::/64",
+ "ddns-qualifying-suffix": "net-e1.sec.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:200c::10-2a06:5841:e:200c::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.sec.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.sec",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 570,
+ "subnet": "2a06:5841:e:200d::/64",
+ "ddns-qualifying-suffix": "net-e2.crew.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:200d::10-2a06:5841:e:200d::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.crew.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.crew",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 574,
+ "subnet": "2a06:5841:e:200e::/64",
+ "ddns-qualifying-suffix": "net-e3.crew.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:200e::10-2a06:5841:e:200e::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e3.crew.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3.crew",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 576,
+ "subnet": "2a06:5841:e:200f::/64",
+ "ddns-qualifying-suffix": "net-e1.redbull.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:200f::10-2a06:5841:e:200f::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.redbull.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.redbull",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 578,
+ "subnet": "2a06:5841:e:2010::/64",
+ "ddns-qualifying-suffix": "net-e4.crew.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2010::10-2a06:5841:e:2010::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e4.crew.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e4.crew",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 582,
+ "subnet": "2a06:5841:e:2011::/64",
+ "ddns-qualifying-suffix": "net-e2.creative.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2011::10-2a06:5841:e:2011::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.creative.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.creative",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 584,
+ "subnet": "2a06:5841:e:2012::/64",
+ "ddns-qualifying-suffix": "net-e1.mainstage.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2012::10-2a06:5841:e:2012::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.mainstage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.mainstage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 586,
+ "subnet": "2a06:5841:e:2013::/64",
+ "ddns-qualifying-suffix": "net-e1.gamestage.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2013::10-2a06:5841:e:2013::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.gamestage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.gamestage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 588,
+ "subnet": "2a06:5841:e:2014::/64",
+ "ddns-qualifying-suffix": "net-e1.foh.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2014::10-2a06:5841:e:2014::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.foh.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.foh",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 590,
+ "subnet": "2a06:5841:e:2015::/64",
+ "ddns-qualifying-suffix": "net-e1.medic.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2015::10-2a06:5841:e:2015::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.medic.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.medic",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 592,
+ "subnet": "2a06:5841:e:2016::/64",
+ "ddns-qualifying-suffix": "net-e3.creative.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2016::10-2a06:5841:e:2016::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e3.creative.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3.creative",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 594,
+ "subnet": "2a06:5841:e:2017::/64",
+ "ddns-qualifying-suffix": "net-e1.sponsor.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2017::10-2a06:5841:e:2017::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.sponsor.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.sponsor",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 596,
+ "subnet": "2a06:5841:e:2018::/64",
+ "ddns-qualifying-suffix": "net-e2.sponsor.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2018::10-2a06:5841:e:2018::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.sponsor.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.sponsor",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 602,
+ "subnet": "2a06:5841:e:2019::/64",
+ "ddns-qualifying-suffix": "net-e2.gamestage.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2019::10-2a06:5841:e:2019::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.gamestage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.gamestage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 604,
+ "subnet": "2a06:5841:e:201a::/64",
+ "ddns-qualifying-suffix": "net-e1.vanir.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:201a::10-2a06:5841:e:201a::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.vanir.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.vanir",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 607,
+ "subnet": "2a06:5841:e:201b::/64",
+ "ddns-qualifying-suffix": "net-e2.mainstage.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:201b::10-2a06:5841:e:201b::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e2.mainstage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e2.mainstage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 609,
+ "subnet": "2a06:5841:e:201c::/64",
+ "ddns-qualifying-suffix": "net-e3.mainstage.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:201c::10-2a06:5841:e:201c::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e3.mainstage.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3.mainstage",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 613,
+ "subnet": "2a06:5841:e:201d::/64",
+ "ddns-qualifying-suffix": "net-e1.obbuss.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:201d::10-2a06:5841:e:201d::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.obbuss.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.obbuss",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 615,
+ "subnet": "2a06:5841:e:201e::/64",
+ "ddns-qualifying-suffix": "net-e3.sponsor.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:201e::10-2a06:5841:e:201e::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e3.sponsor.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e3.sponsor",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 617,
+ "subnet": "2a06:5841:e:201f::/64",
+ "ddns-qualifying-suffix": "net-e1.tele.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:201f::10-2a06:5841:e:201f::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.tele.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.tele",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 623,
+ "subnet": "2a06:5841:e:2020::/64",
+ "ddns-qualifying-suffix": "net-e1.svenna.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2020::10-2a06:5841:e:2020::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e1.svenna.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e1.svenna",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 626,
+ "subnet": "2a06:5841:e:2021::/64",
+ "ddns-qualifying-suffix": "net-e4.creative.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:e:2021::10-2a06:5841:e:2021::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-e4.creative.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "e4.creative",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 130,
+ "subnet": "2a06:5841:f:12::/64",
+ "ddns-qualifying-suffix": "net-wifi-mgmt.floor.r1.tele.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:f:12::10-2a06:5841:f:12::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-wifi-mgmt.floor.r1.tele.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "wifi-mgmt.floor.r1.tele",
+ "type": "clients"
+ }
+ },
+ {
+ "id": 136,
+ "subnet": "2a06:5841:6e::/48",
+ "ddns-qualifying-suffix": "net-wifi-lol.tg23.gathering.org",
+ "pools": [
+ {
+ "pool": "2a06:5841:6e::10-2a06:5841:6e::ffff"
+ }
+ ],
+ "option-data": [
+ {
+ "name": "domain-search",
+ "data": "net-wifi-lol.tg23.gathering.org, tg23.gathering.org"
+ }
+ ],
+ "user-context": {
+ "name": "wifi-lol",
+ "type": "clients"
+ }
+ }
+ ],
+ "loggers": [
+ {
+ "name": "kea-dhcp6",
+ "output_options": [
+ {
+ "output": "/var/log/kea/dhcp6-debug.log",
+ "maxver": 8,
+ "maxsize": 204800,
+ "flush": true,
+ "pattern": "%d{%j %H:%M:%S.%q} %c %m\n"
+ }
+ ],
+ "severity": "DEBUG",
+ "debuglevel": 40
+ }
+ ]
+ }
+} \ No newline at end of file