]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/netother.cgi
web UI: Add graph for connection tracking
[ipfire-2.x.git] / html / cgi-bin / netother.cgi
CommitLineData
ac1cfefa 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
4e481c3a 5# Copyright (C) 2008 Michael Tremer & Christian Schmidt #
70df8302
MT
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
ac1cfefa
MT
21
22use strict;
23
24# enable only the following on debugging purpose
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
27
986e08d9 28require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
4e481c3a 31require "${General::swroot}/graphs.pl";
ac1cfefa 32
4e481c3a
CS
33my %color = ();
34my %mainsettings = ();
35&General::readhash("${General::swroot}/main/settings", \%mainsettings);
36&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
ac1cfefa 37
4e481c3a 38my @pings=();
ac1cfefa 39
4e481c3a
CS
40my @querry = split(/\?/,$ENV{'QUERY_STRING'});
41$querry[0] = '' unless defined $querry[0];
42$querry[1] = 'hour' unless defined $querry[1];
ac1cfefa 43
8ffdc78c
MT
44if ( $querry[0] eq "conntrack") {
45 print "Content-Type: image/png\n\n";
46 binmode(STDOUT);
47 &Graphs::updateconntrackgraph($querry[1]);
48} elsif ( $querry[0] =~ "fwhits"){
4e481c3a
CS
49 print "Content-type: image/png\n\n";
50 binmode(STDOUT);
0c5393e3 51 &Graphs::updatefwhitsgraph($querry[1]);
4e481c3a
CS
52}elsif ( $querry[0] ne ""){
53 print "Content-type: image/png\n\n";
54 binmode(STDOUT);
55 &Graphs::updatepinggraph($querry[0],$querry[1]);
56}else{
ac1cfefa 57
4e481c3a
CS
58 &Header::showhttpheaders();
59 &Header::openpage($Lang::tr{'network traffic graphs others'}, 1, '');
60 &Header::openbigbox('100%', 'left');
61
26eed11e 62 my @pinggraphs = `ls -dA /var/log/rrd/collectd/localhost/ping/ping-*`;
4e481c3a
CS
63 foreach (@pinggraphs){
64 $_ =~ /(.*)\/ping\/ping-(.*)\.rrd/;
65 push(@pings,$2);
ac1cfefa 66 }
ac1cfefa 67
4e481c3a
CS
68 foreach (@pings) {
69 &Header::openbox('100%', 'center', "$_ $Lang::tr{'graph'}");
70 &Graphs::makegraphbox("netother.cgi",$_,"day");
71 &Header::closebox();
72 }
ac1cfefa 73
8ffdc78c
MT
74 &Header::openbox('100%', 'center', $Lang::tr{'connnection tracking'});
75 &Graphs::makegraphbox("netother.cgi", "conntrack", "day");
76 &Header::closebox();
77
d49f6fdc 78 &Header::openbox('100%', 'center', "$Lang::tr{'firewallhits'} $Lang::tr{'graph'}");
4e481c3a
CS
79 &Graphs::makegraphbox("netother.cgi","fwhits","day");
80 &Header::closebox();
443e9cf4
AF
81
82 my $output = '';
4507b3c2
CS
83
84 &Header::openbox('100%', 'left', $Lang::tr{'routing table entries'});
85 $output = `/sbin/ip route show`;
86 $output = &Header::cleanhtml($output,"y");
87 print "<pre>$output</pre>\n";
88 &Header::closebox();
89
fdf3e9a9
PM
90 $output = `/sbin/ip route list table 220`;
91 if ( $output ) {
92 &Header::openbox('100%', 'left', $Lang::tr{'ipsec routing table entries'});
93 $output = &Header::cleanhtml($output,"y");
94 print "<pre>$output</pre>\n";
95 &Header::closebox()
96 }
97
4507b3c2
CS
98 &Header::openbox('100%', 'left', $Lang::tr{'arp table entries'});
99 $output = `/sbin/ip neigh show`;
100 $output = &Header::cleanhtml($output,"y");
101 print "<pre>$output</pre>\n";
102 &Header::closebox();
ac1cfefa 103
4e481c3a
CS
104 &Header::closebigbox();
105 &Header::closepage();
106}