CompTIA · CNX-001
CompTIA CloudNetX validates advanced skills in designing and implementing secure, scalable hybrid network architectures across multi-cloud environments. It demonstrates expertise in network security, Zero Trust implementation, hybrid connectivity, and network troubleshooting for experienced network architects.
Practice Questions
598
≈ 6 practice exams
Duration
165 minutes
Passing Score
Pass/Fail
Difficulty
ProfessionalLast Updated
Apr 2026
Use this CNX-001 practice exam to prepare for CompTIA CloudNetX (CNX-001) with realistic questions, detailed explanations, and focused study modes. The practice bank includes 598 questions for CompTIA CNX-001, so you can review the exam steadily instead of relying on one long cram session.
As you practice, pay extra attention to recurring topics such as Network Architecture Design, Hybrid Connectivity (VPNs, SD-WAN, MPLS), Network Security & Zero Trust, Identity & Access Management, and Network Operations & Monitoring. Start with short sessions to identify weak areas, then move into timed quizzes once your accuracy is consistent.
The explanations are especially useful when you want to connect exam wording to the responsibilities and scenarios described in the official certification guidance. Use the free preview first, then unlock the full question bank when you are ready to build a complete study routine.
CompTIA CloudNetX (CNX-001) is a professional-level, vendor-neutral certification launched on February 18, 2025, that validates advanced expertise in designing and implementing secure, scalable network architectures across hybrid and multi-cloud environments. It is CompTIA's most advanced networking credential, positioned above Cloud+ and targeting seasoned professionals who must architect solutions spanning on-premises infrastructure and multiple cloud platforms simultaneously. The certification covers four weighted domains: Network Architecture Design (31%), Network Security (28%), Network Troubleshooting (25%), and Network Operations, Monitoring & Performance (16%), ensuring candidates demonstrate both design-level thinking and hands-on operational competency.
CloudNetX is notable for its emphasis on Zero Trust implementation, Secure Access Service Edge (SASE), software-defined networking, and infrastructure automation—technologies that define modern enterprise hybrid networking. It is also recognized under the DoD Cyber Workforce framework (DoDM 8140.03 and the NICE Framework), making it relevant for government and defense sector professionals. The certification remains valid for three years and requires 75 Continuing Education Units (CEUs) for renewal.
CloudNetX is designed for experienced network professionals who have moved beyond implementation into architecture and design. CompTIA specifically targets individuals serving in roles such as network architect, security architect, enterprise architect, or senior network engineer who are responsible for hybrid cloud connectivity, secure network design, and multi-platform infrastructure strategy.
The certification is best suited for professionals who regularly work across on-premises data centers and cloud environments (AWS, Azure, GCP, or combinations thereof), design Zero Trust and SASE frameworks, lead network automation initiatives, and perform advanced troubleshooting across complex hybrid topologies. It is not intended for early-career IT professionals; the recommended experience baseline assumes a decade of IT work with significant architecture-level responsibility.
CompTIA recommends candidates have at least 10 years of IT experience overall, with a minimum of 5 years specifically in a network architect role working with hybrid cloud environments. There are no mandatory prerequisite certifications, but CompTIA recommends foundational knowledge equivalent to holding Network+, Security+, and Cloud+ certifications before attempting CNX-001.
Practically, candidates should have hands-on familiarity with VPN technologies, SD-WAN, MPLS, BGP/OSPF routing, firewall rule management, Zero Trust Network Access (ZTNA), Identity and Access Management (IAM) solutions including SSO, MFA, and PKI, as well as infrastructure-as-code tooling and network monitoring platforms. Candidates without a strong security background should ensure they are comfortable with microsegmentation, Cloud Access Security Broker (CASB) concepts, and privileged access management before sitting for the exam.
The CNX-001 exam consists of a maximum of 90 questions delivered in a maximum of 165 minutes. Questions are a mix of multiple-choice (single and multiple response) and performance-based questions (PBQs), which simulate real-world hybrid network scenarios requiring hands-on problem-solving rather than recall alone. The exam is available in English and can be taken at a Pearson VUE testing center or via online proctored delivery.
Scoring uses a pass/fail model with no scaled score reported—candidates simply pass or fail. CompTIA has not published a specific numeric passing threshold for CNX-001. The exam version is V1, and the certification is expected to retire approximately three years after the February 2025 launch date, consistent with CompTIA's standard lifecycle policy.
CloudNetX positions certified professionals for senior individual contributor and leadership roles in network and cloud architecture. Target job titles include Network Architect, Security Architect, Enterprise Architect, Cloud Network Engineer, and Network Operations Lead—roles that typically command premium compensation due to the scarcity of professionals with verified multi-cloud, hybrid network design skills. Because the certification is vendor-neutral, it complements rather than competes with vendor-specific credentials (e.g., AWS Advanced Networking, Azure Network Engineer Associate), making it attractive to employers managing heterogeneous environments.
The certification carries formal recognition under the U.S. Department of Defense Cyber Workforce framework (DoDM 8140.03 and NICE Framework), opening doors to defense contractor and federal agency roles that require mapped credential compliance. As enterprise adoption of hybrid and multi-cloud architectures accelerates, the demand for architects who can design secure, Zero Trust-aligned network infrastructure across platforms continues to grow—making CloudNetX a differentiating credential for professionals seeking advancement beyond operational networking into strategic architecture roles.
5 sample questions with answers and explanations. The full bank has 598 questions, enough for 6 full-length practice exams.
Preview — answers shown1. Contoso Ltd. is redesigning their e-commerce platform into microservices. Their public-facing API gateway must route /products/* requests to the catalog service, /cart/* requests to the shopping cart service, and /checkout/* requests to the payment service — all behind a single endpoint. The solution must also support AWS WAF integration for OWASP Top 10 protection and handle WebSocket connections for real-time order status updates. Which load balancer type meets all these requirements? (Select one!)
Explanation
Application Load Balancer is the correct choice because it operates at Layer 7 and provides the complete set of required capabilities: path-based routing rules that direct /products/*, /cart/*, and /checkout/* to different target groups behind a single DNS endpoint; native AWS WAF association for OWASP Top 10 protection including SQL injection and cross-site scripting; and WebSocket support for persistent real-time connections. ALB inspects HTTP content and routes based on URI path, host headers, query strings, and custom headers — features that require Layer 7 awareness. Network Load Balancer operates at Layer 4 and while it does support TLS termination, it lacks the content-inspection capabilities needed for path-based routing and does not integrate with AWS WAF since it cannot parse HTTP request content. Gateway Load Balancer is designed for transparent inline deployment of third-party network appliances using GENEVE encapsulation — it is not intended for application traffic distribution. Classic Load Balancer is a legacy service superseded by ALB and NLB; it lacks path-based routing and has lower performance limits.
2. Northwind Traders is deploying a service mesh using Istio in their Kubernetes cluster to secure inter-service communication. The security architect needs to ensure that all service-to-service communication is encrypted and mutually authenticated without modifying the application source code. After deploying Istio, the architect runs a test and finds that some pods are communicating in plaintext. Which configuration is MOST likely missing? (Select one!)
Explanation
Istio's mutual TLS behavior is controlled by PeerAuthentication policies. By default, Istio operates in PERMISSIVE mode, which means that sidecar proxies accept both plaintext and mTLS traffic. This default allows gradual adoption but results in the behavior described: pods with Istio sidecars injected will use mTLS when communicating with other sidecar-equipped pods, but plaintext connections from pods without sidecars or from external sources are still accepted. Applying a PeerAuthentication policy with mtls.mode set to STRICT configures all sidecar proxies in the policy scope to reject plaintext connections and require valid mutual TLS authentication for all traffic. This is the configuration step required to enforce universal encryption without modifying application code, as the Istio sidecar proxy handles the TLS handshake transparently at the infrastructure layer. Kubernetes NetworkPolicy resources control which pods can communicate at the network level based on selectors and ports, but they do not implement or enforce TLS encryption. NetworkPolicy allows or denies connections but cannot inspect or enforce the encryption state of allowed connections. The Istio ingress gateway configuration controls how external traffic enters the cluster and is separate from inter-service mTLS within the mesh. A missing ingress TLS certificate would affect inbound external traffic, not internal pod-to-pod communication. Application containers do not need TLS library modifications because the entire value proposition of a service mesh is transparent encryption at the infrastructure layer without application changes.
3. Northwind's architecture team is evaluating Zero Trust Network Access to replace their aging SSL VPN infrastructure. Remote employees currently authenticate once to the VPN and gain access to the entire corporate network segment, including financial systems, HR databases, and development environments. Which statements accurately describe how ZTNA improves upon this traditional VPN architecture? (Select two!)
Multiple correct answersExplanation
ZTNA fundamentally changes the access model in two key ways that address the primary weaknesses of traditional VPN. Traditional SSL VPN grants network-level access — once authenticated, users receive an IP address on the corporate network and can attempt to reach any resource within the accessible network segment. ZTNA replaces this with per-application access control through a Policy Enforcement Point: users are granted access only to the specific applications they are authorized for, and each application access decision is evaluated independently. A user authorized for the HR portal cannot reach financial systems because those require a separate authorization decision — the user's network location does not grant implicit access to adjacent systems. ZTNA also implements continuous verification throughout a session. Traditional VPNs authenticate at connection establishment and then trust the session indefinitely, meaning a compromised device or stolen session token provides persistent access. ZTNA's Policy Engine continuously evaluates trust signals including user identity assertions, device health and compliance posture, location, and behavioral patterns, and can revoke access mid-session if trust conditions change. Zero Trust does not eliminate network-layer controls — microsegmentation, security groups, and firewalls remain part of a defense-in-depth strategy; Zero Trust supplements rather than replaces them. ZTNA solutions often use clientless browser-based access or lightweight agents, not traditional thick VPN clients. ZTNA reduces lateral movement risk by restricting reachable network surfaces, not increases it.
4. Fabrikam's compliance team has mandated that all network configuration changes must be traceable to a specific change request, reviewed by a second team member, and automatically tested before applying to production. The network team currently makes changes manually via cloud provider consoles without documentation. Which approach BEST satisfies all compliance requirements with the least ongoing manual effort? (Select one!)
Explanation
A GitOps workflow implemented with IaC in a Git repository satisfies all three compliance requirements with minimal ongoing manual effort. Traceability is inherent in Git — every change is a commit with author, timestamp, message, and linked to a pull request that references the change request. Peer review is enforced by requiring pull request approvals before merge, providing a documented second-person review. Automated testing is handled by CI/CD pipelines that trigger on pull requests, running terraform plan, security policy checks, and integration tests against non-production environments automatically without human intervention. Once established, this workflow reduces manual effort because the process is enforced by tooling rather than procedural compliance. Manual ticketing before console access relies entirely on human discipline and does not prevent undocumented console changes — a determined engineer can still bypass the process. CMDB updates after changes are reactive documentation, not preventive controls — they record what happened but do not enforce review or testing before changes occur. Weekly change review boards introduce significant latency (changes must wait up to a week) and meetings are manual overhead with no automated enforcement of the approved plan.
5. Northwind is implementing security hardening across their cloud infrastructure following CIS Benchmarks. The security team must choose between CIS Level 1 and Level 2 profiles. The environment includes production e-commerce applications requiring 99.95% availability, strict regulatory compliance for PCI-DSS, and sensitivity to performance overhead. Which CIS Benchmark level should be applied and why? (Select one!)
Explanation
CIS Benchmark Level 1 provides basic security hardening with minimal performance or functionality impact, recommended for all systems. CIS Level 2 includes defense-in-depth measures that may reduce functionality or performance, recommended for high-security environments. The optimal approach is to apply Level 1 as the universal baseline, then selectively implement Level 2 controls where they align with security requirements without compromising the 99.95% availability target. PCI-DSS does not explicitly require CIS Level 2, but does require compensating controls which can be met through risk-based implementation. Applying only Level 1 may miss important security controls, while blanket Level 2 may impact application availability.
CompTIA A+ Core 1 (220-1101)
220-1101 · 700 questions
CompTIA A+ Core 2 (220-1102)
220-1102 · 700 questions
CompTIA Cloud+ (CV0-004)
CV0-004 · 700 questions
CompTIA Cybersecurity Analyst+ (CySA+) (CS0-003)
CS0-003 · 700 questions
CompTIA Data+ (DA0-001)
DA0-001 · 700 questions
CompTIA DataAI (DY0-001)
DY0-001 · 600 questions
$17.99
One-time access to this exam