Created
March 25, 2020 23:14
-
-
Save xavierzwirtz/86b3bf4ca54b18c36d002b3fd191cf85 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[nix-shell:~]$ cat /nix/store/hdpxb5ikmckryx3ks5mxkcmykdmkr70w-named.conf | |
options { | |
directory "/run/named"; | |
pid-file "/run/named/named.pid"; | |
}; | |
zone "atlas.birddogsw.local" { | |
type master; | |
file "/nix/store/brjzwsdrdq7m15g8h1q7lihiv6x2vvgq-atlas.zone"; | |
}; | |
[nix-shell:~]$ cat /nix/store/brjzwsdrdq7m15g8h1q7lihiv6x2vvgq-atlas.zone | |
$ORIGIN atlas.birddogsw.local. | |
$TTL 600 | |
@ SOA hephaestus.birddogsw.local. xavier.birddogsw.local. ( | |
2020032501 | |
21600 | |
3600 | |
300 | |
5 ) | |
; | |
; | |
NS hephaestus.birddogsw.local. | |
hephaestus A 192.168.1.180 | |
; | |
; | |
demoalias A 192.168.1.181 | |
www CNAME demoalias.atlas.birddogsw.local. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment