From 827f2f1e9ebbaae1134a045abac8ea127614cb9f Mon Sep 17 00:00:00 2001 Message-Id: <827f2f1e9ebbaae1134a045abac8ea127614cb9f.1715623459.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 7 Apr 2013 15:01:26 +0100 Subject: [PATCH] binswood.lisp, hosts.lisp: Move network definition to specific file. Organization: Straylight/Edgeware From: Mark Wooding --- binswood.lisp | 8 ++++++++ hosts.lisp | 11 ----------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/binswood.lisp b/binswood.lisp index 767e178..63af060 100644 --- a/binswood.lisp +++ b/binswood.lisp @@ -4,6 +4,14 @@ (load "hosts.lisp" :verbose nil) (setf *default-zone-admin* "hostmaster@distorted.org.uk") (setf *default-zone-source* 'radius.distorted.org.uk.) +;; Binswood. Address range retroactively claimed from Cambridge G-RIN. +(defnet binswood.org.uk 10.165.27.0/24 + (binswood 256)) +(defhost netgear.binswood (binswood 1)) +(defhost linksys.binswood (binswood 2)) +(defhost mango.binswood (binswood 3)) +(defhost hplaser.binswood (binswood 4)) + (defzone binswood.org.uk ;; Nameservers diff --git a/hosts.lisp b/hosts.lisp index d4805f7..67b207c 100644 --- a/hosts.lisp +++ b/hosts.lisp @@ -107,17 +107,6 @@ (defhost www-cache.any (any 4)) (defhost krb0.any (any 5)) (defhost krb1.any (any 6)) -;;;-------------------------------------------------------------------------- -;;; Satellite networks. - -;; Binswood. Address range retroactively claimed from Cambridge G-RIN. -(defnet binswood.org.uk 10.165.27.0/24 - (binswood 256)) -(defhost netgear.binswood (binswood 1)) -(defhost linksys.binswood (binswood 2)) -(defhost mango.binswood (binswood 3)) -(defhost hplaser.binswood (binswood 4)) - ;;;-------------------------------------------------------------------------- ;;; Host switch. -- [mdw]