distorted.lisp, hosts.lisp: Add Nicko's new VM `marshall'.
authorMark Wooding <mdw@distorted.org.uk>
Mon, 9 May 2022 09:23:23 +0000 (10:23 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Mon, 9 May 2022 09:23:23 +0000 (10:23 +0100)
distorted.lisp
hosts.lisp

index 2f25348..690c8dc 100644 (file)
 
   ;; Media server (on loan to Good Technology HSTG).
 
-  ;; Nicko's server.
+  ;; Nicko's servers.
   (richmond (jump :svc richmond.jump))
+  (marshall (jump :svc marshall.jump))
 
   ;; Entry is via little router box.
   (dmz :net dmz)
index d3f3e02..2c1719e 100644 (file)
@@ -78,6 +78,7 @@
 (defhost telecaster.jump (jump 7))
 (defhost stratocaster.jump (jump 8))
 (defhost jazz.jump (jump 9))
+(defhost marshall.jump ((:ipv4 jump 11) (:ipv6 jump "::2:1")))
 (defhost richmond.jump ((:ipv4 jump 12) (:ipv6 jump "::1:1")))
 (defhost anon.jump (jump 13))
 (defhost blackhole.jump ((:ipv4 jump 14) (:ipv6 jump "::ffff")))
    (defhost stratocaster stratocaster.jump)
    (defhost national national.linode)))
 
+(defhost marshall marshall.jump)
 
 ;;;----- That's all, folks --------------------------------------------------