summaryrefslogtreecommitdiff
path: root/Biz/Dev/Home.zone
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2022-08-25 08:56:43 -0400
committerBen Sima <ben@bsima.me>2022-08-25 08:56:43 -0400
commite96c147896f12e2f5c171f980b2d2d84407fdb3c (patch)
tree01889339c3ef865ef3517b7388b56c049e0de2c0 /Biz/Dev/Home.zone
parent2c7a85de18eb46d8afb449e4784720eb7c284e55 (diff)
Prototype DNS support locally
This works when I route from lithium, including with 'dig', but when I try to 'dig @lithium router.home' from helium, for example, it times out. So my thought is that the firewall is blocking, but that doesn't seem to be the problem. So maybe my router is doing something? Hopefully when I migrate this to my APU router this will all just work, but idk.
Diffstat (limited to 'Biz/Dev/Home.zone')
-rw-r--r--Biz/Dev/Home.zone23
1 files changed, 23 insertions, 0 deletions
diff --git a/Biz/Dev/Home.zone b/Biz/Dev/Home.zone
new file mode 100644
index 0000000..86d4919
--- /dev/null
+++ b/Biz/Dev/Home.zone
@@ -0,0 +1,23 @@
+;$TTL 3D
+;@ IN SOA home. hostmaster (
+; 1 ; serial
+; 8H ; refresh
+; 2H ; retry
+; 4W ; expire
+; 1D) ; min ttl
+; IN NS ns.home.
+;home. IN A 192.168.0.196
+;router IN A 192.168.0.196
+;
+$TTL 1D
+@ IN SOA ns.home. hostmaster (
+ 3 ; Serial
+ 604800 ; Refresh
+ 86400 ; Retry
+ 2419200 ; Expire
+ 604800 ) ; Minimum
+@ IN NS ns. ; Name Server for the domain
+@ IN A 192.168.0.196 ;
+example.com. IN A 192.168.0.1 ; test
+router IN A 192.168.0.1 ; IP address for 'router'
+lithium IN A 192.168.0.196 ; my dev server