From what you’ve described, it seems the laptop can access the gateway through a web browser but cannot ping it directly, which is indeed peculiar and may indicate a few possible issues. Here are some things you might want to look into:
1. Check the URL Format
When accessing IP addresses in browsers, be sure to use the correct format. For the gateway, the URL should be
http://192.168.0.1
instead of
http:\\\\192.168.0.1
. The backward slashes might confuse the command line.
2. Network Isolation
Some routers have settings that can prevent devices on the Wi-Fi from communicating with wired devices. This is often referred to as "Wireless Isolation" or "AP Isolation". Check the configuration of your router to ensure that this feature is disabled.
3. Firewall Settings on the Router
Some routers have built-in firewalls that may block ICMP packets (used by ping). Make sure that ICMP is allowed on the firewall settings of the router.
4. Check Laptop Firewall
Since you can ping the gateway from your desktop but not from your laptop, check if the firewall settings on your laptop may be blocking outgoing ping requests:
- Open Windows Defender Firewall on the laptop and review the settings to ensure nothing is blocking ICMP requests.
5. Try Different Network Profiles
Make sure the network type is set to Private on your laptop. If it’s still set to Public, it might limit connectivity:
- Go to Settings > Network & Internet > Status and click on the network you are connected to, and check if it’s set to Private.
6. DNS Issues
It could also be a DNS issue. Try pinging the gateway by its IP address rather than by hostname (which it seems you are already doing). If you need to set a public DNS server, you can try changing the DNS settings to Google DNS:
- Go to Control Panel > Network and Internet > Network and Sharing Center.
- Click on your connection and select Properties.
- Choose Internet Protocol Version 4 (TCP/IPv4) then click on Properties.
- Select Use the following DNS server addresses and enter
8.8.8.8
and 8.8.4.4
as alternate DNS servers.
7. Reboot Everything Again
If you haven’t already rebooted both devices and the router after checking these settings, it’s worth doing so to ensure everything is refreshed.
Conclusion
Give these steps a try, especially rechecking the network isolation settings on the router. The fact that the laptop can access the web interface of the gateway but not successfully ping indicates a likely network configuration issue on the router or within the firewall settings. Let me know what you find out!