[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[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!

9.0

Net::Telnet

Asked by stevefNYC in Perl Programming Language

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!

 
Related Solutions
Keywords: Net::Telnet
 
Loading Advertisement...
 
[+][-]12/15/05 11:29 AM, ID: 15492885Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Perl Programming Language
Tags: perl, telnet
Sign Up Now!
Solution Provided By: Tim_Utschig
Participating Experts: 2
Solution Grade: A
 
[+][-]12/14/05 07:17 AM, ID: 15482444Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/16/05 06:00 AM, ID: 15497536Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/17/05 04:48 PM, ID: 15505490Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92