public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* GeoIP Blocked IPs not being logged
@ 2019-02-04 21:08 Rob Brewer
  2019-02-06 17:18 ` Michael Tremer
  0 siblings, 1 reply; 5+ messages in thread
From: Rob Brewer @ 2019-02-04 21:08 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1093 bytes --]

Hi

After adding a few country codes with the GeoIP Configuration page, Geo 
blocked IPs no longer appear in the Firewall Logs.

This might be the intended operation but for me I would like to log these 
blocked IPs and have added a logging rule to /usr/lib/firewall/rules.pl

This is my patch for rules.pl which I have tested on my live IPFire and is 
working OK.

diff -u build/usr/lib/firewall/rules.pl.orig build/usr/lib/firewall/rules.pl
--- build/usr/lib/firewall/rules.pl.orig        2019-02-04 
20:59:34.677143496 +0000
+++ build/usr/lib/firewall/rules.pl     2019-02-04 21:01:59.445137411 +0000
@@ -609,6 +609,8 @@
        # is enabled.
        foreach my $location (@locations) {
                if(exists $geoipsettings{$location} && 
$geoipsettings{$location} eq "on") {
+      # add logging for geoip rwb 4/2/19
+                        run("$IPTABLES -A GEOIPBLOCK -m geoip --src-cc 
$location -j LOG --log-prefix 'GEOIPBLOCK-$location '");
                        run("$IPTABLES -A GEOIPBLOCK -m geoip --src-cc 
$location -j DROP");
                }
        }


Regards

Rob



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-02-14 11:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-04 21:08 GeoIP Blocked IPs not being logged Rob Brewer
2019-02-06 17:18 ` Michael Tremer
2019-02-06 21:48   ` Rob Brewer
2019-02-10 16:07     ` Rob Brewer
2019-02-14 11:14       ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox