Do not use on any
shared computer
August 30, 2008 12:53am pdt
 
[x]
Attachment Details

Net::Telnet

Tags: perl, telnet
Hi all,

I'm pretty much looking for two things in this particular example.  I'm running a small script which will test if a socket is (22/tcp in this case) is non-responsive or if there is a complete connection refused.  Here's my code so far;

#!/usr/bin/perl -w

use strict;
use Net::Telnet;

my $dump_log='telnet.log';
my $host = 'host';
my $mailer = '/usr/local/sbin/sendmail -t email\@email.com';

my $socket = new Net::Telnet (  Timeout     => 30,
                                Dump_log    => $dump_log,
                                Host        => $host,
                                Input_log   => $dump_log,
                                Output_log  => $dump_log,
                                Port        => 29,
                             );
 
$socket->waitfor('/^SSH.*$/') or mail();

sub mail {
    open(MAIL, "|$mailer");
    print MAIL << "EOF";
From: DataCtr <email\@email.com>
To: DataCtr <email\@email.com>
Subject: host 22/tcp non-responsive.

SSH is not responsive on host.
EOF
    close(MAIL);
}

========================

So if a connection is completely refused, I haven't found a method yet which captures this information so that I may report it.  I get a STDERR which reports that there is a connection refused.  (Note, I used port 29 here to replicate a 100% connection refusal for testing purposes .. in production I'd use port 22 to test ssh).

Also second question .. if the port is hung, it will also report that after the waitfor().  Now I could run the script in crontab every 5 minutes, but I don't wish to receive an email every 5 minutes notifying me that it is hung.  What kind of efficient sanity checking should I run?

I can either a) create a file and unlink it everytime there is a successful socket opened and create one when I can't and see if it exists before mailing.  b)  maybe run the program in an infinite loop using like a sleep(300); value and have it die if the connection is refused and manually restart the program after?

Any suggestions would be appreciated, thanks!

Start your free trial to view this solution
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Question Stats
Zone: Programming
Question Asked By: stevefNYC
Solution Provided By: Tim_Utschig
Participating Experts: 2
Solution Grade: A
Views: 36
Translate:
Loading Advertisement...
 
[+][-]Author Comment by stevefNYC
Author Comment by stevefNYC:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Accepted Solution by Tim_Utschig

Rank: Master

Accepted Solution by Tim_Utschig:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by stevefNYC
Author Comment by stevefNYC:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Expert Comment by kandura

Rank: Sage

Expert Comment by kandura:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080723-EE-VQP-34