I am trying to ping a IP on HPUX. I am using the commands
ping 15.178.209.120 64 10
and
ping -c 10 15.178.209.110
perl code that i am using is
$Ping = ` ping -c 10 15.178.209.110`;
$ping is empty.
I tried in HPUX also.
It’s not pinging. It’s saying command not there. What is the equivalent command for ping in HPUX
Net::Ping is a core module in perl. If it is a perl solution you are looking for.