<?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: Supress screen output while pinging in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054719#M435469</link>
    <description>Thx all. i have proceeded with ping host &amp;gt; /dev/null.</description>
    <pubDate>Mon, 25 Jun 2007 05:49:21 GMT</pubDate>
    <dc:creator>MAYIANAN</dc:creator>
    <dc:date>2007-06-25T05:49:21Z</dc:date>
    <item>
      <title>Supress screen output while pinging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054716#M435466</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;     I need to handle ftp error in my script. what i need is i just want to ping &lt;HOST&gt; and the status of it alone. I don want any screen output while ping. Please Help me out to handle this kind of error.&lt;/HOST&gt;</description>
      <pubDate>Mon, 25 Jun 2007 05:16:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054716#M435466</guid>
      <dc:creator>MAYIANAN</dc:creator>
      <dc:date>2007-06-25T05:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Supress screen output while pinging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054717#M435467</link>
      <description>hi Mayian&lt;BR /&gt;if you are using Broune shell use the following option&lt;BR /&gt;2&amp;gt;&amp;amp;1 or&lt;BR /&gt;you can user &amp;gt;&amp;amp; myerror &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Safar</description>
      <pubDate>Mon, 25 Jun 2007 05:25:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054717#M435467</guid>
      <dc:creator>Safarali</dc:creator>
      <dc:date>2007-06-25T05:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Supress screen output while pinging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054718#M435468</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Send standard error output on /dev/null&lt;BR /&gt;&lt;BR /&gt;commnad args1 2 &amp;gt;/dev/null&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Jun 2007 05:28:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054718#M435468</guid>
      <dc:creator>Fat Scrape</dc:creator>
      <dc:date>2007-06-25T05:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Supress screen output while pinging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054719#M435469</link>
      <description>Thx all. i have proceeded with ping host &amp;gt; /dev/null.</description>
      <pubDate>Mon, 25 Jun 2007 05:49:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054719#M435469</guid>
      <dc:creator>MAYIANAN</dc:creator>
      <dc:date>2007-06-25T05:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Supress screen output while pinging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054720#M435470</link>
      <description>Thx</description>
      <pubDate>Mon, 25 Jun 2007 05:55:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054720#M435470</guid>
      <dc:creator>MAYIANAN</dc:creator>
      <dc:date>2007-06-25T05:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Supress screen output while pinging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054721#M435471</link>
      <description>... a comment even though you have closed your thread...&lt;BR /&gt;&lt;BR /&gt;Even though you're able to ping the remote server, that doesn't mean you would "handle FTP errors".&lt;BR /&gt;&lt;BR /&gt;Instead of doing a ping and check the return code, you might want to actually do a ftp connect test...&lt;BR /&gt;&lt;BR /&gt;Even if you can ping, it might not be an ftp-server available or the ports might be blocked by some firewall.&lt;BR /&gt;Even you're able to connect to the ftp server, you might not be able to login.&lt;BR /&gt;&lt;BR /&gt;This is a fairly simple, but better example for checking:&lt;BR /&gt;&lt;BR /&gt;ftp -in &amp;gt;FTPconnect.log 2&amp;gt;&amp;amp;1 &amp;lt;&lt;EOF_CONNECT&gt;&lt;/EOF_CONNECT&gt;open HOST&lt;BR /&gt;user Username Password&lt;BR /&gt;bye&lt;BR /&gt;EOF_Connect&lt;BR /&gt;&lt;BR /&gt;Then you could grep the file FTPconnect.log for strings like 'Connected' or 'logged in' etc.&lt;BR /&gt;&lt;BR /&gt;/Tor-Arne</description>
      <pubDate>Wed, 27 Jun 2007 12:28:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supress-screen-output-while-pinging/m-p/5054721#M435471</guid>
      <dc:creator>Tor-Arne Nostdal</dc:creator>
      <dc:date>2007-06-27T12:28:34Z</dc:date>
    </item>
  </channel>
</rss>

