summaryrefslogtreecommitdiff
path: root/data/templates/ids/fastnetmon.tmpl
blob: 9d52be90a937a57ec5c5d78c31fc61120b3c2276 (plain)
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
53
54
55
56
# enable this option if you want to send logs to local syslog facility
logging:local_syslog_logging = on

# list of all your networks in CIDR format
networks_list_path = /etc/networks_list

# list networks in CIDR format which will be not monitored for attacks
white_list_path = /etc/networks_whitelist

# Enable/Disable any actions in case of attack
enable_ban = on

## How many packets will be collected from attack traffic
ban_details_records_count = 500

## How long (in seconds) we should keep an IP in blocked state
## If you set 0 here it completely disables unban capability
ban_time = 1900

# Check if the attack is still active, before triggering an unban callback with this option
# If the attack is still active, check each run of the unban watchdog
unban_only_if_attack_finished = on

# enable per subnet speed meters
# For each subnet, list track speed in bps and pps for both directions
enable_subnet_counters = off

{% if mode is vyos_defined('mirror')%}
mirror_afpacket = on
{% endif %}

{% if direction is vyos_defined %}
process_incoming_traffic = {{ 'on' if 'in' in direction else 'off '}}
process_outgoing_traffic = {{ 'on' if 'out' in direction else 'off '}}
{% endif %}

{% for thr, thr_value in threshold.items() %}
{%   if thr is vyos_defined('fps') %}
ban_for_flows = on
threshold_flows = {{ thr_value }}
{%   elif thr is vyos_defined('mbps') %}
ban_for_bandwidth = on
threshold_mbps = {{ thr_value }}
{%   elif thr is vyos_defined('pps') %}
ban_for_pps = on
threshold_pps = {{ thr_value }}
{%   endif %}
{% endfor %}

{% if listen_interface is vyos_defined %}
interfaces = {{ listen_interface | join(',') }}
{% endif %}

{% if alert_script is vyos_defined %}
notify_script_path = {{ alert_script }}
{% endif %}