> Народ, подскажите неопытному человеку. Как в ipfw прописать правило,
>чтобы он например открывал не более 5 активных одновременных соединений к
>одному ip адресу? Или наоборот, чтобы они не могли открыть у
>меня более чем 5 соединений со мной... Спасибо
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.