; ; db.acdam.net - example master file for Posadis ; ; This is an example Posadis master file. Master files are the standard way ; of storing DNS zone data on disk, supported by many DNS servers. Posadis ; comes with the Posadis Master File Editor, a graphical program to edit these ; files. For more information about the contents of master files, refer to ; the part about becoming a primary DNS server in the Posadis manual, or, for ; a reference of the different RR types, refer to the reference section of the ; manual or the posadisrc manual page. ; ; As an extension, Posadis supports the embedding of configuration settings in ; master files. You can edit these configuration settings from the Master File ; Editor, and they will be ignored by other DNS servers: ; Now follow two example configuration settings: ;set slaves 213.21.55.212, 213.21.55.213, 66.32.217.29 ;set allow_xfr slaves ; Now follows the zone data: ; The SOA record gives general zone information and is obligatory. @ 2h SOA ns1 meilof@acdam.net 2003100701 2h 1h 1d 2h ; NS records list the DNS servers for the zone. Note that "ns1" is a domain ; name relative to the zone root (so it would become "ns1.acdam.net."), where ; "ns1.acdam.com." is an absolute domain name. NS ns1 NS ns1.acdam.com. ; The two mail servers: "mail.acdam.net." is the primary mail server (having ; the lowest priority value), where "fallback.acdam.com." will be tried if ; "mail.acdam.net" is not reachable. @ MX 10 mail MX 100 fallback.acdam.com. ; Adress records for various domain names in the zone ns1 A 213.21.55.211 www A 213.21.55.212 www AAAA fe1a:de02::dead:beef ; IPv6 address ftp A 213.21.55.217 mail A 213.21.55.12 ; Aliases for other domain names: web CNAME www files CNAME ftp ; Non-existent subdomains will be redirected to www * CNAME www ; Delegating authority to the guys of the research department means adding ; their NS records to our zone, and adding A records for the nameservers that ; are in their zone: research NS ns1.research NS ns2.research NS ns1.acdam.com. ns1.research A 213.21.56.1 ns2.research A 213.21.56.215