-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-example.json
More file actions
50 lines (50 loc) · 1.01 KB
/
config-example.json
File metadata and controls
50 lines (50 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"icebox": {
"name": "icebox1"
},
"log": {
"level": "INFO",
"file": "/var/log/icebox/icebox.log"
},
"iptables": {
"log_file": "/var/log/kern.log"
},
"smtp": {
"sending_enabled": true,
"to": "admin@mycompany.com",
"from": "admin@mycompany.com",
"smtp_server": "email-smtp.us-west-2.amazonaws.com",
"smtp_port": 587,
"smtp_user": "AKIAXXXXXXXXXXX",
"smtp_password": "xxxxxxxxxxxxx",
"tls": true
},
"snowdog": {
"learning": true,
"db_file": "/opt/icebox/snowdog.sqlite",
"alerting": false
},
"alert_filters": [
{
"source": "snowdog",
"subject": "",
"body": "67"
}
],
"icepick": [
{
"name": "HTTPS from PROD to MGMT",
"host": "10.20.30.1",
"port": "443",
"failure_action": "pass",
"success_action": "email"
},
{
"name": "HTTPS from PROD to ISOLATE1",
"host": "10.0.88.1",
"port": "443",
"failure_action": "pass",
"success_action": "email"
}
]
}