Move ene to toulouse
modules/config/dns.scm
43 | 43 | ||
44 | 44 | (define-zone-entries lepiller.eu.zone | |
45 | 45 | ;; Name TTL Class Type Data | |
46 | - | ("ene" "" "IN" "A" ene-kb-ip4) | |
47 | - | ("ene" "" "IN" "AAAA" ene-kb-ip6) | |
46 | + | ("ene" "" "IN" "A" ene-toulouse-ip4) | |
47 | + | ("ene" "" "IN" "AAAA" ene-toulouse-ip6) | |
48 | 48 | ("hermes" "" "IN" "A" hermes-ip4) | |
49 | 49 | ("hermes" "" "IN" "AAAA" hermes-ip6) | |
50 | 50 | ("xana" "" "IN" "A" xana-ip4) | |
… | |||
64 | 64 | ("@" "" "IN" "NS" "ns2") | |
65 | 65 | ("ns" "" "IN" "A" hermes-ip4) | |
66 | 66 | ("ns" "" "IN" "AAAA" hermes-ip6) | |
67 | - | ("ns2" "" "IN" "A" ene-kb-ip4) | |
68 | - | ("ns2" "" "IN" "AAAA" ene-kb-ip6) | |
67 | + | ("ns2" "" "IN" "A" ene-toulouse-ip4) | |
68 | + | ("ns2" "" "IN" "AAAA" ene-toulouse-ip6) | |
69 | 69 | ||
70 | 70 | ("@" "" "IN" "MX" "10 courriel") | |
71 | 71 | ("@" "" "IN" "MX" "50 b.courriel") | |
… | |||
73 | 73 | ("@" "" "IN" "MX" "60 5g33mrv2rp2onyvte2b3ge5a44fxansxwt4sajmmae7lgorxjgz5czad.onion.") | |
74 | 74 | ("b.courriel" "" "IN" "A" hermes-ip4) | |
75 | 75 | ("b.courriel" "" "IN" "AAAA" hermes-ip6) | |
76 | - | ("courriel" "" "IN" "A" ene-kb-ip4) | |
77 | - | ("courriel" "" "IN" "AAAA" ene-kb-ip6) | |
76 | + | ("courriel" "" "IN" "A" ene-toulouse-ip4) | |
77 | + | ("courriel" "" "IN" "AAAA" ene-toulouse-ip6) | |
78 | 78 | ("imap" "" "IN" "CNAME" "courriel") | |
79 | 79 | ("smtp" "" "IN" "CNAME" "b.courriel") | |
80 | 80 | ("@" "" "IN" "TXT" "\"v=spf1 mx a ~all\"") | |
… | |||
96 | 96 | (define ene | |
97 | 97 | (knot-remote-configuration | |
98 | 98 | (id "ene") | |
99 | - | (address (list ene-kb-ip4 ene-kb-ip6)) | |
99 | + | (address (list ene-toulouse-ip4 ene-toulouse-ip6)) | |
100 | 100 | (key "lepiller-key"))) | |
101 | 101 | ||
102 | 102 | (define hermes | |
… | |||
108 | 108 | (define master-acl | |
109 | 109 | (knot-acl-configuration | |
110 | 110 | (id "master-acl") | |
111 | - | (address (list ene-kb-ip4 ene-kb-ip6 ene-rennes-ip4)) | |
111 | + | (address (list ene-toulouse-ip4 ene-toulouse-ip6)) | |
112 | 112 | (key '("lepiller-key")) | |
113 | 113 | (action '(transfer)))) | |
114 | 114 |
modules/config/mail.scm
36 | 36 | ||
37 | 37 | (define relays-file | |
38 | 38 | (plain-file "other-relays" | |
39 | - | (string-append ene-rennes-ip4 "\n" ene-kb-ip4 "\n" ene-kb-ip6 "\n" | |
39 | + | (string-append ene-rennes-ip4 "\n" ene-toulouse-ip4 "\n" ene-toulouse-ip6 "\n" | |
40 | 40 | hermes-ip4 "\n" hermes-ip6 "\n" ))) | |
41 | 41 | ||
42 | 42 | (define blacklist-file |
modules/data/dns.scm
20 | 20 | ;; | |
21 | 21 | ||
22 | 22 | (define-module (data dns) | |
23 | - | #:export (ene-rennes-ip4 ene-kb-ip4 ene-kb-ip6 | |
23 | + | #:export (ene-rennes-ip4 ene-kb-ip4 ene-kb-ip6 ene-toulouse-ip4 ene-toulouse-ip6 | |
24 | 24 | hermes-ip4 hermes-ip6 | |
25 | 25 | xana-ip4)) | |
26 | 26 | ||
… | |||
30 | 30 | (define ene-rennes-ip4 "79.91.200.80") | |
31 | 31 | (define ene-kb-ip4 "86.247.175.133") | |
32 | 32 | (define ene-kb-ip6 "2a01:cb04:717:4400:cf:5ff:fe81:68af") | |
33 | + | (define ene-toulouse-ip4 "77.146.233.46") | |
34 | + | (define ene-toulouse-ip6 "2a02:8435:942:f701:cf:5ff:fe81:68af") | |
33 | 35 | ||
34 | 36 | (define xana-ip4 "62.210.81.154") |