mirror of
https://github.com/xzcrpw/blackwall.git
synced 2026-05-18 15:35:12 +02:00
28 lines
432 B
TOML
28 lines
432 B
TOML
|
|
# Blackwall Configuration
|
||
|
|
|
||
|
|
[network]
|
||
|
|
interface = "eth0"
|
||
|
|
xdp_mode = "generic"
|
||
|
|
|
||
|
|
[thresholds]
|
||
|
|
entropy_anomaly = 6000
|
||
|
|
|
||
|
|
[tarpit]
|
||
|
|
enabled = true
|
||
|
|
port = 2222
|
||
|
|
base_delay_ms = 100
|
||
|
|
max_delay_ms = 30000
|
||
|
|
jitter_ms = 500
|
||
|
|
|
||
|
|
[ai]
|
||
|
|
enabled = true
|
||
|
|
ollama_url = "http://localhost:11434"
|
||
|
|
model = "llama3.2:3b"
|
||
|
|
fallback_model = "qwen3:1.7b"
|
||
|
|
max_tokens = 512
|
||
|
|
timeout_ms = 30000
|
||
|
|
|
||
|
|
[rules]
|
||
|
|
blocklist = []
|
||
|
|
allowlist = ["127.0.0.1"]
|