AZ-700 Azure Network Engineer Study Guide: Master Azure Networking Solutions
The AZ-700 certification has become essential for Azure professionals focused on network infrastructure. This exam validates your ability to design, implement, and manage sophisticated networking solutions across Azure and hybrid environments. Whether you're advancing your cloud career or specializing in network architecture, understanding the AZ-700 exam structure and content domains will significantly improve your preparation strategy.
Understanding the AZ-700 Exam
What Is AZ-700?
The Azure Network Engineer Associate certification (AZ-700) measures your competency in designing and implementing Azure networking solutions. This associate-level certification focuses on core networking concepts applied specifically to Azure's ecosystem. Candidates must demonstrate hands-on experience with virtual networking, routing protocols, security configurations, and hybrid connectivity options.
The passing score for AZ-700 is 700 out of 1000 points. The exam typically contains 40-60 questions in multiple formats, including multiple choice, drag-and-drop, and scenario-based questions. You'll have 120 minutes to complete the assessment.
Who Should Take the AZ-700?
This certification targets several professional roles:
- Network Engineers implementing cloud infrastructure
- Infrastructure Architects designing Azure solutions
- Cloud Administrators managing networking components
- Azure Solutions Architects focusing on network design
- IT Operations professionals transitioning to cloud networking
If you're already managing on-premises networks and want to expand into Azure, the AZ-700 study guide provides a structured learning path. This exam complements the AZ-104 Azure Administrator certification and often precedes more specialized networking credentials.
Prerequisites for Success
Before pursuing the AZ-700 study guide, you should possess:
- Strong foundational networking knowledge (TCP/IP, DNS, DHCP)
- Understanding of routing protocols and firewall concepts
- Experience with VPNs and network security principles
- Basic Azure knowledge (completing AZ-104 or equivalent experience)
- Hands-on experience configuring network infrastructure
Azure certifications build upon each other. Candidates typically complete AZ-104 first, then pursue networking specializations like AZ-700. This progression ensures you understand Azure fundamentals before diving into networking complexity.
AZ-700 Exam Domains and Weighted Distribution
The AZ-700 exam covers five major domains, each representing different aspects of Azure networking. Understanding the weight distribution helps prioritize your study efforts effectively.
| Domain | Weight | Focus Areas |
|---|---|---|
| Design and implement hybrid networking | 10-15% | VPN, ExpressRoute, site-to-site connectivity |
| Design and implement core networking infrastructure | 20-25% | VNets, subnets, peering, IP addressing |
| Design and implement routing | 25-30% | Route tables, BGP, traffic routing, Azure Route Server |
| Secure and monitor networks | 15-20% | Firewalls, NSGs, DDoS protection, monitoring |
| Design and implement private access to Azure services | 10-15% | Private Link, Private Endpoints, service endpoints |
Routing represents the largest domain at 25-30%, making it critical for exam success. Core networking infrastructure comprises 20-25% of the exam. The AZ-700 study guide should allocate study time proportionally to these domains.
Master These Core Networking Topics
Azure Virtual Networks and Subnetting
Virtual Networks (VNets) form the foundation of Azure networking. You must understand:
- VNet creation with custom address spaces
- Subnet segmentation and IP allocation strategies
- Network Interface Cards (NICs) and multiple IPs per NIC
- VNet-to-VNet connectivity options
- Service endpoints and their role in network architecture
When designing VNets, consider address space carefully. Azure reserves the first four IP addresses and the last address in each subnet for infrastructure use. This reduces usable IPs in smaller subnets. For a /24 subnet (256 addresses), only 251 are available for resources.
VNet peering enables direct connections between virtual networks without traversing the public internet. Peering supports both same-region and cross-region scenarios. Global VNet peering allows networks across different Azure regions to communicate directly at low latency.
Virtual Network Peering and Connectivity
VNet peering comes in two models:
- Mesh peering: Each VNet peers directly with others (suitable for small numbers)
- Hub-and-spoke peering: Central hub VNet connects to multiple spoke VNets
In hub-and-spoke architectures, you can enable "Allow forwarded traffic" to route traffic through the hub. This design centralizes management and security controls. The "Allow gateway transit" option lets spoke VNets use the hub's VPN gateway.
Peering bandwidth is unlimited and doesn't incur data transfer charges. However, peered VNets remain separate networks. Resources don't automatically communicate across peering without proper routing and Network Security Group (NSG) rules.
VPN Gateway Types and Configuration
Azure supports two VPN gateway types, each with distinct characteristics:
Route-based VPNs use routing table entries to direct traffic to IPsec tunnels. They support:
- Multiple connections to different sites
- Dynamic routing with BGP
- More flexible connection scenarios
- Required for all new deployments
Policy-based VPNs (classic deployments) select traffic using policies. They:
- Support only static routing
- Work with specific IP ranges
- Represent legacy configurations
- Aren't recommended for new implementations
Route-based VPNs are the modern standard. When preparing your AZ-700 study guide notes, remember that Azure primarily supports route-based VPNs for all current operations.
VPN gateways require dedicated subnets named "GatewaySubnet". This subnet can't host other resources. VPN gateway size determines throughput: Basic (100 Mbps), Standard (100 Mbps), High Performance (200 Mbps), VpnGw1-5 (varying speeds up to 650 Mbps).
Azure ExpressRoute for Private Connectivity
ExpressRoute provides dedicated, private network connections to Azure without traversing the public internet. This differentiates it fundamentally from VPN connections.
ExpressRoute offerings include:
- ExpressRoute Direct: Direct 10/100 Gbps connections
- ExpressRoute Premium: Global connectivity across all regions
- ExpressRoute Local: Unlimited data transfer within a region
ExpressRoute uses BGP for dynamic routing. You establish private peering for Azure resources and Microsoft peering for Microsoft 365 and Dynamics 365 services.
When designing hybrid connectivity, ExpressRoute provides:
- Consistent network performance
- Private connectivity (no internet exposure)
- Higher bandwidth capacity
- SLA guarantees on availability and latency
ExpressRoute requires involvement from connectivity providers. Setup involves ordering circuits, obtaining authorization keys, and configuring BGP relationships. This differs from VPN gateways, which you configure entirely within Azure.
Load Balancing: Azure Front Door vs Application Gateway vs Load Balancer
Understanding when to use each load balancing option represents a common exam trap. Each serves different purposes:
Azure Load Balancer (Layer 4 / Transport)
- Distributes traffic across VMs in availability sets
- Supports TCP/UDP protocols
- Operates within Azure regions
- Use for internal or external load balancing of backend pools
- No content-based routing
Application Gateway (Layer 7 / Application)
- Routes based on URL paths, hostnames, or HTTP headers
- Supports SSL/TLS termination
- Includes Web Application Firewall (WAF) capabilities
- Regional deployment
- Perfect for microservices architectures with content-based routing
Azure Front Door (Global Layer 7)
- Global content delivery with split-TCP
- Routes across Azure regions and external endpoints
- Provides DDoS protection and WAF
- Supports global load balancing
- Best for worldwide traffic distribution
The exam frequently tests scenario-based questions about load balancer selection. If the question mentions worldwide users, think Front Door. If it describes routing based on URL paths within a region, consider Application Gateway. If it needs simple Layer 4 load balancing within a VNet, choose Load Balancer.
Azure Firewall vs Network Security Groups
Both provide security but at different network layers:
Network Security Groups (NSGs)
- Filter traffic at the NIC or subnet level
- Support allow/deny rules with priorities
- Stateful filtering
- Applied directly to NICs or subnets
- Lower latency and cost
- Limited logging and monitoring
Azure Firewall
- Fully managed firewall service
- Operates at the network level
- Supports Layer 7 filtering (FQDN filtering)
- Centralized management
- High availability built-in
- Premium and Standard SKUs available
Use NSGs for basic network segmentation and per-resource controls. Deploy Azure Firewall when you need sophisticated threat protection, FQDN-based filtering, or centralized security policies across multiple VNets.
Private Link and Private Endpoints
Private Link enables private connectivity to Azure services without exposing them to the public internet.
Private Endpoints create network interfaces within your VNet that connect to Azure services (Azure Storage, SQL Database, Key Vault, etc.). Traffic never traverses the public internet.
Private Link Service allows you to expose your own services via private connectivity.
Configuration involves:
- Creating a private endpoint resource
- Selecting the target Azure service and resource
- Associating it with a subnet in your VNet
- Configuring private DNS zones to resolve service hostnames to private IPs
When a resource uses a private endpoint, DNS queries return the private IP address instead of the public IP. This ensures all traffic stays within the Azure backbone network.
Private endpoints differ from service endpoints. Service endpoints still use public endpoints but route traffic through the Azure backbone. Private endpoints create actual network interfaces within your VNet, providing more granular access control.
DNS Resolution: Azure DNS and Private DNS Zones
Azure DNS hosts your DNS domains on Azure's infrastructure. You configure nameserver records at your domain registrar to point to Azure's authoritative DNS servers.
Private DNS Zones resolve hostnames within your VNet to private IP addresses. Resources outside the VNet cannot query private DNS zones.
Configuration requires:
- Creating a private DNS zone (e.g., contoso.internal)
- Creating DNS records (A, AAAA, CNAME, MX records)
- Linking the zone to VNets for resolution
- Configuring autoregistration for DHCP-assigned IPs
Private DNS zones integrate seamlessly with private endpoints. When you create a private endpoint for Azure Storage, it automatically creates DNS records in your private DNS zone, enabling transparent resolution.
Route Tables and User-Defined Routes
Azure automatically creates system routes for VNet traffic, peered networks, and virtual gateways. User-defined routes override these defaults.
Common use cases for custom routes:
- Forcing traffic through a network appliance (firewall)
- Routing to on-premises networks via VPN
- Directing traffic to third-party security solutions
- Creating hub-and-spoke routing topologies
Route prioritization follows this order:
- Most specific route (longest prefix match)
- User-defined routes
- System routes
- BGP routes
A route to 0.0.0.0/0 (default route) has the lowest priority. More specific routes like 10.1.0.0/24 take precedence.
Security and Monitoring Strategies
Network Security Configuration
Beyond NSGs, implement security through:
- Azure Firewall: Centralized egress filtering and threat protection
- Web Application Firewall (WAF): Protection for Application Gateway and Front Door
- DDoS Protection: Standard (always enabled) or Premium (advanced protection)
- Service endpoints: Restrict Azure service access to specific VNets
- Private endpoints: Ensure services aren't exposed publicly
Monitoring and Diagnostics
Azure provides several monitoring tools:
- Network Watcher: Captures packets, tests connectivity, views topology
- Connection Monitor: Monitors connectivity between resources over time
- Flow Logs: Records traffic allowed and denied by NSGs
- Diagnostic logs: Detailed firewall and gateway activity
- Application Insights: Application-level performance monitoring
For the AZ-700 study guide, understand when to use each tool. Network Watcher troubleshoots connectivity issues. Flow logs identify security policy violations. Diagnostic logs track gateway and firewall operations.
Common Exam Traps and Misconceptions
Trap 1: Confusing Service Endpoints with Private Endpoints
Service endpoints route traffic through Azure's backbone but use public IPs. Private endpoints use private IPs and create actual network interfaces. Both restrict Azure service access, but they work differently.
Trap 2: VPN vs ExpressRoute Selection
VPN connections work over the public internet with encryption. ExpressRoute uses dedicated circuits with guaranteed bandwidth. Exam questions often describe scenarios where ExpressRoute's private nature and performance guarantees matter.
Trap 3: Peering Limitations
VNet peering doesn't allow transitive routing through non-peered networks. If VNet A peers with B, and B peers with C, traffic cannot flow from A to C through B. You need either direct peering or a routing appliance in the hub.
Trap 4: Load Balancer Selection Complexity
The exam frequently tests distinguishing between Load Balancer, Application Gateway, and Front Door. Remember: Load Balancer handles Layer 4, Application Gateway handles Layer 7 within regions, and Front Door handles global Layer 7 distribution.
Trap 5: Gateway Subnet Requirements
VPN and Express Route gateways require dedicated subnets. You cannot deploy other resources in the GatewaySubnet. This /27 or /28 subnet serves only the gateway infrastructure.
Study Plan for AZ-700 Success
Recommended Timeline: 8-10 Weeks
Weeks 1-2: Foundational Review
- Review TCP/IP, routing, and DNS fundamentals
- Understand Azure subscription and resource group structures
- Complete Azure Virtual Networks overview
Weeks 3-4: Core Networking Infrastructure
- Master VNets, subnets, and IP addressing
- Explore VNet peering configurations
- Hands-on: Create and peer multiple VNets
- Study NSG rules and application
Weeks 5-6: Hybrid Connectivity
- Deep dive into VPN Gateway types and configurations
- Study ExpressRoute concepts and peering
- Understand site-to-site and point-to-site VPNs
- Hands-on: Configure VPN gateways and test connectivity
Weeks 7-8: Routing and Load Balancing
- Master route tables and user-defined routes
- Study Azure Route Server and BGP
- Compare all load balancing options
- Hands-on: Create route tables with complex topologies
- Practice scenarios for load balancer selection
Weeks 9-10: Security, Private Access, and Practice
- Master Private Link and Private Endpoints
- Study Azure Firewall and WAF
- Review monitoring and diagnostics tools
- Focus on the AZ-700 study guide practice questions
- Complete full-length practice exams
- Review weak areas identified in practice tests
Hands-On Practice Requirements
Theoretical knowledge isn't sufficient. Spend time in the Azure portal:
- Create VNets with custom address spaces
- Configure VNet peering with traffic testing
- Set up VPN gateways and test connections
- Create and apply NSG rules
- Configure Private Link for Azure services
- Set up custom routes and observe traffic flow
- Deploy Application Gateway with path-based routing
- Monitor traffic with Network Watcher
Hands-on experience builds muscle memory. When exam questions describe scenarios, you should visualize the actual Azure interfaces and configuration steps.
Leverage azureprep.com for Practice Questions
The AZ-700 study guide preparation requires quality practice questions that simulate exam conditions. azureprep.com offers 15,000+ free Azure practice questions across 35 certifications, including comprehensive AZ-700 coverage.
Effective practice strategies include:
- Take full-length practice exams under timed conditions
- Review explanations for both correct and incorrect answers
- Identify weak domains and focus additional study there
- Practice scenario-based questions frequently appearing on the actual exam
- Use the filtering features to target specific domains (routing, security, etc.)
- Retake challenging questions until you understand the concepts
Practice questions serve multiple purposes: identifying knowledge gaps, building test-taking speed, familiarizing you with exam question formats, and building confidence before the actual assessment.
Final Exam Tips
Before Exam Day
- Ensure you have valid government-issued ID
- Test your internet connection and equipment
- Close all unnecessary applications
- Use the official Microsoft Azure documentation as your reference resource
- Get adequate sleep the night before
During the Exam
- Read each question carefully, paying attention to qualifiers like "minimum", "maximum", "most cost-effective"
- Don't rush through scenario-based questions
- Use the review feature to mark difficult questions and return later
- Consider all answer options before selecting
- Remember that some questions test multiple concepts
- Watch for "best practice" versus "technically possible" distinctions
After the Exam
- Review your results to understand your performance
- If you don't pass, identify weak domains using your score report
- Focus your restudy on domains where you scored below 50%
- Consider retaking the exam after 24 hours with focused preparation
Conclusion and Next Steps
The AZ-700 Azure Network Engineer certification validates specialized knowledge in cloud networking. Success requires understanding core concepts like virtual networks, VPN connectivity, routing, security, and private service access