Replace [PORT] & [CON_NUM] with respected values.
iptables -I INPUT -p tcp --syn --dport [PORT] -m connlimit --connlimit-above [CON_NUM] --connlimit-mask 0 -j REJECT --reject-with tcp-reset
Replace [PORT] & [CON_NUM] with respected values.
iptables -I INPUT -p tcp --syn --dport [PORT] -m connlimit --connlimit-above [CON_NUM] --connlimit-mask 0 -j REJECT --reject-with tcp-reset
Debian has removed rc.local from its recent releases.
I have created a simple script which adds rc.local back to the system.
You need to run the following command as root:
bash <(curl -s https://www.adminsehow.com/wp-content/uploads/2019/10/rc-local.txt)
or if you are skeptical to run a script from internet, you can create rc-local.txt yourself and run it.
rc-local.txt :
#!/bin/bash echo '[Unit] Description=/etc/rc.local ConditionPathExists=/etc/rc.local [Service] Type=forking ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes SysVStartPriority=99 [Install] WantedBy=multi-user.target' > /etc/systemd/system/rc-local.service echo '#!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. exit 0' > /etc/rc.local chmod +x /etc/rc.local systemctl enable rc-local
Powered by WordPress