Add monokuma and offlate domains

Julien LepillerTue Nov 26 17:44:54+0100 2019

b5cd302

Add monokuma and offlate domains

modules/config/dns.scm

4444
(define-zone-entries lepiller.eu.zone
4545
;; Name         TTL Class Type Data
4646
  ("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)
4849
  ("hermes"     ""  "IN"  "A"     hermes-ip4)
4950
  ("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)
5054
  ("xana"       ""  "IN"  "A"     xana-ip4)
5155
  ("@"          ""  "IN"  "A"     hermes-ip4)
5256
  ("@"          ""  "IN"  "AAAA"  hermes-ip6)

5559
  ("avatar"     ""  "IN"  "CNAME" "ene")
5660
  ("i18n"       ""  "IN"  "CNAME" "xana")
5761
  ("nani"       ""  "IN"  "CNAME" "xana")
62+
  ("offlate"    ""  "IN"  "CNAME" "xana")
5863
  ("rennes"     ""  "IN"  "CNAME" "ene")
5964
  ("social"     ""  "IN"  "CNAME" "hermes")
6065

6368
  ("ns"         ""  "IN"  "A"     hermes-ip4)
6469
  ("ns"         ""  "IN"  "AAAA"  hermes-ip6)
6570
  ("ns2"        ""  "IN"  "A"     ene-ip4)
66-
  ("ns2"        ""  "IN"  "AAAA"  ene-ip6)
71+
  ;("ns2"        ""  "IN"  "AAAA"  ene-ip6)
6772
6873
  ("@"          ""  "IN"  "MX"    "10 courriel")
6974
  ("@"          ""  "IN"  "MX"    "50 b.courriel")
7075
  ("b.courriel" ""  "IN"  "A"     hermes-ip4)
7176
  ("b.courriel" ""  "IN"  "AAAA"  hermes-ip6)
7277
  ("courriel"   ""  "IN"  "A"     ene-ip4)
73-
  ("courriel"   ""  "IN"  "AAAA"  ene-ip6)
78+
  ;("courriel"   ""  "IN"  "AAAA"  ene-ip6)
7479
  ("imap"       ""  "IN"  "CNAME" "courriel")
7580
  ("smtp"       ""  "IN"  "CNAME" "b.courriel")
7681
  ("@"          ""  "IN"  "TXT"   "v=spf1 mx a ~all")

125130
    (zone (zone-file
126131
            (origin "lepiller.eu")
127132
            (entries lepiller.eu.zone)
128-
            (serial 2019101101)))))
133+
            (serial 2019112601)))))
129134
130135
(define lepiller-slave-zone
131136
  (knot-zone-configuration

modules/data/dns.scm

2222
(define-module (data dns)
2323
  #:export (hermes-ip4 hermes-ip6
2424
            ene-ip4 ene-ip6
25+
	    monokuma-ip4 monokuma-ip6
2526
            xana-ip4))
2627
2728
(define hermes-ip4 "89.234.186.109")

3031
(define ene-ip4 "176.149.212.202")
3132
(define ene-ip6 "2001:861:3dc6:d750:cf:5ff:fe81:68af")
3233
34+
(define monokuma-ip4 "176.149.212.202")
35+
(define monokuma-ip6 "2001:861:3dc6:d750:e708:ab02:f213:efa6")
36+
3337
(define xana-ip4 "62.210.81.154")