<?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: Trying to check port/service avaibility on remote servers via ssh in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909615#M26282</link>
    <description>I'd start using 'nagios' if you've got this large a system/network of systems to monitor.&lt;BR /&gt;&lt;BR /&gt;Once firewall holes and routing is opened up, it makes so much of your administrative life easier.  Include the use of 'nrpe' and 'mrtg' to get the entire picture of how you're network and systems are operating.&lt;BR /&gt;&lt;BR /&gt;If you're network design dictates that certain paths not be fully opened, you can set up slave servers to test areas, and pipe those results through to a master server for centralized monitoring.&lt;BR /&gt;&lt;BR /&gt;In the medium-to-long run, it will be more helpful and less intrusive than a stop-gag of ssh'n tunnels for tests that take microseconds.&lt;BR /&gt;&lt;BR /&gt;To give you an idea, my Office systems :-&lt;BR /&gt;&lt;BR /&gt;Number of systems monitored: 23&lt;BR /&gt;Total number of tests: 307&lt;BR /&gt;&lt;BR /&gt;Types of things monitored:&lt;BR /&gt;Host availability&lt;BR /&gt;SMTP&lt;BR /&gt;POP&lt;BR /&gt;IMAP&lt;BR /&gt;LMTP&lt;BR /&gt;SSH&lt;BR /&gt;DNS&lt;BR /&gt;WWW&lt;BR /&gt;VoIP&lt;BR /&gt;Disk space&lt;BR /&gt;CPU load&lt;BR /&gt;Mail queue sizes&lt;BR /&gt;Process availablity&lt;BR /&gt;User activity&lt;BR /&gt;Database availability&lt;BR /&gt;Database consistancy&lt;BR /&gt;Database mirroring</description>
    <pubDate>Thu, 07 Dec 2006 18:25:11 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2006-12-07T18:25:11Z</dc:date>
    <item>
      <title>Trying to check port/service avaibility on remote servers via ssh</title>
      <link>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909610#M26277</link>
      <description>Hi, I'm doing a script which, from a centralized server, via ssh, it checks using netstat if mail services are listening on various remote-servers. Usually the command is "ssh remote-server netstat -an |grep ip:NN      LISTEN|head -1" where NN is the door number (usually 25).&lt;BR /&gt;The problem is that if the server is busier than usually (or for other reasons maybe) it fails the check and even if service is up I collect an error.&lt;BR /&gt;&lt;BR /&gt;I would like to eliminate the false positives.&lt;BR /&gt;&lt;BR /&gt;Should I use another method, getting info still via ssh? Or you have a success story doing in another way?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Leonardo.</description>
      <pubDate>Thu, 07 Dec 2006 14:00:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909610#M26277</guid>
      <dc:creator>leonardo bianchi quota</dc:creator>
      <dc:date>2006-12-07T14:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to check port/service avaibility on remote servers via ssh</title>
      <link>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909611#M26278</link>
      <description>I really think that you should not use SSH and just use nmap to test if the port is open.</description>
      <pubDate>Thu, 07 Dec 2006 14:33:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909611#M26278</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-12-07T14:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to check port/service avaibility on remote servers via ssh</title>
      <link>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909612#M26279</link>
      <description>Totally agree with Ivan. Using ssh for that is a bit odd.</description>
      <pubDate>Thu, 07 Dec 2006 15:33:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909612#M26279</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2006-12-07T15:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to check port/service avaibility on remote servers via ssh</title>
      <link>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909613#M26280</link>
      <description>Yeah. Try nagios.</description>
      <pubDate>Thu, 07 Dec 2006 15:45:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909613#M26280</guid>
      <dc:creator>George Liu_4</dc:creator>
      <dc:date>2006-12-07T15:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to check port/service avaibility on remote servers via ssh</title>
      <link>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909614#M26281</link>
      <description>Thank you for replies. Well, I've never used nmap, but If I will use nmap, I'll have to enable almost 100 "doors/routing" from the central server to the remote-servers.&lt;BR /&gt;This means some work for me, but if you are sure about nmap I will try...&lt;BR /&gt;&lt;BR /&gt;What do you think?&lt;BR /&gt;&lt;BR /&gt;Leo.</description>
      <pubDate>Thu, 07 Dec 2006 16:20:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909614#M26281</guid>
      <dc:creator>leonardo bianchi quota</dc:creator>
      <dc:date>2006-12-07T16:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to check port/service avaibility on remote servers via ssh</title>
      <link>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909615#M26282</link>
      <description>I'd start using 'nagios' if you've got this large a system/network of systems to monitor.&lt;BR /&gt;&lt;BR /&gt;Once firewall holes and routing is opened up, it makes so much of your administrative life easier.  Include the use of 'nrpe' and 'mrtg' to get the entire picture of how you're network and systems are operating.&lt;BR /&gt;&lt;BR /&gt;If you're network design dictates that certain paths not be fully opened, you can set up slave servers to test areas, and pipe those results through to a master server for centralized monitoring.&lt;BR /&gt;&lt;BR /&gt;In the medium-to-long run, it will be more helpful and less intrusive than a stop-gag of ssh'n tunnels for tests that take microseconds.&lt;BR /&gt;&lt;BR /&gt;To give you an idea, my Office systems :-&lt;BR /&gt;&lt;BR /&gt;Number of systems monitored: 23&lt;BR /&gt;Total number of tests: 307&lt;BR /&gt;&lt;BR /&gt;Types of things monitored:&lt;BR /&gt;Host availability&lt;BR /&gt;SMTP&lt;BR /&gt;POP&lt;BR /&gt;IMAP&lt;BR /&gt;LMTP&lt;BR /&gt;SSH&lt;BR /&gt;DNS&lt;BR /&gt;WWW&lt;BR /&gt;VoIP&lt;BR /&gt;Disk space&lt;BR /&gt;CPU load&lt;BR /&gt;Mail queue sizes&lt;BR /&gt;Process availablity&lt;BR /&gt;User activity&lt;BR /&gt;Database availability&lt;BR /&gt;Database consistancy&lt;BR /&gt;Database mirroring</description>
      <pubDate>Thu, 07 Dec 2006 18:25:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909615#M26282</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2006-12-07T18:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to check port/service avaibility on remote servers via ssh</title>
      <link>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909616#M26283</link>
      <description>Hi Stuart, thank you for your reply, I have some experience with netsaint but not as administrator. What I can say by user side is that it has false positives. Then I don't know if this dipends on configuration tuning..&lt;BR /&gt;I'll try with nagios hoping that this would be more relyable...&lt;BR /&gt;---&lt;BR /&gt;In your post then You entered also another topic I must consider: mrtg. I should start monitoring new RH boxes (mail queue and bytes and others...) I have an old installation on a 6.2 server which cares about these values, but I don't know if cfg file are good for RH3ES...&lt;BR /&gt;&lt;BR /&gt;Two questions: both about nagios and mrtg: their communities are vivid?&lt;BR /&gt;Can I find any documentation/tutorial about my tasks?&lt;BR /&gt;&lt;BR /&gt;Bye,&lt;BR /&gt;&lt;BR /&gt;Leo.</description>
      <pubDate>Fri, 08 Dec 2006 07:13:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/trying-to-check-port-service-avaibility-on-remote-servers-via/m-p/3909616#M26283</guid>
      <dc:creator>leonardo bianchi quota</dc:creator>
      <dc:date>2006-12-08T07:13:40Z</dc:date>
    </item>
  </channel>
</rss>

