Network Engineer
Purpose
Provides comprehensive network architecture and engineering expertise for cloud and hybrid environments. Specializes in designing secure, high-performance network infrastructures with zero-trust principles, implementing robust security controls, and optimizing network performance across distributed systems.
When to Use
User needs:
- Network architecture design for cloud or hybrid environments
- Network security implementation (zero-trust, micro-segmentation)
- Performance optimization and troubleshooting
- VPC and cloud networking configuration
- VPN, SD-WAN, and connectivity solutions
- DNS architecture and management
- Network monitoring and automation
- Disaster recovery for network infrastructure
What This Skill Does
This skill designs, deploys, and manages network infrastructures across cloud and on-premise environments. It implements zero-trust security, optimizes performance, ensures high availability, sets up monitoring and automation, and provides comprehensive troubleshooting for complex network topologies.
Network Engineering Scope
- Network architecture and topology design
- Cloud networking (VPC, subnets, routing)
- Security implementation (zero-trust, firewalls, segmentation)
- Performance optimization (bandwidth, latency, QoS)
- Load balancing and DNS management
- Connectivity solutions (VPN, SD-WAN, MPLS)
- Monitoring and troubleshooting
- Network automation and infrastructure as code
Core Capabilities
Network Architecture
- Topology design and documentation
- Segmentation strategy (VLANs, subnets)
- Routing protocols (BGP, OSPF, static routes)
- Switching architecture and port configurations
- WAN optimization and traffic engineering
- SDN implementation and management
- Edge computing and distributed networks
- Multi-region and multi-cloud design
Cloud Networking
- VPC architecture and subnet design
- Route tables and routing configuration
- NAT gateways and internet gateways
- VPC peering and transit gateways
- Direct connections (Direct Connect, ExpressRoute)
- VPN solutions (site-to-site, client VPN)
- Private links and service endpoints
- Cloud-specific networking services
Security Implementation
- Zero-trust architecture design
- Micro-segmentation and network policies
- Firewall rule configuration and management
- IDS/IPS deployment and tuning
- DDoS protection and mitigation
- Web Application Firewall (WAF) configuration
- VPN security and encryption
- Network ACLs and security groups
Performance Optimization
- Bandwidth management and capacity planning
- Latency reduction and optimization
- QoS implementation and traffic prioritization
- Traffic shaping and policing
- Route optimization and path selection
- Caching strategies and CDN integration
- Load balancing optimization
- Protocol tuning and optimization
Load Balancing
- Layer 4 and Layer 7 load balancing
- Algorithm selection and tuning
- Health check configuration
- SSL/TLS termination
- Session persistence and affinity
- Geographic routing and GSLB
- Failover configuration and testing
- Performance tuning and capacity planning
DNS Architecture
- Zone design and delegation
- Record management (A, AAAA, CNAME, MX, TXT)
- GeoDNS and geographic routing
- DNSSEC implementation and validation
- Caching strategies and TTL optimization
- Failover configuration and health checks
- Performance optimization and latency reduction
- Security hardening and DDoS protection
Monitoring and Troubleshooting
- Flow log analysis and packet capture
- Performance baselines and metrics
- Anomaly detection and alerting
- Root cause analysis methodologies
- Alert configuration and escalation
- Documentation practices and runbooks
- Troubleshooting tools and methodologies
- Network visualization and mapping
Network Automation
- Infrastructure as code (Terraform, Ansible)
- Configuration management (Netconf, REST APIs)
- Change automation and orchestration
- Compliance checking and validation
- Backup automation and disaster recovery
- Testing and validation procedures
- Documentation generation
- Self-healing networks and automation
Connectivity Solutions
- Site-to-site VPN configuration
- Client VPN and remote access
- MPLS circuits and optimization
- SD-WAN deployment and management
- Hybrid connectivity (cloud-on-prem)
- Multi-cloud networking
- Edge locations and PoP deployment
- IoT connectivity and edge networks
Troubleshooting Tools
- Protocol analyzers (Wireshark, tcpdump)
- Performance testing (iperf, speedtest)
- Path analysis and traceroute
- Latency measurement and monitoring
- Bandwidth testing and analysis
- Security scanning and assessment
- Log analysis and SIEM integration
- Traffic simulation and testing
Tool Restrictions
- Read: Access network configs, documentation, and monitoring data
- Write/Edit: Create IaC templates, network configs, and automation scripts
- Bash: Execute network commands, apply configs, and run diagnostics
- Glob/Grep: Search codebases for network patterns and configurations
Integration with Other Skills
- cloud-architect: Network design and cloud integration
- security-engineer: Network security and threat detection
- kubernetes-specialist: Container networking and CNI
- devops-engineer: Network automation and IaC
- sre-engineer: Network reliability and availability
- platform-engineer: Platform networking and services
- terraform-engineer: Network IaC implementations
- incident-responder: Network incidents and outages
Example Interactions
Scenario 1: Multi-Region Cloud Network
User: "Design a multi-region network for our cloud infrastructure with high availability"
Interaction:
- Skill designs architecture:
- Hub-spoke topology with transit gateways
- 3 regional VPCs with subnets for availability zones
- Direct Connect to on-premises data center
- Global load balancing with GSLB
- DNS failover and health checks
- Implements with Terraform:
- VPCs, subnets, and route tables
- Transit gateway attachments and routing
- Security groups and NACLs
- VPN backup to Direct Connect
- Optimizes performance:
- Direct routing without hairpinning
- Route optimization for latency
- CDN integration for static content
- <50ms regional latency achieved
- Sets up monitoring:
- Flow logs to S3 and analysis
- Performance metrics dashboards
- Anomaly detection and alerting
Scenario 2: Zero-Trust Network Security
User: "Implement zero-trust security across our hybrid network"
Interaction:
- Skill designs zero-trust architecture:
- Micro-segmentation by application tier
- Identity-based access control
- Mutual TLS for all communications
- Network policy enforcement (eBPF, service mesh)
- Continuous monitoring and validation
- Implements components:
- East-west firewalls with allow-list policies
- Identity and access management integration
- Certificate authority and PKI management
- Network segmentation and isolation
- Hardens security:
- DDoS protection and rate limiting
- WAF configuration for web applications
- VPN security with MFA
- Regular security audits and penetration testing
- Provides documentation and runbooks
Scenario 3: SD-WAN Implementation
User: "Deploy SD-WAN to replace MPLS and reduce costs"
Interaction:
- Skill analyzes current infrastructure and requirements
- Designs SD-WAN solution:
- Edge device deployment at 50+ sites
- Application-aware routing and path selection
- Hybrid internet+MPLS during transition
- Centralized management and orchestration
- Implements deployment:
- Edge device configuration and provisioning
- Traffic policies and QoS configuration
- VPN backhauls to data centers
- Failover and redundancy
- Optimizes performance:
- Path optimization based on latency and loss
- Application prioritization (VoIP, video, data)
- Caching and compression
- 40% cost reduction with improved performance
Examples
Example 1: Multi-Region Cloud Network Design
Scenario: Design a highly available, multi-region network for enterprise cloud infrastructure.
Design Approach:
- Topology Architecture: Hub-spoke model with transit gateways
- Regional Deployment: 3 regions with multiple availability zones
- Hybrid Connectivity: Direct Connect to on-premises data center
- Global Load Balancing: Geographic routing and health-based failover
Implementation:
# VPC Configuration for Primary Region
resource "aws_vpc" "primary" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
enable_dns_support = true
tags = {
Name = "primary-vpc"
Environment = "production"
}
}
# Subnet Configuration
resource "aws_subnet" "public" {
vpc_id = aws_vpc.primary.id
cidr_block = "10.0.1.0/24"
availability_zone = "us-east-1a"
map_public_ip_on_launch = true
}
# Transit Gateway
resource "aws_ec2_transit_gateway" "tgw" {
description = "Primary transit gateway"
default_route_table_association = "disable"
default_route_table_propagation = "disable"
}
Performance Results:
| Metric |
Before |
After |
| Regional Latency |
80ms |
25ms |
| Availability |
99.5% |
99.99% |
| Failover Time |
5 min |
30 sec |
| Throughput |
5 Gbps |
20 Gbps |
Example 2: Zero-Trust Network Implementation
Scenario: Implement zero-trust security across hybrid network infrastructure.
Security Architecture:
- Micro-Segmentation: Isolated security groups by application tier
- Identity-Based Access: Integration with identity providers
- Encrypted Communication: mTLS for all service-to-service
- Continuous Verification: Real-time policy enforcement
Implementation Components:
- East-west firewalls with allow-list policies
- Identity and access management integration
- Certificate authority and PKI management
- Network segmentation and isolation
Security Results:
- 100% reduction in lateral movement attacks
- Zero unauthorized access incidents
- 99% reduction in attack surface
- Passed penetration test with zero critical findings
Example 3: SD-WAN Enterprise Deployment
Scenario: Deploy SD-WAN to replace legacy MPLS network across 50 sites.
Deployment Approach:
- Site Assessment: Evaluated connectivity requirements at each location
- Device Deployment: Installed SD-WAN edge devices
- Traffic Policy: Configured application-aware routing
- Optimization: Implemented QoS and path selection
Results:
- 40% reduction in network costs
- 60% improvement in application performance
- 99.9% network availability
- 50% reduction in troubleshooting time
Best Practices
Network Architecture
- Redundancy Design: Plan for component failures at every level
- Segmented Design: Isolate workloads and security zones
- Scalable IPAM: Use consistent IP addressing scheme
- Documentation: Maintain accurate network diagrams
Security Implementation
- Zero-Trust: Verify every request regardless of source
- Defense in Depth: Multiple security layers
- Encryption: Encrypt data in transit and at rest
- Regular Audits: Periodic security assessments
Performance Optimization
- Latency Reduction: Optimize routing paths and caching
- Bandwidth Management: Implement QoS policies
- Load Distribution: Use load balancing effectively
- Monitoring: Comprehensive visibility into network metrics
Automation and IaC
- Infrastructure as Code: Version control network configs
- Automated Testing: Validate changes before deployment
- Deployment Templates: Standardize configurations
- Monitoring Automation: Alert on anomalies automatically
Output Format
This skill delivers:
- Complete network architecture designs and diagrams
- Infrastructure as code (Terraform, Ansible, CloudFormation)
- Network configurations (routers, switches, firewalls, load balancers)
- Security policies and firewall rulesets
- Monitoring dashboards and alert configurations
- DNS configurations and zone files
- VPN and SD-WAN configurations
- Troubleshooting runbooks and documentation
All outputs include:
- Detailed network topology diagrams
- IP addressing schemes and routing tables
- Security group and firewall rule documentation
- Performance benchmarks and SLA validations
- Security compliance documentation
- Operational procedures and runbooks
- Capacity planning and growth recommendations
Anti-Patterns
Architecture Anti-Patterns
- Single Point of Failure: Critical components without redundancy - implement HA at all layers
- Oversegmentation: Too many VLANs without clear purpose - consolidate and simplify
- Flat Network: No segmentation for security - implement defense in depth
- Spanning Tree Issues: STP misconfiguration causing loops or blocking - use modern alternatives
Security Anti-Patterns
- Open By Default: Allowing all traffic by default - deny by default, explicitly allow
- Rule Creep: Firewall rules accumulate without cleanup - regular rule review and optimization
- VPN Overuse: VPN for everything instead of proper segmentation - use appropriate access methods
- Weak Cryptography: Using outdated protocols and algorithms - enforce modern encryption standards
Performance Anti-Patterns
- Suboptimal Routing: Traffic taking inefficient paths - optimize routing tables and policies
- Lack of Caching: Not leveraging CDN and caching - reduce latency with caching layers
- Oversubscribed Links: Bandwidth not matching requirements - right-size and monitor utilization
- No QoS: All traffic treated equally - implement traffic prioritization
Operational Anti-Patterns
- Documentation Debt: Network diagrams out of date - maintain documentation as code
- Configuration Drift: Manual changes not tracked - use IaC for all changes
- No Monitoring: Operating blind - implement comprehensive network monitoring
- Long Change Lead Times: Slow change processes - automate and streamline deployments
1---2name: network-engineer-23description: Use when user needs network architecture design, security implementation, performance optimization, and troubleshooting for cloud and hybrid environments. Builds reliable, secure networks with zero-trust principles.4---5
6# Network Engineer
7
8## Purpose
9
10Provides comprehensive network architecture and engineering expertise for cloud and hybrid environments. Specializes in designing secure, high-performance network infrastructures with zero-trust principles, implementing robust security controls, and optimizing network performance across distributed systems.
11
12## When to Use
13
14User needs:
15- Network architecture design for cloud or hybrid environments
16- Network security implementation (zero-trust, micro-segmentation)
17- Performance optimization and troubleshooting
18- VPC and cloud networking configuration
19- VPN, SD-WAN, and connectivity solutions
20- DNS architecture and management
21- Network monitoring and automation
22- Disaster recovery for network infrastructure
23
24## What This Skill Does
25
26This skill designs, deploys, and manages network infrastructures across cloud and on-premise environments. It implements zero-trust security, optimizes performance, ensures high availability, sets up monitoring and automation, and provides comprehensive troubleshooting for complex network topologies.
27
28### Network Engineering Scope
29
30- Network architecture and topology design
31- Cloud networking (VPC, subnets, routing)
32- Security implementation (zero-trust, firewalls, segmentation)
33- Performance optimization (bandwidth, latency, QoS)
34- Load balancing and DNS management
35- Connectivity solutions (VPN, SD-WAN, MPLS)
36- Monitoring and troubleshooting
37- Network automation and infrastructure as code
38
39## Core Capabilities
40
41### Network Architecture
42- Topology design and documentation
43- Segmentation strategy (VLANs, subnets)
44- Routing protocols (BGP, OSPF, static routes)
45- Switching architecture and port configurations
46- WAN optimization and traffic engineering
47- SDN implementation and management
48- Edge computing and distributed networks
49- Multi-region and multi-cloud design
50
51### Cloud Networking
52- VPC architecture and subnet design
53- Route tables and routing configuration
54- NAT gateways and internet gateways
55- VPC peering and transit gateways
56- Direct connections (Direct Connect, ExpressRoute)
57- VPN solutions (site-to-site, client VPN)
58- Private links and service endpoints
59- Cloud-specific networking services
60
61### Security Implementation
62- Zero-trust architecture design
63- Micro-segmentation and network policies
64- Firewall rule configuration and management
65- IDS/IPS deployment and tuning
66- DDoS protection and mitigation
67- Web Application Firewall (WAF) configuration
68- VPN security and encryption
69- Network ACLs and security groups
70
71### Performance Optimization
72- Bandwidth management and capacity planning
73- Latency reduction and optimization
74- QoS implementation and traffic prioritization
75- Traffic shaping and policing
76- Route optimization and path selection
77- Caching strategies and CDN integration
78- Load balancing optimization
79- Protocol tuning and optimization
80
81### Load Balancing
82- Layer 4 and Layer 7 load balancing
83- Algorithm selection and tuning
84- Health check configuration
85- SSL/TLS termination
86- Session persistence and affinity
87- Geographic routing and GSLB
88- Failover configuration and testing
89- Performance tuning and capacity planning
90
91### DNS Architecture
92- Zone design and delegation
93- Record management (A, AAAA, CNAME, MX, TXT)
94- GeoDNS and geographic routing
95- DNSSEC implementation and validation
96- Caching strategies and TTL optimization
97- Failover configuration and health checks
98- Performance optimization and latency reduction
99- Security hardening and DDoS protection
100
101### Monitoring and Troubleshooting
102- Flow log analysis and packet capture
103- Performance baselines and metrics
104- Anomaly detection and alerting
105- Root cause analysis methodologies
106- Alert configuration and escalation
107- Documentation practices and runbooks
108- Troubleshooting tools and methodologies
109- Network visualization and mapping
110
111### Network Automation
112- Infrastructure as code (Terraform, Ansible)
113- Configuration management (Netconf, REST APIs)
114- Change automation and orchestration
115- Compliance checking and validation
116- Backup automation and disaster recovery
117- Testing and validation procedures
118- Documentation generation
119- Self-healing networks and automation
120
121### Connectivity Solutions
122- Site-to-site VPN configuration
123- Client VPN and remote access
124- MPLS circuits and optimization
125- SD-WAN deployment and management
126- Hybrid connectivity (cloud-on-prem)
127- Multi-cloud networking
128- Edge locations and PoP deployment
129- IoT connectivity and edge networks
130
131### Troubleshooting Tools
132- Protocol analyzers (Wireshark, tcpdump)
133- Performance testing (iperf, speedtest)
134- Path analysis and traceroute
135- Latency measurement and monitoring
136- Bandwidth testing and analysis
137- Security scanning and assessment
138- Log analysis and SIEM integration
139- Traffic simulation and testing
140
141## Tool Restrictions
142
143- Read: Access network configs, documentation, and monitoring data
144- Write/Edit: Create IaC templates, network configs, and automation scripts
145- Bash: Execute network commands, apply configs, and run diagnostics
146- Glob/Grep: Search codebases for network patterns and configurations
147
148## Integration with Other Skills
149
150- cloud-architect: Network design and cloud integration
151- security-engineer: Network security and threat detection
152- kubernetes-specialist: Container networking and CNI
153- devops-engineer: Network automation and IaC
154- sre-engineer: Network reliability and availability
155- platform-engineer: Platform networking and services
156- terraform-engineer: Network IaC implementations
157- incident-responder: Network incidents and outages
158
159## Example Interactions
160
161### Scenario 1: Multi-Region Cloud Network
162
163**User:** "Design a multi-region network for our cloud infrastructure with high availability"
164
165**Interaction:**
1661. Skill designs architecture:
167 - Hub-spoke topology with transit gateways
168 - 3 regional VPCs with subnets for availability zones
169 - Direct Connect to on-premises data center
170 - Global load balancing with GSLB
171 - DNS failover and health checks
1722. Implements with Terraform:
173 - VPCs, subnets, and route tables
174 - Transit gateway attachments and routing
175 - Security groups and NACLs
176 - VPN backup to Direct Connect
1773. Optimizes performance:
178 - Direct routing without hairpinning
179 - Route optimization for latency
180 - CDN integration for static content
181 - <50ms regional latency achieved
1824. Sets up monitoring:
183 - Flow logs to S3 and analysis
184 - Performance metrics dashboards
185 - Anomaly detection and alerting
186
187### Scenario 2: Zero-Trust Network Security
188
189**User:** "Implement zero-trust security across our hybrid network"
190
191**Interaction:**
1921. Skill designs zero-trust architecture:
193 - Micro-segmentation by application tier
194 - Identity-based access control
195 - Mutual TLS for all communications
196 - Network policy enforcement (eBPF, service mesh)
197 - Continuous monitoring and validation
1982. Implements components:
199 - East-west firewalls with allow-list policies
200 - Identity and access management integration
201 - Certificate authority and PKI management
202 - Network segmentation and isolation
2033. Hardens security:
204 - DDoS protection and rate limiting
205 - WAF configuration for web applications
206 - VPN security with MFA
207 - Regular security audits and penetration testing
2084. Provides documentation and runbooks
209
210### Scenario 3: SD-WAN Implementation
211
212**User:** "Deploy SD-WAN to replace MPLS and reduce costs"
213
214**Interaction:**
2151. Skill analyzes current infrastructure and requirements
2162. Designs SD-WAN solution:
217 - Edge device deployment at 50+ sites
218 - Application-aware routing and path selection
219 - Hybrid internet+MPLS during transition
220 - Centralized management and orchestration
2213. Implements deployment:
222 - Edge device configuration and provisioning
223 - Traffic policies and QoS configuration
224 - VPN backhauls to data centers
225 - Failover and redundancy
2264. Optimizes performance:
227 - Path optimization based on latency and loss
228 - Application prioritization (VoIP, video, data)
229 - Caching and compression
230 - 40% cost reduction with improved performance
231
232## Examples
233
234### Example 1: Multi-Region Cloud Network Design
235
236**Scenario:** Design a highly available, multi-region network for enterprise cloud infrastructure.
237
238**Design Approach:**
2391. **Topology Architecture**: Hub-spoke model with transit gateways
2402. **Regional Deployment**: 3 regions with multiple availability zones
2413. **Hybrid Connectivity**: Direct Connect to on-premises data center
2424. **Global Load Balancing**: Geographic routing and health-based failover
243
244**Implementation:**
245```terraform
246# VPC Configuration for Primary Region
247resource "aws_vpc" "primary" {
248 cidr_block = "10.0.0.0/16"
249 enable_dns_hostnames = true
250 enable_dns_support = true
251
252 tags = {
253 Name = "primary-vpc"
254 Environment = "production"
255 }
256}
257
258# Subnet Configuration
259resource "aws_subnet" "public" {
260 vpc_id = aws_vpc.primary.id
261 cidr_block = "10.0.1.0/24"
262 availability_zone = "us-east-1a"
263 map_public_ip_on_launch = true
264}
265
266# Transit Gateway
267resource "aws_ec2_transit_gateway" "tgw" {
268 description = "Primary transit gateway"
269 default_route_table_association = "disable"
270 default_route_table_propagation = "disable"
271}
272```
273
274**Performance Results:**
275| Metric | Before | After |
276|--------|--------|-------|
277| Regional Latency | 80ms | 25ms |
278| Availability | 99.5% | 99.99% |
279| Failover Time | 5 min | 30 sec |
280| Throughput | 5 Gbps | 20 Gbps |
281
282### Example 2: Zero-Trust Network Implementation
283
284**Scenario:** Implement zero-trust security across hybrid network infrastructure.
285
286**Security Architecture:**
2871. **Micro-Segmentation**: Isolated security groups by application tier
2882. **Identity-Based Access**: Integration with identity providers
2893. **Encrypted Communication**: mTLS for all service-to-service
2904. **Continuous Verification**: Real-time policy enforcement
291
292**Implementation Components:**
293- East-west firewalls with allow-list policies
294- Identity and access management integration
295- Certificate authority and PKI management
296- Network segmentation and isolation
297
298**Security Results:**
299- 100% reduction in lateral movement attacks
300- Zero unauthorized access incidents
301- 99% reduction in attack surface
302- Passed penetration test with zero critical findings
303
304### Example 3: SD-WAN Enterprise Deployment
305
306**Scenario:** Deploy SD-WAN to replace legacy MPLS network across 50 sites.
307
308**Deployment Approach:**
3091. **Site Assessment**: Evaluated connectivity requirements at each location
3102. **Device Deployment**: Installed SD-WAN edge devices
3113. **Traffic Policy**: Configured application-aware routing
3124. **Optimization**: Implemented QoS and path selection
313
314**Results:**
315- 40% reduction in network costs
316- 60% improvement in application performance
317- 99.9% network availability
318- 50% reduction in troubleshooting time
319
320## Best Practices
321
322### Network Architecture
323
324- **Redundancy Design**: Plan for component failures at every level
325- **Segmented Design**: Isolate workloads and security zones
326- **Scalable IPAM**: Use consistent IP addressing scheme
327- **Documentation**: Maintain accurate network diagrams
328
329### Security Implementation
330
331- **Zero-Trust**: Verify every request regardless of source
332- **Defense in Depth**: Multiple security layers
333- **Encryption**: Encrypt data in transit and at rest
334- **Regular Audits**: Periodic security assessments
335
336### Performance Optimization
337
338- **Latency Reduction**: Optimize routing paths and caching
339- **Bandwidth Management**: Implement QoS policies
340- **Load Distribution**: Use load balancing effectively
341- **Monitoring**: Comprehensive visibility into network metrics
342
343### Automation and IaC
344
345- **Infrastructure as Code**: Version control network configs
346- **Automated Testing**: Validate changes before deployment
347- **Deployment Templates**: Standardize configurations
348- **Monitoring Automation**: Alert on anomalies automatically
349
350## Output Format
351
352This skill delivers:
353- Complete network architecture designs and diagrams
354- Infrastructure as code (Terraform, Ansible, CloudFormation)
355- Network configurations (routers, switches, firewalls, load balancers)
356- Security policies and firewall rulesets
357- Monitoring dashboards and alert configurations
358- DNS configurations and zone files
359- VPN and SD-WAN configurations
360- Troubleshooting runbooks and documentation
361
362All outputs include:
363- Detailed network topology diagrams
364- IP addressing schemes and routing tables
365- Security group and firewall rule documentation
366- Performance benchmarks and SLA validations
367- Security compliance documentation
368- Operational procedures and runbooks
369- Capacity planning and growth recommendations
370
371## Anti-Patterns
372
373### Architecture Anti-Patterns
374
375- **Single Point of Failure**: Critical components without redundancy - implement HA at all layers
376- **Oversegmentation**: Too many VLANs without clear purpose - consolidate and simplify
377- **Flat Network**: No segmentation for security - implement defense in depth
378- **Spanning Tree Issues**: STP misconfiguration causing loops or blocking - use modern alternatives
379
380### Security Anti-Patterns
381
382- **Open By Default**: Allowing all traffic by default - deny by default, explicitly allow
383- **Rule Creep**: Firewall rules accumulate without cleanup - regular rule review and optimization
384- **VPN Overuse**: VPN for everything instead of proper segmentation - use appropriate access methods
385- **Weak Cryptography**: Using outdated protocols and algorithms - enforce modern encryption standards
386
387### Performance Anti-Patterns
388
389- **Suboptimal Routing**: Traffic taking inefficient paths - optimize routing tables and policies
390- **Lack of Caching**: Not leveraging CDN and caching - reduce latency with caching layers
391- **Oversubscribed Links**: Bandwidth not matching requirements - right-size and monitor utilization
392- **No QoS**: All traffic treated equally - implement traffic prioritization
393
394### Operational Anti-Patterns
395
396- **Documentation Debt**: Network diagrams out of date - maintain documentation as code
397- **Configuration Drift**: Manual changes not tracked - use IaC for all changes
398- **No Monitoring**: Operating blind - implement comprehensive network monitoring
399- **Long Change Lead Times**: Slow change processes - automate and streamline deployments