par Fesch » 16 Oct 2003 22:13
Salut,
<BR>pour ceux que cela intéresse, afin d'afficher le volume transféré par l'interface RED, il suffit de coller le code suivant à la ligne 82 (juste après END/;/}) du fichier /home/httpd/cgi-bin/index.cgi
<BR>
<BR>########## Session down/up-load ### BEGIN ##########
<BR># Version originale: <!-- BBCode auto-link start --><a href="http://martybugs.net/smoothwall/bytes.cgi" target="_blank">http://martybugs.net/smoothwall/bytes.cgi</a><!-- BBCode auto-link end -->
<BR>print "<center><font size='2'><br>n";
<BR>
<BR># get PPP stats
<BR>@stats = split(' ', `pppstats | tail -n 1`);
<BR>
<BR># check if we have stats
<BR>if ($stats[0] != 0)
<BR>{
<BR> $bytesin = commify(int($stats[0]/1024));
<BR> $bytesout = commify(int($stats[6]/1024));
<BR> print "<font color='green'><b>$bytesin Kb in</b></font> - <font color='blue'><b>$bytesout Kb out</b></font>";
<BR>}
<BR>print "</font></center>";
<BR>
<BR># function to format numbers with commas at thousand separators
<BR>sub commify
<BR>{
<BR> (my $a = shift) =~ s/G(d{1,3})(?=(?:ddd)+(?:.|$))/$1'/g;
<BR> return $a;
<BR>}
<BR>########## Session down/up-load ### END ##########
Pourquoi lis-tu ceci???