From c21187130e04cc4fb7c2d81e95f06ef39606e612 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Fri, 30 Mar 2012 23:50:00 +0100 Subject: [PATCH] hosts.lisp, distorted.lisp: New `blackhole' address. Organization: Straylight/Edgeware From: Mark Wooding All IP packets to this address will be dropped silently. Useful for strange testing. --- distorted.lisp | 3 +++ hosts.lisp | 1 + 2 files changed, 4 insertions(+) diff --git a/distorted.lisp b/distorted.lisp index 892daab..01fc902 100644 --- a/distorted.lisp +++ b/distorted.lisp @@ -138,6 +138,9 @@ (defzone distorted.org.uk (gw (its :a gw.its)) (mz (its :a mz.its)) + ;; Strange things. + (blackhole (jump :a blackhole.jump)) + ;; Delegations. (dhcp :ns (radius.ns vampire.ns)) (io :ns ((ns.io :ip iodine.dmz)))) diff --git a/hosts.lisp b/hosts.lisp index d62cc5e..003fe5e 100644 --- a/hosts.lisp +++ b/hosts.lisp @@ -58,6 +58,7 @@ (defhost precision.jump (jump 6)) (defhost telecaster.jump (jump 7)) (defhost stratocaster.jump (jump 8)) (defhost jazz.jump (jump 9)) +(defhost blackhole.jump (jump 14)) ;; Unsafe network. (defhost radius.unsafe (unsafe 1)) -- [mdw]