venkatesan_G02 has asked for the wisdom of the Perl Monks concerning the following question:
I am using Net::TL1 module to access a Network Element thru TL1 interface.
#!C:/Perl/bin/perl.exe use Net::TL1; $obj = new Net::TL1 ({ Host => '172.18.9.140', Port => '32775' }); $obj->Login ({ Target => '172.18.9.140', User => 'provis1', Password => 'password', ctag => 'vg' });
But i am receiving the following error:
Error:Use of uninitialized value $line in pattern match (m//) at C:/Perl/site/lib/Net/
TL1.pm line 253.
Please advice as where and what am i doing wrong.
Thanks!!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::TL1 error - Login error
by toolic (Bishop) on Oct 16, 2009 at 17:26 UTC | |
by venkatesan_G02 (Sexton) on Oct 16, 2009 at 17:30 UTC |