Back to Blog
Arnošt Havelka

Network Basics

Master Ipconfig, Ping, and Tracert.

Start Interactive Lesson
Network Basics

Every sysadmin needs to know how to diagnose network connectivity. The "Holy Trinity" of network commands are ipconfig (check settings), ping (check connection), and tracert (check path).

1. Ipconfig

Displays your current TCP/IP network configuration.

Try the command

View local network details!

Build the command
ipconfig
Terminal
C:\Users\User>ipconfig /all /flushdns /release

2. Ping

Tests the reachability of a host on an Internet Protocol (IP) network.

Command Prompt
C:\Users\User>ping 8.8.8.8

3. Tracert (Trace Route)

Shows the path packets take to reach a destination. Useful for finding where a connection is breaking.

Command Prompt
C:\Users\User>tracert google.com

Knowledge Check

1 / 3

Which command clears the DNS cache?

References

These documentation links provide authoritative details for the commands used in this article.

Up Next

User Mgmt

Add, remove, and manage user accounts with net user.