mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-02-18 00:17:39 +01:00
- Refactor specialized docs for conciseness and clarity - Rename files to UPPER_CASE.md convention - Verify accuracy against codebase - Fix broken links
1.1 KiB
1.1 KiB
🌐 Sensor Proxy Network Segmentation
Isolate the proxy to prevent lateral movement.
🚧 Zones
- Pulse App: Connects to Proxy via Unix socket (local).
- Sensor Proxy: Outbound SSH to Proxmox nodes only.
- Proxmox Nodes: Accept SSH from Proxy.
- Logging: Accepts RELP/TLS from Proxy.
🛡️ Firewall Rules
| Source | Dest | Port | Purpose | Action |
|---|---|---|---|---|
| Pulse App | Proxy | unix |
RPC Requests | Allow (Local) |
| Proxy | Nodes | 22 |
SSH (sensors) | Allow |
| Proxy | Logs | 6514 |
Audit Logs | Allow |
| Any | Proxy | 22 |
SSH Access | Deny (Use Bastion) |
| Proxy | Internet | any |
Outbound | Deny |
🔧 Implementation (iptables)
# Allow SSH to Proxmox
iptables -A OUTPUT -p tcp -d <PROXMOX_SUBNET> --dport 22 -j ACCEPT
# Allow Log Forwarding
iptables -A OUTPUT -p tcp -d <LOG_HOST> --dport 6514 -j ACCEPT
# Drop all other outbound
iptables -P OUTPUT DROP
🚨 Monitoring
- Alert on outbound connections to non-whitelisted IPs.
- Monitor
pulse_proxy_limiter_rejects_totalfor abuse.