dns: turns out this spacing is really really important

This commit is contained in:
silver 2023-04-24 20:14:24 +01:00
parent a474819992
commit 70f3e03b74

View file

@ -155,18 +155,18 @@ in {
$TTL 60 ; 1 minute $TTL 60 ; 1 minute
; hostmaster@skynet.ie is an email address that recieves stuff related to dns ; hostmaster@skynet.ie is an email address that recieves stuff related to dns
@ IN SOA ${cfg.own.nameserver}.skynet.ie. hostmaster.skynet.ie. ( @ IN SOA ${cfg.own.nameserver}.skynet.ie. hostmaster.skynet.ie. (
; Serial (YYYYMMDDCC) this has to be updated for each time the record is updated ; Serial (YYYYMMDDCC) this has to be updated for each time the record is updated
${current_date} ${current_date}
600 ; Refresh (10 minutes) 600 ; Refresh (10 minutes)
300 ; Retry (5 minutes) 300 ; Retry (5 minutes)
2419200 ; Expire (4 weeks) 2419200 ; Expire (4 weeks)
3600 ; Minimum (1 hour) 3600 ; Minimum (1 hour)
) )
NS ns1.skynet.ie. NS ns1.skynet.ie.
NS ns2.skynet.ie. NS ns2.skynet.ie.
; @ stands for teh root domain so teh A record below is where skynet.ie points to ; @ stands for teh root domain so teh A record below is where skynet.ie points to
A 193.1.99.76 A 193.1.99.76
MX 5 mail.skynet.ie. MX 5 mail.skynet.ie.
; can have multiple mailserves ; can have multiple mailserves
;MX 20 mail2.skynet.ie. ;MX 20 mail2.skynet.ie.