My server is being abused by someone with a large number of computers. I noticed they're all running on the same port, so to be clear, I'm getting incoming requests from:
some-ip1:3333 some-ip2:3333 some-ip3:3333 ... And no matter how many IPs I block individually, a new one just keeps coming back but from a new IP but from the same port number. How can I use UFW to block any incoming request from a specific port number, but from any IP address?
ufw deny [port] doesn't work because that blocks people from accessing MY port 3333, and ufw deny in/out [port] seems to do the same thing.