From 23bb0e64745e041d95f80392ee646df5d1437433 Mon Sep 17 00:00:00 2001 From: teastep Date: Sun, 9 Mar 2003 01:33:07 +0000 Subject: [PATCH] Rate-limit NEWNOTSYN logging git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@490 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- STABLE/firewall | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/STABLE/firewall b/STABLE/firewall index efdd3a5be..af76eea43 100755 --- a/STABLE/firewall +++ b/STABLE/firewall @@ -3414,10 +3414,10 @@ initialize_netfilter () { run_user_exit newnotsyn if [ -n "$LOGNEWNOTSYN" ]; then if [ "$LOGNEWNOTSYN" = ULOG ]; then - run_iptables -A newnotsyn -j ULOG + run_iptables -A newnotsyn -j ULOG $LOGPARMS \ --ulog-prefix "Shorewall:newnotsyn:DROP:" else - run_iptables -A newnotsyn -j LOG \ + run_iptables -A newnotsyn -j LOG $LOGPARMS \ --log-prefix "Shorewall:newnotsyn:DROP:" --log-level $LOGNEWNOTSYN fi fi