http://qs1969.pair.com?node_id=793267


in reply to Re: Telnet Issue
in thread Telnet Issue

I am reposting my code again as per your request.
I have commented the Net::Telnet Object.
#!/usr/bin/perl -w
print "Enter the hostname you want to connect? \n" ;
$hostname = <>;
$telnet = `telnet $hostname `;
$telnet -> waitfor('/Username: $/i');
$telnet -> print('axiom');
$telnet -> waitfor('/Password: $/i');
$telnet -> print('axiom');
$telnet -> waitfor('/\$ $/i');
$telnet -> print('who');
$output = $telnet->waitfor('/\$ $/i');
print $output;
Thanks for your response.

Replies are listed 'Best First'.
Re^3: Telnet Issue
by ramlight (Friar) on Sep 03, 2009 at 19:49 UTC
    As ssandy pointed out in greater detail, this is simply not going to do what you would like it to.
    $telnet = `telnet $hostname `; $telnet -> waitfor('/Username: $/i');
    If you want to script a telnet session, `telnet` isn't going to get you there; you're going to have to find another approach (such as Net::Telnet).

    Perhaps you might want to tell us more about why you decided NOT to use Net::Telnet. Perhaps someone here can help you get it to do what you need.

      Hi guys, Thanks for all your support, the reason why i didnt choose Net::Telnet is i was not having the root access to install the Net::Telnet module. Thats why i tried with this option. Cheers, Jag