Internet configuration and troubleshooting
1. Internet Configuration Basics ⚡
A. Connecting to Internet
-
Via Cable/DSL: Connect modem → router → PC (Ethernet cable) π
-
Via Wi-Fi: Connect PC/laptop to wireless SSID πΆ
-
Mobile Hotspot: Use smartphone to share cellular data π±
B. IP Configuration π·️
-
Automatic (DHCP): Router assigns IP, subnet mask, gateway automatically ✅
-
Manual (Static IP): You assign:
-
IP Address: Unique identifier (e.g., 192.168.1.10)
-
Subnet Mask: Usually 255.255.255.0
-
Default Gateway: Router IP (e.g., 192.168.1.1)
-
DNS Server: IP to resolve domain names (e.g., 8.8.8.8 for Google DNS)
-
Windows:
-
Control Panel → Network & Sharing Center → Adapter Settings → IPv4 Properties
Linux:
sudo ip addr add 192.168.1.10/24 dev eth0
sudo ip route add default via 192.168.1.1
2. Internet Troubleshooting Steps π§
Step 1: Check Physical Connection π
-
Ethernet cable connected?
-
Wi-Fi enabled and connected to correct SSID?
-
Modem/router powered on?
Step 2: Check IP Address π·️
-
Windows:
ipconfig -
Linux:
ifconfigorip addr -
Ensure IP is valid (not starting with 169.254 → means no DHCP)
Step 3: Ping Test π
-
Test connectivity:
ping 8.8.8.8
-
If ping works → network okay, problem may be DNS
-
If ping fails → check cables, router, or firewall
Step 4: DNS Check π
-
Windows:
nslookup google.com -
Linux:
dig google.com -
If fails → set DNS to 8.8.8.8 or ISP DNS
Step 5: Traceroute π
-
Shows path to website/server:
tracert google.com (Windows)
traceroute google.com (Linux)
-
Helps identify where connection is failing
Step 6: Browser/Software Check π₯️
-
Clear cache, disable VPN/proxy
-
Test on another browser/device
3. Common Issues and Solutions ⚡
| Issue | Possible Cause | Solution |
|---|---|---|
| No Internet | Modem/router issue | Restart modem/router π |
| IP Conflict | Duplicate IP in LAN | Assign unique IP π·️ |
| Slow Internet | Network congestion, weak Wi-Fi | Change channel, limit devices πΆ |
| DNS Issues | DNS server down | Use 8.8.8.8 / 8.8.4.4 π |
| Wi-Fi not connecting | Wrong password or driver issue | Check credentials, update drivers |
4. Practical Tips π‘
-
Always restart router/modem before troubleshooting ❌π✅
-
Keep network drivers updated π₯️
-
Use cable tester for Ethernet cable faults π
-
Document IP addresses and network settings for future reference π
π‘ Quick Summary:
-
Configure IP → DHCP (auto) or static (manual) π·️
-
Ping test → Check connectivity π
-
DNS check → Resolve domain issues π
-
Traceroute → Identify path failures π
-
Troubleshoot devices, cables, Wi-Fi, drivers π§
Comments
Post a Comment