From: Rob Brewer <ipfire-devel@grantura.co.uk>
To: development@lists.ipfire.org
Subject: Re: GeoIP Blocked IPs not being logged
Date: Sun, 10 Feb 2019 16:07:42 +0000 [thread overview]
Message-ID: <q3pi8f$q5d$1@tuscan3.grantura.co.uk> (raw)
In-Reply-To: <q3fknj$umf$1@tuscan3.grantura.co.uk>
[-- Attachment #1: Type: text/plain, Size: 548 bytes --]
Hi Michael
Rob Brewer wrote:
>> However, I do not think that this is a bad idea, but it should be
>> configurable on the firewall options page.
>>
> Yes I was thinking that this could be easily select-able with an if
> statement around the LOG line if required.
>
OK I've been working on your suggestion and have added an additional
checkbox to the GeoIP Block of geoip-block.cgi to enable/disable logging.
(patch: geoip-block.cgi)
I have also reworked rules.pl to enable geoip-block logging from geo-
block.cgi.
(patch: rules2.pl)
Rob
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: geoip-block.cgi --]
[-- Type: text/x-patch, Size: 2077 bytes --]
--- /home/rwb/IPFire/ipfire-2.x/build/srv/web/ipfire/cgi-bin/geoip-block.cgi 2019-01-31 19:17:48.948676928 +0000
+++ /home/rwb/IPFire/ipfire-2.x/build/srv/web/ipfire/cgi-bin/geoip-block.cgi.dev 2019-02-10 15:24:57.191920078 +0000
@@ -59,6 +59,13 @@
} else {
$settings{'GEOIPBLOCK_ENABLED'} = "off";
}
+
+ # check if logging is required
+ if (exists $cgiparams{'LOG_ENABLED'}) {
+ $settings{'LOG_ENABLED'} = "on";
+ } else {
+ $settings{'LOG_ENABLED'} = "off";
+ }
# Loop through our locations array to prevent from
# non existing countries or code.
@@ -91,22 +98,41 @@
}
# Checkbox pre-selection.
-my $checked;
+my (%checked,%selected);
if ($settings{'GEOIPBLOCK_ENABLED'} eq "on") {
- $checked = "checked='checked'";
-}
+ $checked{'GEOIPBLOCK_ENABLED'}{$settings{'GEOIPBLOCK_ENABLE'}} = "checked='checked'";
+ }
+
+if ($settings{'LOG_ENABLED'} eq "on") {
+ $checked{'LOG_ENABLED'}{$settings{'LOG_ENABLE'}} = "checked='checked'";
+ }
+
+$checked{'GEOIPBLOCK_ENABLED'}{'off'} = '';
+$checked{'GEOIPBLOCK_ENABLED'}{'on'} = '';
+$checked{'GEOIPBLOCK_ENABLED'}{$settings{'GEOIPBLOCK_ENABLED'}} = "checked='checked'";
+
+
+$checked{'LOG_ENABLED'}{'off'} = '';
+$checked{'LOG_ENABLED'}{'on'} = '';
+$checked{'LOG_ENABLED'}{$settings{'LOG_ENABLED'}} = "checked='checked'";
# Print box to enable/disable geoipblock.
print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
&Header::openbox('100%', 'center', $Lang::tr{'geoipblock'});
+
+# Log enabled checkbox added to enable geoip rules logging
print <<END;
<table width='95%'>
<tr>
<td width='25%' class='base'>$Lang::tr{'geoipblock enable feature'}
- <td><input type='checkbox' name='GEOIPBLOCK_ENABLED' $checked></td>
+ <td><input type='checkbox' name='GEOIPBLOCK_ENABLED' $checked{'GEOIPBLOCK_ENABLED'}{'on'}></td>
</tr>
<tr>
+ <td width='25%' class='base'>$Lang::tr{'log enabled'}
+ <td><input type='checkbox' name='LOG_ENABLED' $checked{'LOG_ENABLED'}{'on'}></td>
+ </tr>
+ <tr>
<td colspan='2'><br></td>
</tr>
</table>
[-- Attachment #3: rules2.pl --]
[-- Type: application/x-perl, Size: 716 bytes --]
next prev parent reply other threads:[~2019-02-10 16:07 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-04 21:08 Rob Brewer
2019-02-06 17:18 ` Michael Tremer
2019-02-06 21:48 ` Rob Brewer
2019-02-10 16:07 ` Rob Brewer [this message]
2019-02-14 11:14 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='q3pi8f$q5d$1@tuscan3.grantura.co.uk' \
--to=ipfire-devel@grantura.co.uk \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox