in reply to Re: problems with Net::Telnet (i think)
in thread problems with Net::Telnet (i think)

Per the Net::Telnet documentation, the default Errmode is "die". You can set it to be "warn" or "print" if you'd like in the contructor:
my $obj = Net::Telnet->new(Errmode => 'return');


    --jb