mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
* Basic, working, easily modifiable LAN DNS server * Example LAN, .private, and localhost zones * A, PTR, and CNAME (alias) records * MX, SPF, DKIM, and DMARC records for email servers * URI, TXT, and SRV records for Kerberos servers * Semi-automated initial configuration using LAN setup
12 lines
195 B
Dns
12 lines
195 B
Dns
$TTL 86400
|
|
$ORIGIN localhost.
|
|
@ 1D IN SOA @ root (
|
|
42 ; serial (d. adams)
|
|
3H ; refresh
|
|
15M ; retry
|
|
1W ; expiry
|
|
1D ) ; minimum
|
|
|
|
1D IN NS @
|
|
1D IN A 127.0.0.1
|