Change ene IP and remove monokuma
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 | - | ; IPv6 firewall is not configurable and refuses any connection | |
48 | - | ;("ene" "" "IN" "AAAA" ene-ip6) | |
49 | 47 | ("hermes" "" "IN" "A" hermes-ip4) | |
50 | 48 | ("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) | |
54 | 49 | ("xana" "" "IN" "A" xana-ip4) | |
55 | 50 | ("@" "" "IN" "A" hermes-ip4) | |
56 | 51 | ("@" "" "IN" "AAAA" hermes-ip6) | |
… | |||
68 | 63 | ("ns" "" "IN" "A" hermes-ip4) | |
69 | 64 | ("ns" "" "IN" "AAAA" hermes-ip6) | |
70 | 65 | ("ns2" "" "IN" "A" ene-ip4) | |
71 | - | ;("ns2" "" "IN" "AAAA" ene-ip6) | |
72 | 66 | ||
73 | 67 | ("@" "" "IN" "MX" "10 courriel") | |
74 | 68 | ("@" "" "IN" "MX" "50 b.courriel") | |
75 | 69 | ("b.courriel" "" "IN" "A" hermes-ip4) | |
76 | 70 | ("b.courriel" "" "IN" "AAAA" hermes-ip6) | |
77 | 71 | ("courriel" "" "IN" "A" ene-ip4) | |
78 | - | ;("courriel" "" "IN" "AAAA" ene-ip6) | |
79 | 72 | ("imap" "" "IN" "CNAME" "courriel") | |
80 | 73 | ("smtp" "" "IN" "CNAME" "b.courriel") | |
81 | 74 | ("@" "" "IN" "TXT" "v=spf1 mx a ~all") | |
… | |||
97 | 90 | (define ene | |
98 | 91 | (knot-remote-configuration | |
99 | 92 | (id "ene") | |
100 | - | (address (list ene-ip4 ene-ip6)) | |
93 | + | (address (list ene-ip4)) | |
101 | 94 | (key "lepiller-key"))) | |
102 | 95 | ||
103 | 96 | (define hermes | |
… | |||
130 | 123 | (zone (zone-file | |
131 | 124 | (origin "lepiller.eu") | |
132 | 125 | (entries lepiller.eu.zone) | |
133 | - | (serial 2019112601))))) | |
126 | + | (serial 2019120701))))) | |
134 | 127 | ||
135 | 128 | (define lepiller-slave-zone | |
136 | 129 | (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 | |
26 | 25 | xana-ip4)) | |
27 | 26 | ||
28 | 27 | (define hermes-ip4 "89.234.186.109") | |
29 | 28 | (define hermes-ip6 "2a00:5884:8208::1") | |
30 | 29 | ||
31 | - | (define ene-ip4 "176.149.212.202") | |
32 | - | (define ene-ip6 "2001:861:3dc6:d750:cf:5ff:fe81:68af") | |
33 | - | ||
34 | - | (define monokuma-ip4 "176.149.212.202") | |
35 | - | (define monokuma-ip6 "2001:861:3dc6:d750:e708:ab02:f213:efa6") | |
30 | + | (define ene-ip4 "79.91.200.80") | |
36 | 31 | ||
37 | 32 | (define xana-ip4 "62.210.81.154") |