]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/atm-status.cgi
Remove mkinitcpio, klibc and udev (for klibc).
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / atm-status.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2008 Michael Tremer & Christian Schmidt #
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 ###############################################################################
21
22 use strict;
23
24 # enable only the following on debugging purpose
25 #use warnings;
26 #use CGI::Carp 'fatalsToBrowser';
27
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${General::swroot}/header.pl";
31
32 my %color = ();
33 my %mainsettings = ();
34
35 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
36 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
37
38 &Header::showhttpheaders();
39 &Header::openpage($Lang::tr{'status information'}, 1, '');
40 &Header::openbigbox('100%', 'left');
41
42 my @modems = `find /sys/class/atm/*/device 2>/dev/null | cut -d'/' -f5`;
43 foreach (@modems){
44 chomp($_);
45 &Header::openbox('100%', 'left',"ATM MODEM $_ State");
46 my $lines=0;
47 print "<center><table>";
48 my $modem=$_;
49 my @pfile = `grep . /sys/class/atm/$modem/device/* 2>/dev/null`;
50 foreach (@pfile){
51 chomp($_);
52 my $param= `echo $_ | cut -d'/' -f7 | cut -d':' -f1`;
53 my $value= `cat /sys/class/atm/$modem/device/$param`;
54 chomp($param);
55 chomp($value);
56 if (!($param =~"uevent")
57 && !($param =~"modalias")
58 && !($param =~"bInterface")
59 && !($param =~"bAlternateSetting")
60 && !($param =~"bNumEndpoints")
61 && !($param eq "")
62 ) {
63
64 $lines++;
65 if ($lines % 2){
66 print "<tr bgcolor='$color{'color22'}'>";
67 }else{
68 print "<tr bgcolor='$color{'color20'}'>";
69 }
70 print "<td align='left'>$param</td><td align='left'>$value</td> ";
71 }
72 }
73 print "</table><br>\n";
74 &Header::closebox();
75 }
76 &Header::closebigbox();
77 &Header::closepage();