Defensive › Module 4 › Lesson 2
Management Plane
Separate management access, strong auth, no WAN admin — on YOUR lab device.
Visual · mgmt_plane
Management plane hardening literacy. YOUR lab router. Original Cyberlium.
Opening
The management plane is how admins become attackers' favorite door — lock YOUR lab door only.
Management plane hardening means dedicated management VLAN or LAN-only access, HTTPS not HTTP, disable Telnet, unique credentials, and no remote admin from internet. Defenders log admin logins and alert on config changes. Cyberlium teaches reading these settings on YOUR lab router — not reconfiguring employer edge firewalls without change ticket or café gateways 'to help.' Next: Firmware Defaults.
1. LAN-only management
Remote admin from WAN should stay disabled on consumer and lab gear unless a written design requires VPN jump first. Document current remote-admin setting on YOUR device.
Changing WAN admin on ISP-owned CPE may violate terms and affect neighbors — stop.
Command guide
Try these commands — LAN-only management
═══ TOOLS & WEBSITES ═══ Browse / read these (authorized learning only — stay in YOUR lab / program scope)
CISA SOHO guidance — https://www.cisa.gov/news-events/news/harden-your-network-home-and-small-business-networks NIST CSF Protect — https://www.nist.gov/cyberframework
═══ INSTALL ═══
Linux (Debian/Ubuntu):
Command — copy this
sudo apt install curl sudo apt install nmap
macOS:
Command — copy this
brew install nmap
Windows: Built-in (PowerShell: Invoke-WebRequest)
Command — copy this
choco install nmap # or download https://nmap.org/download.html
═══ LINUX / macOS ═══
Command — copy this
curl -sS -m 3 -k -I https://192.168.1.1/ 2>/dev/null | head -8 || curl -sS -m 3 -I http://127.0.0.1/ | head -5 nmap -p 80,443,8080 192.168.1.1 2>/dev/null | grep -E 'open|closed' || echo 'Mgmt plane scan on YOUR router only'
Primary tools to practice this lesson: curl, nmap. Reference sites: CISA SOHO guidance (https://www.cisa.gov/news-events/news/harden-your-network-home-and-small-business-networks); NIST CSF Protect (https://www.nist.gov/cyberframework). Run every command in the box — install first, then the usage lines — only on YOUR lab / program scope.
2. Transport and auth
Prefer HTTPS admin, disable Telnet and HTTP if options exist. Replace default admin username on lab device; store password in your notes vault — not Discord.
SNMP community strings like 'public' are defender red flags — read and plan fix on lab only.
3. Change control mirror
Production teams use tickets and backups before mgmt plane changes. Lab mirrors: export config backup from YOUR router before toggling settings.
Ship: mgmt plane checklist for lab device. Next: Firmware Defaults.
4. What you ship: management plane readout for lab device
Remote admin setting, HTTPS/Telnet status, admin username changed yes/no. YOUR device only. chmod 600.
5. What you record before the next lesson
Date. Mgmt plane settings on lab router. File t16-m04-l02-mgmt-plane.txt chmod 600.
6. Wrong vs right: stranger hosts vs YOUR lab hosts
Worked failure — same MSF word, opposite target. Right never needs a café Wi-Fi or classmate laptop.
Wrong
Enable WAN SSH on dorm gateway. Share admin password in class chat.
Right
Read mgmt plane on YOUR lab device. Next: Firmware Defaults.
Mission: management plane readout
1) Record remote admin from WAN (on/off). 2) Note HTTPS vs HTTP/Telnet availability. 3) Confirm admin is not default password on lab device. Never change stranger gateway mgmt settings.
Stuck? Ask Cyberlium AI Mentor
Export config backup before changes — same habit defenders use on production.
Knowledge Check
APPLY: WAN remote admin on a home lab router should usually be:
Multiple choice
Knowledge Check
APPLY: True or False: Telnet for router admin is acceptable on new deployments.
True or False
Knowledge Check
APPLY: SNMP community 'public' indicates:
Multiple choice