Back to Blog
Arnošt Havelka

Network Recon

Map out the network using standard commands.

Start Interactive Lesson
Network Recon

Before securing a network, you must understand it. Network reconnaissance is the process of mapping out the landscape—identifying active hosts, routers, and DNS servers.

1. Discovering Hosts (Ping Sweep)

The simplest way to find active devices is to ping them.

Command Prompt
C:\Users\User>ping 192.168.1.1

(Note: Advanced users use loops to ping entire subnets)

2. Mapping the Path (Trace Route)

See how packets travel to a target. This identifies routers and firewalls.

Command Prompt
C:\Users\User>tracert 8.8.8.8

3. Investigating DNS (Nslookup)

Find the IP address behind a domain name (or vice versa).

Try the command

Find the IP of example.com!

Build the command
nslookup
type=mxSearch for Mail Servers (MX records).
type=txtSearch for Text records (SPF/DKIM).
Terminal
C:\Users\User>nslookup google.com 8.8.8.8

Knowledge Check

1 / 2

Which command resolves a domain name to an IP address?

References

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

Up Next

Port Scanning

Identify open ports and active services.