mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-21 03:02:09 +00:00
12 lines
611 B
Bash
12 lines
611 B
Bash
#!/bin/bash
|
|
# Add Blocklist.de malicious IP Addresses to Daily Crontab
|
|
# Also IPtables-persistent to save IP addresses upon reboot
|
|
# Added by Alon "ChiefGyk" Ganon
|
|
cp conf/blocklist/sync-fail2ban /etc/cron.daily/sync-fail2ban
|
|
chmod a+x /etc/cron.daily/sync-fail2ban
|
|
time /etc/cron.daily/sync-fail2ban
|
|
echo iptables-persistent iptables-persistent/autosave_v4 boolean true | sudo debconf-set-selections
|
|
echo iptables-persistent iptables-persistent/autosave_v6 boolean true | sudo debconf-set-selections
|
|
apt_install iptables-persistent
|
|
iptables-save > /etc/iptables/rules.v4
|
|
ip6tables-save > /etc/iptables/rules.v6 |