Thread System-Sound: suche Modul oder... (11 answers)
Opened by polkana at 2004-12-19 12:30

polkana
 2004-12-22 12:59
#50102 #50102
User since
2004-06-18
74 Artikel
BenutzerIn
[Homepage] [default_avatar]
Ja.. Allso die Aufgabe war erfollgreich erledigt!
So kann ich nun mein Netz falls die Störungen kommen sogar hören.
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/local/bin/perl
my $anystablehost = 'stable-dns.org';
my @report = ("0", "0", "0", "0", "0");
open (PING, "/sbin/ping -c 5 $anystablehost|") or die $!;
$x=0;
       while (<PING>) {
               if (/.*time=(.*)\sms$/i) {
                       $x++;
               }
       }
close (PING);
if ($x > 0) {
       #print "Ping successfully tested! Netz is good!\n";
} else {
       foreach my $S (@report) {
               open(SPEAKER, ">/dev/speaker") or die $!;
               print SPEAKER "F P 1 F P 1 F P 1 F P 1 F P 1 F P 1 F P 1 F P 1 F P 1FFF";
               close SPEAKER;
       }
}

Man kann auch die SMS oder Mail sogar abshicken - dann host soll in der Netz sein und ein anderes Host testen und muss dann die "Speaker" weg ...\n\n

<!--EDIT|polkana|1103713472-->

View full thread System-Sound: suche Modul oder...