Add monokuma and offlate domains
modules/config/dns.scm
44 | 44 | (define-zone-entries lepiller.eu.zone | |
45 | 45 | ;; Name TTL Class Type Data | |
46 | 46 | ("ene" "" "IN" "A" ene-ip4) | |
47 | - | ("ene" "" "IN" "AAAA" ene-ip6) | |
47 | + | ; IPv6 firewall is not configurable and refuses any connection | |
48 | + | ;("ene" "" "IN" "AAAA" ene-ip6) | |
48 | 49 | ("hermes" "" "IN" "A" hermes-ip4) | |
49 | 50 | ("hermes" "" "IN" "AAAA" hermes-ip6) | |
51 | + | ("monokuma" "" "IN" "A" monokuma-ip4) | |
52 | + | ; IPv6 firewall is not configurable and refuses any connection | |
53 | + | ;("monokuma" "" "IN" "AAAA" monokuma-ip6) | |
50 | 54 | ("xana" "" "IN" "A" xana-ip4) | |
51 | 55 | ("@" "" "IN" "A" hermes-ip4) | |
52 | 56 | ("@" "" "IN" "AAAA" hermes-ip6) | |
… | |||
55 | 59 | ("avatar" "" "IN" "CNAME" "ene") | |
56 | 60 | ("i18n" "" "IN" "CNAME" "xana") | |
57 | 61 | ("nani" "" "IN" "CNAME" "xana") | |
62 | + | ("offlate" "" "IN" "CNAME" "xana") | |
58 | 63 | ("rennes" "" "IN" "CNAME" "ene") | |
59 | 64 | ("social" "" "IN" "CNAME" "hermes") | |
60 | 65 | ||
… | |||
63 | 68 | ("ns" "" "IN" "A" hermes-ip4) | |
64 | 69 | ("ns" "" "IN" "AAAA" hermes-ip6) | |
65 | 70 | ("ns2" "" "IN" "A" ene-ip4) | |
66 | - | ("ns2" "" "IN" "AAAA" ene-ip6) | |
71 | + | ;("ns2" "" "IN" "AAAA" ene-ip6) | |
67 | 72 | ||
68 | 73 | ("@" "" "IN" "MX" "10 courriel") | |
69 | 74 | ("@" "" "IN" "MX" "50 b.courriel") | |
70 | 75 | ("b.courriel" "" "IN" "A" hermes-ip4) | |
71 | 76 | ("b.courriel" "" "IN" "AAAA" hermes-ip6) | |
72 | 77 | ("courriel" "" "IN" "A" ene-ip4) | |
73 | - | ("courriel" "" "IN" "AAAA" ene-ip6) | |
78 | + | ;("courriel" "" "IN" "AAAA" ene-ip6) | |
74 | 79 | ("imap" "" "IN" "CNAME" "courriel") | |
75 | 80 | ("smtp" "" "IN" "CNAME" "b.courriel") | |
76 | 81 | ("@" "" "IN" "TXT" "v=spf1 mx a ~all") | |
… | |||
125 | 130 | (zone (zone-file | |
126 | 131 | (origin "lepiller.eu") | |
127 | 132 | (entries lepiller.eu.zone) | |
128 | - | (serial 2019101101))))) | |
133 | + | (serial 2019112601))))) | |
129 | 134 | ||
130 | 135 | (define lepiller-slave-zone | |
131 | 136 | (knot-zone-configuration |
modules/data/dns.scm
22 | 22 | (define-module (data dns) | |
23 | 23 | #:export (hermes-ip4 hermes-ip6 | |
24 | 24 | ene-ip4 ene-ip6 | |
25 | + | monokuma-ip4 monokuma-ip6 | |
25 | 26 | xana-ip4)) | |
26 | 27 | ||
27 | 28 | (define hermes-ip4 "89.234.186.109") | |
… | |||
30 | 31 | (define ene-ip4 "176.149.212.202") | |
31 | 32 | (define ene-ip6 "2001:861:3dc6:d750:cf:5ff:fe81:68af") | |
32 | 33 | ||
34 | + | (define monokuma-ip4 "176.149.212.202") | |
35 | + | (define monokuma-ip6 "2001:861:3dc6:d750:e708:ab02:f213:efa6") | |
36 | + | ||
33 | 37 | (define xana-ip4 "62.210.81.154") |