Add support for MatterMost (MM) service.

This commit is contained in:
2023-01-24 17:42:27 +01:00
parent 9f016b1776
commit 486789c6b5
6 changed files with 273 additions and 62 deletions

View File

@ -338,6 +338,17 @@ forward_http_server_ips=""
http_ports="$standard_http_ports"
# - Mattermost (MM) Service
# -
mm_server_ips="$ext_1_ip"
forward_mm_server_ips=""
# - UDP Ports IN and OUT used by MM Servive
# -
mm_udp_ports_in="$stansard_mattermost_udp_ports_in"
mm_udp_ports_out="$stansard_mattermost_udp_ports_out"
# - Mail SMTP Server
# -
smtpd_ips=""
@ -636,6 +647,40 @@ create_traffic_counter=true
create_iperf_rules=true
# -------------
# - Protection against ...
# -------------
# - Protection against syn-flooding
# -
protection_against_syn_flooding=true
# - Protection against port scanning
# -
protection_against_port_scanning=true
# - Protection against SSH brute-force attacks
# -
protection_against_ssh_brute_force_attacks=true
# -------------
# - Limit Connections
# -------------
# - Limit connections per source IP
# -
limit_connections_per_source_IP=true
# - Limit RST packets
# -
limit_rst_packets=true
# - Limit new TCP connections per second per source IP
# -
limit_new_tcp_connections_per_seconds_per_source_IP=true
# -------------
# --- Kernel related - Adjust Kernel Parameters (Security/Tuning)
# -------------