How Can We Help?
HOW-TO: Check network connectivity
Checking network connectivity involves verifying both your local network connection and your ability to access the internet. Here are the steps for Windows, macOS, and Linux:
Windows
- Using Network & Internet Settings:
- Press
Win + I
to open Settings. - Go to “Network & Internet.”
- Under “Status,” you can see if you are connected to the internet. It will say “You are connected to the Internet” if your connection is active.
- Press
- Using Command Prompt:
- Press
Win + R
, typecmd
, and press Enter. - Type
ping google.com
and press Enter.- If you see replies from the server (e.g.,
Reply from 142.250.72.14: bytes=32 time=14ms TTL=118
), your internet connection is active. - If you see errors (e.g.,
Request timed out
), there may be an issue with your internet connection.
- If you see replies from the server (e.g.,
- Type
ipconfig
and press Enter.- This will display your network configuration. Look for the “IPv4 Address” under your active network connection to see if you have an IP address assigned.
- Press
- Using Network Troubleshooter:
- Press
Win + I
to open Settings. - Go to “Update & Security” > “Troubleshoot.”
- Click on “Additional troubleshooters” (if using Windows 10) or “Other troubleshooters” (if using Windows 11).
- Select “Internet Connections” and click “Run the troubleshooter.”
- Follow the prompts to identify and fix network issues.
- Press
macOS
- Using Network Preferences:
- Click on the Apple menu in the top-left corner and select “System Preferences.”
- Click on “Network.”
- Your active network connection will be highlighted, and its status will be displayed (e.g., “Connected”).
- Using Terminal:
- Open Terminal (you can find it in Applications > Utilities).
- Type
ping google.com
and press Enter.- If you see replies from the server (e.g.,
64 bytes from 142.250.72.14: icmp_seq=0 ttl=118 time=14ms
), your internet connection is active. - If you see errors (e.g.,
Request timeout for icmp_seq 0
), there may be an issue with your internet connection.
- If you see replies from the server (e.g.,
- Type
ifconfig
and press Enter.- This will display your network configuration. Look for the
inet
entry under your active network interface (usuallyen0
for Wi-Fi) to see if you have an IP address assigned.
- This will display your network configuration. Look for the
Linux
- Using Network Manager:
- Open the network manager applet (usually found in the system tray or system settings).
- Check the status of your active network connection (e.g., “Connected” or “Disconnected”).
- Using Terminal:
- Open a terminal window.
- Type
ping google.com
and press Enter.- If you see replies from the server (e.g.,
64 bytes from 142.250.72.14: icmp_seq=0 ttl=118 time=14ms
), your internet connection is active. - If you see errors (e.g.,
ping: google.com: Name or service not known
), there may be an issue with your internet connection.
- If you see replies from the server (e.g.,
- Type
ifconfig
orip addr
and press Enter.- This will display your network configuration. Look for the
inet
entry under your active network interface (e.g.,eth0
for wired orwlan0
for wireless) to see if you have an IP address assigned.
- This will display your network configuration. Look for the
- Using Network Troubleshooter (Ubuntu):
- Open a terminal window.
- Type
nmcli device status
and press Enter.- This will display the status of your network devices (e.g., “connected” or “disconnected”).
- Type
nmcli networking connectivity check
and press Enter.- This will check the network connectivity status and provide a result (e.g., “full,” “limited,” or “none”).
These methods will help you check your network connectivity on most operating systems.