Help for this page

Select Code to Download


  1. or download this
    # Like tcp protocol, but with many hosts
    $p = Net::Ping->new("syn");
    ...
    while (($host,$rtt,$ip) = $p->ack) {
        print "HOST: $host [$ip] ACKed in $rtt seconds.\n";
    }