Subject: | with Telnet username is optional |
If I am logging in cisco device over telnet with only password and
enable secret (the most basic setup), I get error:
Use of uninitialized value in string ne at
/usr/lib/perl5/site_perl/5.8.8/Net/Appliance/Session/Engine.pm line 109.
Line 109 of Session/Engine.pm is currently as follows:
if ($username ne $self->get_username) {
It should be:
if (defined($self->get_username) && $username ne $self->get_username) {