From 4b5e05ad55cb9dd0188d0137ff6b3ddcf82b5a73 Mon Sep 17 00:00:00 2001 Message-Id: <4b5e05ad55cb9dd0188d0137ff6b3ddcf82b5a73.1715030834.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 31 May 2011 10:24:12 +0100 Subject: [PATCH] distorted.lisp: Define addresses for all of the new machines. Organization: Straylight/Edgeware From: Mark Wooding New feature: we have CNAME records for some of our regular DHCP clients. --- distorted.lisp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/distorted.lisp b/distorted.lisp index 20a64e0..ed09808 100644 --- a/distorted.lisp +++ b/distorted.lisp @@ -27,12 +27,16 @@ (defhost guvnor.demon 80.177.3.76) ;; Unsafe network. (defhost guvnor (unsafe 1)) (defhost metalzone (unsafe 2)) -;;(defhost evolution.fretwank (unsafe 3)) +(defhost radius (unsafe 3)) (defhost vampire (unsafe 4)) +(defhost roadstar (unsafe 5)) +(defhost jem (unsafe 6)) +(defhost artist (unsafe 7)) ;; Safe network. (defhost tubescreamer (safe 1)) (defhost obsidian (safe 2)) +(defhost ibanez (safe 3)) ;; Wireless network. (defhost vampire.untrusted (untrusted 1)) @@ -117,6 +121,14 @@ (defzone distorted.org.uk (untrusted :a vampire.untrusted) (iodine :a vampire.iodine)) (obsidian (fretwank :a obsidian)) + (ibanez (fretwank :a ibanez)) + (radius (fretwank :a radius)) + (roadstar (fretwank :a roadstar)) + (jem (fretwank :a jem)) + (artist (fretwank :a artist)) + (gibson :cname gibson.dhcp) + (lespaul :cname lespaul.dhcp) + (firebird :cname firebird.dhcp) ;; ;; Virtual network. (virtual :net virtual) -- [mdw]