Does WiFi Guard save device DNS domain names or obtain them each time a device is detected?
The reason I ask, is because lots of my devices are shown with an old DNS Domain name, and none with the current DNS domain name.
All Forums
> WiFi Guard
> Current topic
Devices shown with only an old DNS domain name
Started by Jeremy
|
Devices shown with only an old DNS domain name 08 October 2025, 23:45 |
Registered: 1 year ago Posts: 10 |
|
|
Re: Devices shown with only an old DNS domain name 09 October 2025, 09:53 |
Admin Registered: 20 years ago Posts: 3 690 |
WiFi Guard does not cache or store device names. It keeps a record of each device's MAC address, IP assignments over time, and any category or description you set, but not its name.
The old DNS domain names you are seeing are most likely coming from cached data elsewhere, such as in your operating system or at the router level. A quick way to check is to run the following command in a Command Prompt window (replace x.x.x.x with the device IP):
Please give that a try and let me know what result you get.
The old DNS domain names you are seeing are most likely coming from cached data elsewhere, such as in your operating system or at the router level. A quick way to check is to run the following command in a Command Prompt window (replace x.x.x.x with the device IP):
tracert x.x.x.xLook at the line after Tracing route to… If it shows the old domain name there as well, the cache issue is outside WiFi Guard.
Please give that a try and let me know what result you get.
|
Re: Devices shown with only an old DNS domain name 09 October 2025, 15:14 |
Registered: 1 year ago Posts: 10 |
|
|
Re: Devices shown with only an old DNS domain name 10 October 2025, 10:05 |
Admin Registered: 20 years ago Posts: 3 690 |
Here is exactly how WiFi Guard decides the "Name" shown for a device. It simply tries a few discovery methods in order and uses the first one that succeeds. There is no internal caching of names:
In short: the first successful source in that list "wins". If you are seeing an old domain or unexpected label, it is coming from whichever of these answered first, often your router/DNS, a stale NBNS responder, or an mDNS announcement on the LAN.
With Wireshark, you can capture traffic during a scan and check which of these methods actually returned the name. Filtering for NBNS, mDNS, DNS, or SNMP packets around the device's IP will quickly reveal where the information is coming from.
- NetBIOS: If it returns a name, it is used.
- mDNS (Bonjour/Zero-conf).
- SNMP: Typically reads sysName.0
- Reverse DNS: If there is a PTR record (or other reverse-lookup path) that yields a hostname, it is used.
- HTTP page title (only if the host responded to ping)
In short: the first successful source in that list "wins". If you are seeing an old domain or unexpected label, it is coming from whichever of these answered first, often your router/DNS, a stale NBNS responder, or an mDNS announcement on the LAN.
With Wireshark, you can capture traffic during a scan and check which of these methods actually returned the name. Filtering for NBNS, mDNS, DNS, or SNMP packets around the device's IP will quickly reveal where the information is coming from.
|
Re: Devices shown with only an old DNS domain name 10 October 2025, 13:32 |
Registered: 1 year ago Posts: 10 |