A company runs payroll and HR application servers on the same VLAN because a redesign is not possible this quarter. Security wants to reduce lateral movement if one workload is compromised, but the team cannot renumber the environment or add new physical firewalls. Which control best fits the requirement?
Trap 1: Move the servers into a single larger subnet so internal routing is…
Consolidating servers into a single larger subnet does not segment east-west traffic; it actually eliminates any existing Layer 3 boundary, thereby increasing the attack surface for lateral movement rather than reducing it. This approach is tempting because a larger subnet can simplify routing tables and reduce broadcast domain fragmentation, which would be correct if the goal were to improve network performance or reduce administrative overhead, not to contain a breach.
Trap 2: Place the servers behind a network address translation device to…
NAT can hide addressing details, but it does not provide meaningful internal segmentation or limit east-west access between the workloads. An attacker who compromises one host may still reach the other if no filtering exists.
Trap 3: Rely on password rotation and MFA for administrative logins only
Password rotation and MFA strengthen identity authentication, but they do not restrict network traffic between workloads. Even if an attacker cannot use stolen credentials directly, they could exploit a vulnerability in one server and then move laterally to another through unsegmented east-west paths. Microsegmentation enforces traffic rules independent of authentication state, making it the only option here that actually limits post-compromise movement.
- A
Move the servers into a single larger subnet so internal routing is simplified
Why wrong: Consolidating servers into a single larger subnet does not segment east-west traffic; it actually eliminates any existing Layer 3 boundary, thereby increasing the attack surface for lateral movement rather than reducing it. This approach is tempting because a larger subnet can simplify routing tables and reduce broadcast domain fragmentation, which would be correct if the goal were to improve network performance or reduce administrative overhead, not to contain a breach.
- B
Implement microsegmentation with host-based or distributed firewall rules between workloads
Microsegmentation is the best fit when the organization cannot redesign the network but still needs to isolate workloads more tightly. Host-based or distributed firewall rules can restrict east-west traffic between individual servers, even when they share the same VLAN. That reduces lateral movement far better than coarse VLAN-only separation and does not require renumbering the environment.
- C
Place the servers behind a network address translation device to hide their IP addresses
Why wrong: NAT can hide addressing details, but it does not provide meaningful internal segmentation or limit east-west access between the workloads. An attacker who compromises one host may still reach the other if no filtering exists.
- D
Rely on password rotation and MFA for administrative logins only
Why wrong: Password rotation and MFA strengthen identity authentication, but they do not restrict network traffic between workloads. Even if an attacker cannot use stolen credentials directly, they could exploit a vulnerability in one server and then move laterally to another through unsegmented east-west paths. Microsegmentation enforces traffic rules independent of authentication state, making it the only option here that actually limits post-compromise movement.