Jan Ulrich Hasecke
2022-08-08 252db8f6510eaf189aeafc8f4d1ee1dc1605c974
commit | author | age
261280 1 # Das expandierte Standardzonefile
JUH 2
3     $TTL 6H
4     example.com. IN SOA h00.hostsharing.net. hostmaster.hostsharing.net. (
5             1303649373      ; serial secs since Jan 1 1970  
6             6H              ; refresh (>=10000)
7             1H              ; retry (>=1800)
8             1W              ; expire
9             1H              ; minimum
10             )
11
12     example.com.    IN      NS      dns1.hostsharing.net.
13     example.com.    IN      NS      dns2.hostsharing.net.
14     example.com.    IN      NS      dns3.hostsharing.net.
15     example.com.    IN      MX      30 mailin1.hostsharing.net.
16     example.com.    IN      MX      30 mailin2.hostsharing.net.
17     example.com.    IN      MX      30 mailin3.hostsharing.net.
18     example.com.    IN      A       83.223.95.160
19     example.com.    IN      AAAA    2a01:37:1000::53df:5bfc:0
20     _imap._tcp.example.com.              IN      SRV     1 0 143 xyz00.hostsharing.net.
21     _imaps._tcp.example.com.             IN      SRV     2 0 993 xyz00.hostsharing.net.
22     _pop3._tcp.example.com.              IN      SRV     3 0 110 xyz00.hostsharing.net.
23     _pop3s._tcp.example.com.             IN      SRV     4 0 995 xyz00.hostsharing.net.
24     _submission._tcp.example.com.        IN      SRV     0 0 587 xyz00.hostsharing.net.
25     _autodiscover._tcp.example.com.      IN      SRV     0 0 443 example.com.
26     autodiscover.example.com.            IN      A       0.0.0.0
27     autodiscover.example.com.            IN      AAAA    ::
28     example.com.    IN      TXT     "v=spf1 include:spf.hostsharing.net ?all"
29     *.example.com.  IN      MX      30 mailin1.hostsharing.net.
30     *.example.com.  IN      MX      30 mailin2.hostsharing.net.
31     *.example.com.  IN      MX      30 mailin3.hostsharing.net.
32     *.example.com.  IN      A       83.223.95.160
33     *.example.com.  IN      AAAA    2a01:37:1000::53df:5bfc:0
34     *.example.com.  IN      TXT     "v=spf1 include:spf.hostsharing.net ?all"
252db8 35
JUH 36
37