this post was submitted on 15 Aug 2026
5 points (100.0% liked)
techsupport
3211 readers
1 users here now
The Lemmy community will help you with your tech problems and questions about anything here. Do not be shy, we will try to help you.
If something works or if you find a solution to your problem let us know it will be greatly apreciated.
Rules: instance rules + stay on topic
Partnered communities:
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I'm not sure what this means. You mean that you have multiple devices, and you've set multiple of them up to use 192.168.1.1 as a DNS server, and some work and some don't? Or you just mean that the other devices work in that they can access the Internet, and aren't using 192.168.1.1 as a DNS server?
If you've got a Linux system, the basic tools I'd probably use as a first pass are
dig, which is a utility that provides a fair bit of information about what's going on, bypasses your system resolver, and is often used for diagnosing DNS issues, andtcpdump, which will let you see what is going by at the network level. On Debian-family systems,digis in the package bind9-dnsutils, andtcpdumpis in the tcpdump package.In one terminal:
That'll start printing a summary of DNS traffic to and from the Linux box and the router.
In another:
That'll let you see if the query is timing out or what-all is going wrong, and it'll ensure that you don't have some client-side configuration issue, since you aren't using your system resolver.
Thank for all the advice! I haven't had the time to try any of them yet - having started on another (Commodore 64) project and whatnot - but I'll check them out when I can. :)