SY0-701 Security Architecture Practice Question
Network engineers need to manage switches in a data center from home. The solution must encrypt management traffic, strongly authenticate users, and avoid exposing management ports directly to the internet. Which approach is best?
⚠ Common exam trap
Candidates often think SSH alone (Option B) is sufficient because it encrypts traffic, but they overlook the requirement to avoid exposing management ports directly to the internet, which is a critical security design principle tested in SY0-701.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Connect through a VPN to a bastion host, then use SSH to the switches.
It combines a VPN (which encrypts all traffic and provides strong authentication) with a bastion host (a hardened jump server) to avoid exposing switch management interfaces directly to the internet. SSH then provides encrypted, authenticated access to the switches from the bastion host, meeting all three requirements: encryption, strong authentication, and no direct internet exposure.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Telnet to the switches over a router port-forward rule.
Why it's wrong here
Telnet over a router port-forward rule is dangerously insecure because Telnet transmits all data, including login credentials and configuration commands, in cleartext across the network. An attacker who captures the traffic can easily retrieve the enable password and silently alter the switch configuration. Additionally, exposing the Telnet service (TCP 23) to the internet via a port-forward increases the attack surface, making the switch discoverable and vulnerable to brute-force and protocol-level attacks. Even if source IP restrictions are applied, the lack of encryption and the permanent availability of the service remain severe flaws.
- ✗
SSH directly to the switches from the internet using password-only authentication.
Why it's wrong here
While SSH encrypts the session and protects against eavesdropping, allowing direct SSH access to the switch from the internet means the management interface is continuously exposed to the entire internet. Password-only authentication relies solely on a shared secret, making the system vulnerable to online password guessing, credential stuffing, and dictionary attacks, especially if weak or reused passwords are in place. Direct internet exposure also violates the principle of least exposure and eliminates the opportunity for centralized monitoring and control, whereas a VPN plus bastion host provides necessary defense in depth.
- ✗
Use SNMPv2c with restricted source IP addresses.
Why it's wrong here
SNMPv2c is fundamentally insecure for administrative access because it uses community strings as a plaintext shared secret, transmitted without encryption. An attacker who sniffs the community string gains full read-write access to switch management information, and these strings are often weak, never rotated, and not tied to individual users. Restricting source IP addresses only blocks obvious unauthorized sources but does nothing to mitigate sniffing, community-string guessing, or the lack of accountability. Furthermore, SNMPv2c is designed for monitoring and configuration retrieval, not interactive commands, so it cannot replace the secure administrative session that SSH through a bastion host provides.
- ✓
Connect through a VPN to a bastion host, then use SSH to the switches.
Why this is correct
This is the correct approach because it layers multiple security controls: the VPN establishes an encrypted tunnel and authenticates users before any traffic enters the data center network, effectively hiding the switch management interfaces from public visibility. The bastion host serves as a controlled jump point, ensuring that only authorized administrators can initiate SSH connections to the switches and providing a centralized point for logging, auditing, and additional authentication factors. Using SSH from the bastion to the switches guarantees encryption and integrity, and it allows key-based or multi-factor authentication, resulting in a robust, traceable, and secure management path.
Go deeper
Related to this question
Learn chapter
Network Segmentation and Isolation
Key term
Switch
A switch is a networking device that connects devices on a local area network and uses MAC addresses to forward data only to the intended recipient.
Key term
VPN
A VPN (Virtual Private Network) creates a secure, encrypted tunnel between your device and a remote server, protecting your data and hiding your online activity.
About these practice questions
One of 1,013 original SY0-701 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This SY0-701 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SY0-701 exam.