<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: changing ping interval in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623320#M557692</link>
    <description>Hi shiv ,&lt;BR /&gt;&lt;BR /&gt;You can try with -n option for number of ping requests.&lt;BR /&gt;&lt;BR /&gt;# ping hostname -n 5    [ Will ping 5 times ]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In hp-ux B.11.00  the -m option is not there. And gives error.&lt;BR /&gt;&lt;BR /&gt;#ping host05 -n 1 -m 10&lt;BR /&gt;Usage:  ping [-oprv] [-i address] [-t ttl] host [-n count]&lt;BR /&gt;        ping [-oprv] [-i address] [-t ttl] host packet-size [[-n] count]&lt;BR /&gt;----------------------------------------&lt;BR /&gt;&lt;BR /&gt;Where as hp-ux 11i having -m option.&lt;BR /&gt;&lt;BR /&gt;Usage:  ping [-oprv] [-I interval] host [-n count [-m timeout]]&lt;BR /&gt;        ping [-oprv] [-I interval] host packet-size [[-n] count [-m timeout]]&lt;BR /&gt;----------------------------------------&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 13 Sep 2005 06:34:10 GMT</pubDate>
    <dc:creator>Raj D.</dc:creator>
    <dc:date>2005-09-13T06:34:10Z</dc:date>
    <item>
      <title>changing ping interval</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623315#M557687</link>
      <description>When pinging to the servers sometimes i get request timed out response due to slow response of the network. I want to increase the defualt ping interval. &lt;BR /&gt;&lt;BR /&gt;Can someone let me know how to ping to the boxes by changing default time interval ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
      <pubDate>Sun, 11 Sep 2005 17:01:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623315#M557687</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-09-11T17:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: changing ping interval</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623316#M557688</link>
      <description>Hi Shiv:&lt;BR /&gt;&lt;BR /&gt;# ping anyhost -m 25&lt;BR /&gt;&lt;BR /&gt;...changes the default 10-second timeout to 25-seconds&lt;BR /&gt;&lt;BR /&gt;With all respect, the manpages are one of your best friends:&lt;BR /&gt;&lt;BR /&gt;# man 1M ping&lt;BR /&gt;&lt;BR /&gt;...and if you didn't know too look in section 1M you could learn that via:&lt;BR /&gt;&lt;BR /&gt;# whereis ping&lt;BR /&gt;&lt;BR /&gt;...which would return:&lt;BR /&gt;&lt;BR /&gt;ping: /usr/sbin/ping /usr/share/man/man1m.Z/ping.1m&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sun, 11 Sep 2005 17:11:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623316#M557688</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2005-09-11T17:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: changing ping interval</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623317#M557689</link>
      <description>Hi (again) Shiv:&lt;BR /&gt;&lt;BR /&gt;I should have added that if you change the default timeout value (-m) then you MUST specify the '-n' count too.  Of course, the manpages document that :-))&lt;BR /&gt;&lt;BR /&gt;# ping servername -n 1 -m 25&lt;BR /&gt;&lt;BR /&gt;...issues one (-n 1) packet and sets the timeout to 25-seconds (-m).&lt;BR /&gt;&lt;BR /&gt;There is also a '-I interval' which sets the number of seconds between packets.  It defaults to one.  If you thus wanted to ping a server 5-times with 3-seconds between each ping, you would do:&lt;BR /&gt;&lt;BR /&gt;# ping -I 3 servername -n 5&lt;BR /&gt;&lt;BR /&gt;Perhaps this is the "interval" you meant.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sun, 11 Sep 2005 17:31:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623317#M557689</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2005-09-11T17:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: changing ping interval</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623318#M557690</link>
      <description>Hi Shiv&lt;BR /&gt;&lt;BR /&gt;#ping -t is the preferred option when you need to ping for longer intervals. Following link may be of help&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90692/ping.1M.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90692/ping.1M.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Mahesh</description>
      <pubDate>Mon, 12 Sep 2005 03:46:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623318#M557690</guid>
      <dc:creator>Mahesh Kumar Malik</dc:creator>
      <dc:date>2005-09-12T03:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: changing ping interval</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623319#M557691</link>
      <description>hi shiv,&lt;BR /&gt;&lt;BR /&gt;note that with ping, the -m timeout overrides the default timeout value (10 seconds) which                       ping uses to timeout (in seconds) when a host or network is unreachable. This option is valid only with the -n option or when count is specified.  The -m option should not be used with count equal to 0.&lt;BR /&gt;&lt;BR /&gt;The -m option is not effective for reachable hosts or networks.&lt;BR /&gt;&lt;BR /&gt;(extract from man ping)&lt;BR /&gt;&lt;BR /&gt;# ping&lt;BR /&gt;Usage:  ping [-oprv] [-I interval] host [-n count [-m timeout]]&lt;BR /&gt;        ping [-oprv] [-I interval] host packet-size [[-n] count [-m timeout]]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Mon, 12 Sep 2005 03:58:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623319#M557691</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-09-12T03:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: changing ping interval</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623320#M557692</link>
      <description>Hi shiv ,&lt;BR /&gt;&lt;BR /&gt;You can try with -n option for number of ping requests.&lt;BR /&gt;&lt;BR /&gt;# ping hostname -n 5    [ Will ping 5 times ]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In hp-ux B.11.00  the -m option is not there. And gives error.&lt;BR /&gt;&lt;BR /&gt;#ping host05 -n 1 -m 10&lt;BR /&gt;Usage:  ping [-oprv] [-i address] [-t ttl] host [-n count]&lt;BR /&gt;        ping [-oprv] [-i address] [-t ttl] host packet-size [[-n] count]&lt;BR /&gt;----------------------------------------&lt;BR /&gt;&lt;BR /&gt;Where as hp-ux 11i having -m option.&lt;BR /&gt;&lt;BR /&gt;Usage:  ping [-oprv] [-I interval] host [-n count [-m timeout]]&lt;BR /&gt;        ping [-oprv] [-I interval] host packet-size [[-n] count [-m timeout]]&lt;BR /&gt;----------------------------------------&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 06:34:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-ping-interval/m-p/3623320#M557692</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-13T06:34:10Z</dc:date>
    </item>
  </channel>
</rss>

