Networking · Security
Performed a structured security audit of a home network — scanning for devices, identifying risks, and implementing VLAN segmentation for IoT devices.
Network troubleshooting is a core help desk skill. Before diagnosing user network problems, you need to understand what a healthy network looks like — and what a vulnerable one looks like. I audited my own home network to build this foundational awareness.
Used Nmap to scan the local subnet and identify every connected device:
$ nmap -sn 192.168.1.0/24
Starting Nmap 7.94 ...
Nmap scan report for 192.168.1.1 — Router (TP-Link)
Nmap scan report for 192.168.1.5 — Desktop PC
Nmap scan report for 192.168.1.8 — Smart TV (Samsung)
Nmap scan report for 192.168.1.12 — Smart Thermostat
Nmap scan report for 192.168.1.15 — Unknown device
# 18 hosts total discovered
Cross-referenced each device and flagged three risk categories:
Ran a 10-minute Wireshark capture to identify anomalous traffic. Observed the smart TV making periodic connections to Samsung telemetry servers — expected behavior, but documented as a baseline.