If you work in IT support, help desk, desktop support, cloud, cybersecurity or systems administration, networking basics are not optional. This beginner-friendly tutorial explains the core ideas in plain English.
What you will learn
- Understand what an IP address does
- Explain the role of a default gateway
- Understand DNS in simple words
- Use ping as a first troubleshooting step
- Know what to check when a user says โthe internet is not workingโ
Interactive task: Keep a notepad open while reading. After each section, write one example from your own workplace.
1. What is an IP address?
An IP address is like a device address on a network. Your laptop, printer, server, phone and router all need an address so other devices can find them.
Example: if your computer has the IP address 192.168.1.25, it means your device is part of a local private network.
Windows: ipconfig
Linux/macOS: ip addr
2. What is a default gateway?
The default gateway is usually your router. When your computer wants to reach something outside the local network, it sends traffic to the gateway.
Simple idea: IP address = your house address. Gateway = the road out of your neighborhood.
If the gateway is wrong or unreachable, local devices may work but internet access may fail.
3. What is DNS?
DNS converts names into IP addresses. Humans remember google.com; computers connect to IP addresses.
- If DNS works, websites open normally.
- If DNS fails, you may have internet but websites do not open by name.
- A quick test is to ping an IP address and then ping a domain name.
4. First troubleshooting workflow
- Check the network cable or Wi-Fi connection.
- Check if the device has an IP address.
- Ping the default gateway.
- Ping a public IP such as
8.8.8.8. - Ping a domain such as
google.com. - If IP ping works but domain ping fails, suspect DNS.
ping 192.168.1.1
ping 8.8.8.8
ping google.com
5. Real workplace example
A user says: โI can connect to Wi-Fi, but websites are not opening.โ You check IP address, gateway and DNS. If ping 8.8.8.8 works but ping google.com fails, the likely issue is DNS, not Wi-Fi.
Quick check
- What is the purpose of an IP address?
- What device is usually the default gateway?
- What does DNS convert?
- If ping to 8.8.8.8 works but ping to google.com fails, what is the likely issue?
Next steps
- Practice using
ipconfigorip addron your own machine. - Write down your IP address, gateway and DNS server.
- Read the next Linux tutorial to learn basic command-line troubleshooting.
Educational note: This tutorial is for learning purposes. Always test commands and configuration changes carefully in a safe environment before using them on production systems.



