Leser: 1
7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl
use strict;
use warnings;
while(1) {
my @ping = qx/ping host.de/;
print for @ping;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use Net::Ping;
$remotehost = "ir.gend.was";
while(1){
$p = Net::Ping->new("icmp");
if($p->ping($remotehost,1)) {
print "erreichbar\n";
}
else{
print "nicht erreichbar\n";
}
sleep(30);
$p->close();
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use strict; use warnings; use Net::Ping; my $remotehost = "ir.gend.was"; while(1){ my $p = Net::Ping->new("icmp"); if($p->ping($remotehost,1)) { print "erreichbar\n"; } else{ print "nicht erreichbar\n"; } sleep(30); $p->close(); }
7 Einträge, 1 Seite |