From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH v2] display GeoIP information on active network connections Date: Wed, 15 Nov 2017 23:10:43 +0100 Message-ID: <20171115231043.501e6f36.peter.mueller@link38.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5269806916008616577==" List-Id: --===============5269806916008616577== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Display GeoIP information on active network connections in WebUI. Use newly implemented function in /var/ipfire/geoip-functions.pl . Signed-off-by: Peter M=C3=BCller --- html/cgi-bin/connections.cgi | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/html/cgi-bin/connections.cgi b/html/cgi-bin/connections.cgi index 96f09012b..e9e9e335c 100644 --- a/html/cgi-bin/connections.cgi +++ b/html/cgi-bin/connections.cgi @@ -31,6 +31,7 @@ use Switch; require '/var/ipfire/general-functions.pl'; require "${General::swroot}/lang.pl"; require "${General::swroot}/header.pl"; +require "${General::swroot}/geoip-functions.pl"; =20 my $colour_multicast =3D "#A0A0A0"; =20 @@ -379,6 +380,7 @@ print <3D"" 3D"" +   3D"" 3D"" @@ -386,6 +388,7 @@ print <3D"" 3D"" +   3D"" 3D"" @@ -409,10 +412,16 @@ print < $Lang::tr{'source ip and port'} + + $Lang::tr{'country'} + $Lang::tr{'dest ip and port'} + $Lang::tr{'country'} + + $Lang::tr{'download'} /
$Lang::tr{'upload'} @@ -540,6 +549,12 @@ foreach my $line (@conntrack) { my $bytes_in =3D format_bytes($bytes[0]); my $bytes_out =3D format_bytes($bytes[1]); =20 + # enumerate GeoIP information + my $srcccode =3D &GeoIP::lookup($sip_ret); + my $src_flag_icon =3D &GeoIP::get_flag_icon($srcccode); + my $dstccode =3D &GeoIP::lookup($dip_ret); + my $dst_flag_icon =3D &GeoIP::get_flag_icon($dstccode); + # Format TTL $ttl =3D format_time($ttl); =20 @@ -601,6 +616,9 @@ foreach my $line (@conntrack) { $sport_extra + + 3D'$srcccode' + $dip @@ -613,6 +631,9 @@ foreach my $line (@conntrack) { $dport_extra + + 3D'$dstccode' + $bytes_in / $bytes_out --=20 2.13.6 --===============5269806916008616577==--