🌐
Networking
Connectivity, routing, and traffic management
LAN / WAN
Local/Wide Area Network, MPLS
LAN connects devices in a single location (office, data centre). WAN connects LANs across geographic distances. Traditional WANs use MPLS circuits; modern approaches favour SD-WAN with internet underlay.
🏛️ Context: MPLS is expensive but predictable. SD-WAN reduces cost with intelligent routing over broadband. Evaluate hybrid: MPLS for critical traffic, SD-WAN for general connectivity.
DNS
Domain Name System, Route 53, Cloudflare DNS
The internet's phone book — translates human-readable domain names (example.com) to IP addresses. Supports load balancing, failover, and geo-routing through intelligent DNS records.
🏛️ Context: DNS is a critical dependency and attack surface. Use multiple DNS providers for redundancy. Leverage DNS-based traffic management for global load balancing and disaster recovery.
VPN / Private Connectivity
IPSec, WireGuard, Direct Connect, ExpressRoute
Encrypted tunnels over public internet (VPN) or dedicated private links to cloud providers (Direct Connect / ExpressRoute). Private connectivity offers consistent latency and bandwidth guarantees.
🏛️ Context: Direct Connect/ExpressRoute is justified when data transfer volumes make VPN bandwidth insufficient or when latency consistency matters. Plan for redundant circuits.
Load Balancer
L4/L7, ALB, NLB, F5, HAProxy
Distributes traffic across multiple backends. L4 (transport) routes by IP/port. L7 (application) inspects HTTP for content-based routing, URL path routing, and header manipulation.
🏛️ Context: Multi-AZ load balancing is the minimum for production. Use health checks with appropriate thresholds. L7 enables canary deployments and A/B testing at the infrastructure level.
CDN / Edge Network
CloudFront, Cloudflare, Akamai, Fastly
Globally distributed cache that serves content from edge locations close to users. Reduces latency, offloads origin servers, and provides DDoS protection. Modern CDNs also run compute at the edge.
🏛️ Context: CDN is a performance and resilience multiplier. Configure cache invalidation carefully. Edge compute (Cloudflare Workers, Lambda@Edge) enables logic without round-tripping to origin.
Firewall / Network Security
NGFW, Security Groups, NACLs, NSGs
Traffic filtering at network boundaries. Traditional firewalls use rules based on IP/port. Next-gen firewalls (NGFW) add application awareness. Cloud equivalents: Security Groups, NACLs.
🏛️ Context: Microsegmentation is the modern approach — security groups per workload, not per network zone. Default-deny with explicit allow rules. Log all dropped traffic for forensic value.