in reply to Telnet connection problem

Anonymous Monk,

Take a look at the Net::Telnet documentation:

use Net::Telnet; $telnet=new::Telnet(Timeout=>60,Error=>'die',Prompt=>'/ksh\$ $/i');
should be
use Net::Telnet(); $telnet = new Net::Telnet (Timeout => 60, Error=>'die', Prompt => '/ks +h\$ $/i');

Hope this helps.

Martin

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.