Hola Abigail,
DNS probably isn’t the issue here if the cameras are configured with an NTP server by IP address. DNS only comes into play if the cameras are trying to resolve a hostname. If you enter 172.22.244.x or 172.22.245.x directly as the NTP server, the DNS setting won’t affect that NTP request.
The more important detail is that 172.22.244.x and 172.22.245.x are different IP subnets, even though everything is connected to the same physical switch. A switch putting everything on the same Layer 2 network doesn’t automatically route between those IP networks. The Windows server can communicate with both because it has a NIC/address in each subnet. The cameras still need a valid route to reach anything outside their own subnet.
Since you’ve now pointed the cameras directly to the server’s 172.22.244.x address and they still don’t sync, I’d check two things next:
- Make sure the cameras have the correct subnet mask for the 172.22.244.x network.
- Check the Windows Firewall rule’s Profile setting, not just its Remote IP scope.
That second one is easy to miss on a multi-NIC server. One NIC may be classified as Domain while the other is Private or Public, so that a rule can show “Any remote address” but still not apply to traffic arriving on the .244 interface.
You can verify that from PowerShell on the server with: Get-NetConnectionProfile and then check whether UDP 123 is actually listening: Get-NetUDPEndpoint -LocalPort 123
Windows Time uses UDP 123 for both NTP requests and responses. Microsoft also notes that W32Time on a multihomed server can’t be enabled or disabled per individual network adapter; it operates at the service level rather than being bound to a specific NIC.
Because the .245 clients are already syncing, we know the NTP service itself is working. The remaining problem is much more likely to be the .244 network path, firewall profile, or addressing on the cameras rather than DNS.
If all of those look correct, the quickest way to settle it would be to run a short packet capture on the server while one camera attempts to sync. If you see a UDP 123 request arrive on the .244 NIC but no reply leave, that points back to Windows Firewall/W32Time. If no request arrives at all, the issue is on the camera/network side.
Thanks,
James