I’m pulling my hair out over this. I’ve got a proxmox homelab, an LXC running technitium installed from TTeck’s script.
The DNS server is also doing DHCP for my network. I have an authoritative zone for ‘.lan’
I can get NS, SOA, TXT records from the DNS server, but no A records! The DNS query logs show that it gives an answer, and if I am on the DNS server itself I get an answer, but no other machines on the network hear the reply.
I think this means the DNS server is working properly. There are no FWs in the way as I can resolve other types.
Where else can I look, or how can I diagnose this? I am completely at a loss.
truthfultemporarily@feddit.org 2 hours ago
Here is how I would diagnose (I’m assuming you have Linux / WSL on a client)
dig $domain
check which server answereddig a $domain
should give a recorddig a $domain @server
to make sure you’re querying the right serverIf none work, probably network issue (DNS boind to wrong IP, firewall, etc)
If 3 and 5 work but 4 doesn’t, your DNS isn’t authorative.
Bluesheep@lemmy.world 1 hour ago
Thanks for giving it some thought!
I have been testing using
dig @192.168.0.249 study.lan
3, 4, and 5 work for TXT, NS and SOA but doesn’t work for A records. I think this rules out a simple network issue?