|
Depending on the extent of the bugs this might or might not be useful - but you could use firewall rules to limit the number of connections allowed in (or out, depending on what would make more sense for you). Depending on your OS you will have different options available to you, but on FreeBSD with IPFW you'd look at doing something like this: From man ipfw: To limit the number of connections a user can open you can use the fol- lowing type of rules: ipfw add allow tcp from my-net/24 to any setup limit src-addr 10 ipfw add allow tcp from any to me setup limit src-addr 4 The former (assuming it runs on a gateway) will allow each host on a /24 network to open at most 10 TCP connections. The latter can be placed on a server to make sure that a single client does not use more than 4 simultaneous connections. Neil Neely Senior Systems Engineer FRII On Jan 2, 2008, at 3:40 AM, Marco Marongiu wrote:
|