--
You received this message because you are subscribed to the Google Groups "mlug-au" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mlug-au+u...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/mlug-au/3eaeec07-1fd9-43d7-85a3-e082e3568ad9%40nerdcruft.net.
Hi Danny,
Not sure if you have already tried this, but if the traffic is
bursty enough you could rate-limit it with iptables, something
like:
```
iptables -A INPUT -p tcp --dport 80 -m connlimit --connlimit-above 3 --connlimit-mask 16 -j DROP
```
Best,
Kevin