Compare VPNs, SSH, GUI, API, and console access so you know which management path the question is describing.
Remote-management questions are trust-path questions. CompTIA wants to know whether you can separate production traffic from management traffic and whether you can choose a safer administrative path than “open the device to the internet and hope for the best.”
Out-of-band: A management path that remains available even if the primary production network path is impaired.
SSH: Secure Shell, an encrypted remote-administration protocol commonly used for secure command-line management.
Management plane: The interfaces and protocols used to administer a device rather than carry ordinary user traffic.
The strongest answers usually separate:
flowchart LR
A["Admin workstation"] --> B["VPN or management jump path"]
B --> C["Management plane of router or switch"]
D["User traffic"] --> E["Data plane forwarding"]
What to notice:
| Access method | Strongest use |
|---|---|
| console | initial setup or recovery when network access is unavailable |
| SSH | secure command-line administration over the network |
| GUI / web management | visual management when exposed carefully and secured properly |
| API | automation or programmatic management |
| VPN | secure path for remote administrators or users into trusted networks |
| out-of-band path | emergency or isolated management independent of production forwarding |
1ip access-list standard MGMT-SOURCES
2 permit 10.20.0.0 0.0.0.255
3
4line vty 0 4
5 transport input ssh
6 access-class MGMT-SOURCES in
What to notice:
SSH is preferred over older insecure remote-management approachesCompTIA often hides the right answer inside one distinction:
Continue with 4. Network Security to move into the next domain.