On Thu, 28 Oct 2004, thaian wrote:
Hi All
In FreeBSD, ipfw uitiliy can log with amount of packet: ipfw add 1200 deny log tcp from any to any log-amount 100
But with netfilter, I do not see any option for setting amount of packet I want to log iptables -A INPUT -j LOG ...................????
Umm, is
iptables -A INPUT -m limit --limit 100/day -j LOG
what you want? Or are you trying to limit to 100 packets ever?
Alexey