From b0eb5b79a4e308827aee1534384607265429af61 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 20 Sep 2017 22:55:50 +0100 Subject: [PATCH] hosts.lisp, distorted.lisp: Allocate an IPv6 range for DHCP. Organization: Straylight/Edgeware From: Mark Wooding The magic 32-bit hex string spells out `dhcp' in ASCII. --- distorted.lisp | 12 ++++++++++++ hosts.lisp | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/distorted.lisp b/distorted.lisp index 6150d58..d71124a 100644 --- a/distorted.lisp +++ b/distorted.lisp @@ -445,8 +445,20 @@ (defrevzone (distorted.org.uk-aaisp :family :ipv6) telecaster.distorted.org.uk. national.distorted.org.uk. secondary-dns.co.uk.) + (0.7.3.6.8.6.4.6.1.0.0.0 :ns (radius.distorted.org.uk. + vampire.distorted.org.uk. + precision.distorted.org.uk. + telecaster.distorted.org.uk. + national.distorted.org.uk.)) :reverse ((((:ipv6 distorted.org.uk-aaisp))))) +(defrevzone (dhcp :family :ipv6) + :ns (radius.distorted.org.uk. + vampire.distorted.org.uk. + precision.distorted.org.uk. + telecaster.distorted.org.uk. + national.distorted.org.uk.)) + (defrevzone distorted.org.uk-jump :ns (radius.distorted.org.uk. vampire.distorted.org.uk. diff --git a/hosts.lisp b/hosts.lisp index 9cd6a73..25e151e 100644 --- a/hosts.lisp +++ b/hosts.lisp @@ -40,7 +40,8 @@ (defnet distorted.org.uk "172.29.198/23" (defnet gw "81.2.113.195") (defnet dmz "81.187.238.128/28") (defnet distorted.org.uk-aaisp "2001:8b0:c92/48" - (unsafe "1/64") + (unsafe "1/64" + (dhcp "6468:6370/96")) (dmz "fff/64") (safe "4001/64") (untrusted "8001/64")) -- [mdw]