X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=html%2Fcgi-bin%2Findex.cgi;h=6919c8cf5d3dd882afa076236f79abcf3ff1a8ee;hb=31901da1edb401590960558b61e31ddd9fda89c1;hp=b325250a58e9b0d37fe316692028e71856e4050f;hpb=c0c9df130fbb3c5080755822d227277627605196;p=ipfire-2.x.git diff --git a/html/cgi-bin/index.cgi b/html/cgi-bin/index.cgi index b325250a58..6919c8cf5d 100644 --- a/html/cgi-bin/index.cgi +++ b/html/cgi-bin/index.cgi @@ -2,7 +2,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2011 IPFire Team # +# Copyright (C) 2007-2012 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -20,6 +20,7 @@ ############################################################################### use strict; +use Net::Telnet; # enable only the following on debugging purpose #use warnings; @@ -240,19 +241,22 @@ END print < - + + + + + + + + + END + } } +} # Fireinfo if ( ! -e "/var/ipfire/main/send_profile") { @@ -443,6 +496,14 @@ foreach my $file (@files) { } } +# Reiser4 warning +my @files = `mount | grep " reiser4 (" 2>/dev/null`; +foreach my $disk (@files) { + chomp ($disk); + $warnmessage .= "
  • $disk - $Lang::tr{'deprecated fs warn'}
  • \n\n"; +} + + if ($warnmessage) { print "
    $Lang::tr{'network'} - IP - $Lang::tr{'status'} -
    $Lang::tr{'internet'}
    -
    $ipaddr - $connstate +
    $Lang::tr{'network'}IP$Lang::tr{'status'}
    $Lang::tr{'internet'}
    $ipaddr $connstate END if ( $netsettings{'RED_TYPE'} ne "STATIC" && $netsettings{'RED_TYPE'} ne "DHCP" ){ print `/usr/local/bin/dialctrl.pl show`; print < +
    +
    $Lang::tr{'profile'}:
    OpenVPN
    $ovpnip Online + +END + + } + +### +# Print the OpenVPN N2N connection status. +### +if ( -d "${General::swroot}/ovpn/n2nconf") { + my %confighash=(); + + &General::readhasharray("${General::swroot}/ovpn/ovpnconfig", \%confighash); + foreach my $dkey (keys %confighash) { + if (($confighash{$dkey}[3] eq 'net') && (-e "/var/run/$confighash{$dkey}[1]n2n.pid")) { + my $tport = $confighash{$dkey}[22]; + next if ($tport eq ''); + + my $tnet = new Net::Telnet ( Timeout=>5, Errmode=>'return', Port=>$tport); + $tnet->open('127.0.0.1'); + my @output = $tnet->cmd(String => 'state', Prompt => '/(END.*\n|ERROR:.*\n)/'); + my @tustate = split(/\,/, $output[1]); + + my $display; + my $display_colour = $Header::colourred; + if ( $tustate[1] eq 'CONNECTED') { + $display_colour = $Header::colourgreen; + $display = $Lang::tr{'capsopen'}; + } else { + $display = $tustate[1]; + } + + print < + + $confighash{$dkey}[1] + + $confighash{$dkey}[11] + + + + $display + + +
    $warnmessage
    "; }