-
Notifications
You must be signed in to change notification settings - Fork 15
/
sample_config.json
52 lines (52 loc) · 1.36 KB
/
sample_config.json
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
51
52
{
"queue_id": 0,
"markers": {
"pass": 1000,
"drop": 2000
},
"default_policy": "DROP",
"monitored_ports": {
"tcp": [22, 80, 443],
"udp": [],
"ignored_ports": [123],
"honeypot_ports": ["51000-56000","50000-56100", "51000-52000",10,20,30]
},
"policy": {
"drop": {
"countries_whitelist": ["IT", "DE", "CH", "NL"],
"continents_whitelist": ["NA"]
},
"pass": {
"countries_blacklist": ["RU", "BY"],
"continents_blacklist": []
}
},
"blacklist_dump_path" : "/var/tmp/banned_addresses.txt",
"blacklists": [
"https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/dshield_7d.netset",
"https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/alienvault_reputation.ipset",
"https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt",
"https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt",
"https://feodotracker.abuse.ch/downloads/ipblocklist.txt",
"https://sslbl.abuse.ch/blacklist/sslipblacklist.txt"
],
"whitelists": [
"./whitelist.txt"
],
"watches": [
{ "name" : "mail", "cmd": "/usr/share/ipt_geofence/scripts/mail.py" },
{ "name" : "auth", "cmd": "/usr/share/ipt_geofence/scripts/auth.py" }
],
"telegram": {
"bot_token": "",
"chat_id": ""
},
"cmd": {
"ban": "",
"unban": ""
},
"zmq": {
"url": "",
"encryption_key": ""
}
}