Use this if
Design resilient network sensor deployments with failover, load balancing, and multi-region architectures.
- Audience
- Platform architects, network engineers, SRE teams
- Typical time
- 15 minutes
公开指南
Design resilient network sensor deployments with failover, load balancing, and multi-region architectures. 受众: Platform architects, network engineers, SRE teams. 典型配置时长: 15 minutes.
Design resilient network sensor deployments with failover, load balancing, and multi-region architectures.
步骤 1
Start here for small environments (<10 Gbps). Verify the sensor is working before adding complexity.
What success looks like
Monitor CPU, memory, and ingestion metrics — upgrade instance type if >80% utilization.
步骤 2
Deploy a primary and standby sensor; failover triggered by health check failure.
What success looks like
Monitoring: CloudWatch alarm on health check status; page on incident.
步骤 3
Deploy multiple sensors and load-balance traffic across them for higher throughput.
What success looks like
RTO: <1 min; RPO: 0 (stateless sensors).
步骤 4
Deploy sensors in each region for local capture and resilience across data center failures.
What success looks like
RPO: 0 (findings streamed in real-time); RTO: <5 min (DNS propagation + app failover).
步骤 5
Before going production, confirm all aspects of your HA design.
What success looks like
Metrics exported to central monitoring (CloudWatch, Datadog, Splunk, etc.).
Demonstration only
This configuration is designed for ease of use. To deploy scanner clients at scale, please plan your deployment architecture accordingly or contact us for enterprise best practices.
AWSTemplateFormatVersion: "2010-09-09"
Description: "Network sensor failover using ASG"
Resources:
SensorASG:
Type: AWS::AutoScaling::AutoScalingGroup
Properties:
MinSize: 1
DesiredCapacity: 1
MaxSize: 1
HealthCheckType: ELB
HealthCheckGracePeriod: 300