chiark / gitweb /
distorted.lisp, hosts.lisp: Publish addresses for anycast services.
[zones] / hosts.lisp
CommitLineData
ff6c53ad
MW
1;;; -*-lisp-*-
2;;;
3;;; distorted.org.uk hosts and networks, and other useful addresses.
4
5;;;--------------------------------------------------------------------------
6;;; External hosts.
e80b4c2d 7
e80b4c2d 8(defhost boyle.nsict.org 85.158.42.162)
7605ad5e 9(defhost chiark.greenend.org.uk 212.13.197.229)
e80b4c2d 10(defhost mccoy.flatline.org.uk 80.74.241.31)
3dfd711e
MW
11(defhost mythic-ns1 69.56.173.190)
12(defhost mythic-ns2 93.93.128.67)
ff6c53ad
MW
13
14;;;--------------------------------------------------------------------------
15;;; Internal addresses.
16
17;; Externally routable DMZ.
18(defnet dmz 62.49.204.144/28)
19
38c2de7c
MW
20;; Externally routed colo range.
21(defnet jump 212.13.198.66/28)
22
ff6c53ad
MW
23;; (RFC1918 addresses are allocated from Cambridge G-RIN.)
24(defnet distorted.org.uk 172.29.198.0/23
25 (untrusted 256
26 (wireless 128)
27 (iodine 16))
28 (trusted 256
29 (wired 128
30 (unsafe 32)
9dc37b96 31 (dhcp 32))
374be896 32 (vpn 32)
9dc37b96 33 (nil 16
38c2de7c 34 (its 4))
9dc37b96 35 (colo 16)
72976fde
MW
36 (safe 32)
37 (any 32)))
ff6c53ad
MW
38
39;;;--------------------------------------------------------------------------
40;;; Host allocations
41
42;; External addresses.
43(defhost guvnor.dmz (dmz 1))
44(defhost radius.dmz (dmz 2))
45(defhost roadstar.dmz (dmz 3))
46(defhost jem.dmz (dmz 4))
47(defhost artist.dmz (dmz 5))
48(defhost vampire.dmz (dmz 6))
49(defhost ibanez.dmz (dmz 9))
04db9729 50(defhost anon.dmz (dmz 12))
ff6c53ad
MW
51(defhost gate.dmz (dmz 13))
52(defhost nat.dmz (dmz 14))
53
38c2de7c
MW
54;; Colocated addresses.
55(defhost fender.jump (jump 5))
56(defhost precision.jump (jump 6))
57(defhost telecaster.jump (jump 7))
58(defhost stratocaster.jump (jump 8))
59(defhost jazz.jump (jump 9))
60
ff6c53ad
MW
61;; Unsafe network.
62(defhost radius.unsafe (unsafe 1))
63(defhost roadstar.unsafe (unsafe 2))
64(defhost jem.unsafe (unsafe 3))
65(defhost artist.unsafe (unsafe 4))
66(defhost vampire.unsafe (unsafe 5))
67(defhost ibanez.unsafe (unsafe 14))
68
69;; Safe network.
d8536712
MW
70(defhost radius.safe (safe 1))
71(defhost vampire.safe (safe 2))
72(defhost evolution.safe (safe 3))
ff6c53ad
MW
73
74;; Wireless network.
75(defhost radius.untrusted (untrusted 1))
76(defhost evolution.untrusted (untrusted 2))
77(defhost vampire.untrusted (untrusted 3))
78
79;; Virtual private network.
374be896
MW
80(defhost crybaby.vpn (vpn 1))
81(defhost terror.vpn (vpn 2))
ff6c53ad
MW
82
83;; Iodine network.
84(defhost vampire.iodine (iodine 1))
85
86;; Special network for ITS.
87;; It doesn't understand point-to-point links, so we need a little net.
88(defhost gw.its (its 1))
89(defhost mz.its (its 2))
90
38c2de7c
MW
91;; Internal (VPN) addresses for colocated services.
92(defhost fender.colo (colo 1))
93(defhost precision.colo (colo 2))
94(defhost telecaster.colo (colo 3))
95(defhost stratocaster.colo (colo 4))
96(defhost jazz.colo (colo 5))
97
345c0f69
MW
98;; Anycast addresses for services.
99(defhost dns0.any (any 0))
100(defhost dns1.any (any 1))
101(defhost ntp0.any (any 2))
102(defhost ntp1.any (any 3))
103(defhost www-cache.any (any 4))
104
ff6c53ad
MW
105;;;--------------------------------------------------------------------------
106;;; Host switch.
107
108(preferred-subnet-case
109 (dmz
110 (defhost radius radius.dmz)
111 (defhost vampire vampire.dmz))
112 (t
113 (defhost radius radius.unsafe)
114 (defhost vampire vampire.unsafe)))
115
116;;;----- That's all, folks --------------------------------------------------