I'm currently working on fixing Net::Ping in the development version of Perl. (It is my code that is mentioned above as Net::PingImproved.) There are currently 3 types of ping available: ICMP, TCP, and UDP. ICMP os the most accurate, but you need to be running as "root" or "administrator". On Win9X systems this isn't a problem; it's only a problem for NT systems.
TCP ping didn't previously work in Windows at all, but I've fixed that (i.e. it does work now).
UDP ping is not very accurate, nor does it work on many systems. At this point in time I'd not recommend using UDP ping. Unfortunately, UDP is the default method in the current Net::Ping.
To choose one of the other two protocols, do something like this:
my $p = Net::Ping->new("icmp");
$p->ping("127.0.0.1");
I'll post the current version of Net::Ping on perlmonks later today, so you can download it. Alternatively, search CPAN for Net::Ping::External, which might also suit your needs (that is, it knows how to ping hosts, and works on windows systems.)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.