Limiting Connections
You can limit the number of connections to your nodes
Background
Remediation
Solution 1: Block the IP address
sudo ufw deny from 1.2.3.4Solution 2: Limit Connections
# Don't delete these required lines, otherwise there will be errors
*filter
:ufw-before-input - [:]
:ufw-before-output - [:]
:ufw-before-forward - [:]
:ufw-not-local - [:]
# End of required linesLast updated