Question

Difficulty: HardSecure Network Design and Segmentation

A security architect is reviewing the access control path for remote administrators connecting from an untrusted management subnet to a high-security internal database zone holding regulated financial records. To enforce defense-in-depth and zero-trust principles, traffic must traverse multiple inspection boundaries and transit controls in a precise order. Sequence the security controls and transit points in the correct order that administrative network traffic must navigate from the originating management workstation to the target database server.

  1. 1Administrative traffic initiates from the management subnet and passes through a perimeter firewall performing stateful ingress rule filtering.
  2. 2The administrator authenticates and establishes a multi-factor encrypted management session on a Jump Server (Bastion Host) located in the Management DMZ.
  3. 3Outbound traffic from the Jump Server is evaluated by an internal Next-Generation Firewall (NGFW) enforcing East-West microsegmentation policies and protocol inspection.
  4. 4Traffic arrives at the microsegmented database VLAN switch port enforced by Private VLAN (PVLAN) isolation rules and host-based firewall policy.

Answer

The correct sequence starts at the perimeter firewall filtering incoming management traffic, proceeds to session establishment on the Jump Server in the DMZ, moves through the internal NGFW performing East-West inspection, and finishes at the microsegmented target switch port and host boundary.
In secure network architecture, traffic moving from an outer management zone to an inner critical zone follows a strict transit path: 1) Initial perimeter firewall filtering, 2) Intermediate bastion/jump box session proxying in a DMZ, 3) Internal NGFW microsegmentation and East-West inspection, and 4) Final Layer 2 PVLAN and host-level enforcement.

Step-by-Step Solution

1
Filter ingress connection attempts at the perimeter boundary.
Unsanctioned external traffic is blocked before entering management proxies.
Perimeter firewalls filter initial traffic entering from outer or untrusted administrative networks.
2
Terminate administrative credentials and session handling on a dedicated Jump Server within the DMZ.
Direct connections between management workstations and internal databases are prevented.
Bastion hosts act as authorized intermediate transit points for administrative commands.
3
Inspect inter-zone (East-West) traffic leaving the Jump Server using an internal NGFW.
Application-layer protocols and microsegmentation rules are verified before traffic crosses into internal zones.
Internal firewalls enforce granular policy barriers between DMZ transit hosts and restricted database tiers.
4
Deliver traffic to the destination database server host across Private VLAN (PVLAN) isolated switch ports.
Target server accepts traffic exclusively from the authorized NGFW gateway IP.
Layer 2 PVLAN isolation and endpoint firewalls ensure lateral isolation within the database subnet itself.

Key Concept

Zone Traversal and Network Segmentation Order
Rate this question