Re: Re: Telnet into Cisco switches
by primus (Scribe) on Jul 11, 2003 at 15:32 UTC
|
thanks for the replies, but i am running into a login error... i tried to do $session->login(Password => $switch->{PASS1}); but doesnt login complaining about a bad password or something... when i do it by hand it works with that password, also there is no username, it just presents you with a password prompt.
does it make a difference if i do:
if ($session->login(Password => $switch->{PASS1}))
{}
of just:
$session->login(Password => $switch->{PASS1});
| [reply] [d/l] [select] |
|
|
I am being lazy for the moment and not looking at the man page for Net::Telnet or Net::Telnet::Cisco.
There is a way to get Net::Telnet to write an audit log of the conversation between your script and the device. If
you invoke that you might get some idea of what is going wrong.
| Peter L. Berghold | Brewer of Belgian Ales |
| Peter@Berghold.Net | www.berghold.net |
| Unix Professional |
| [reply] |
|
|
Yes, look into the dump_log:
dump_log - log all I/O in dump format
$fh = $obj->dump_log;
$fh = $obj->dump_log($fh);
$fh = $obj->dump_log($filename);
"Nothing is sure but death and taxes" I say combine the two and its death to all taxes! | [reply] [d/l] |
|
|
Are there any oddball chars you may need to escape?
~~
naChoZ
| [reply] |
|
|
| [reply] |
|
|
|
|
here is my code, in case i am missing something obvious:
my $session;
$session = Net::Telnet::Cisco->new(Host => $switch->{IP});
$session->login(Password => $switch->{PASS1});
$session->close();
| [reply] [d/l] |
|
|
| [reply] |
|
|
$session->login(Password => $switch->{PASS1});
login needs both username and password.
~~
naChoZ
| [reply] [d/l] |
|
|
$session->login(undef,'password');
because there is no username for the login, just a password, but that did not work. and the router has a prompt
router>
router#
router$
so is that okay? | [reply] [d/l] [select] |
|
|
|
|
well, i think that the login routine they provide should work, i mean in the documentation they state, "All arguments are optional as of v1.05. Some routers don't ask for a username, they start the login conversation with a password request."
so i mean i think it should work just supplying the password.
| [reply] |
|
|
Ah, ok, Didn't catch that. I haven't used it since approx 1.04. Did you try having it print the password to the screen 1st?
~~
naChoZ
| [reply] |
|
|
okay all, i must appologize... but i hope you find this alittle humerous:
turns out the system admin mistyped the password my script was using... silly error.
sorry again
| [reply] |
|
|
well i tried even to hardcode the password in, and still no go...
$session->login(Password => 'password');
| [reply] [d/l] |
|
|
yea... it prints fine to the screen
| [reply] |
|
|
Sorry to beat this horse to death, but I just want to make sure of this, did you surround it so that you could make sure there weren't any extra spaces or chars in it? I usually do something like:
print "-->$foo<--\n";
So if there's a trailing space, for instance, it will output:
-->bar <--
~~
naChoZ
| [reply] [d/l] |
|
|
well, i suppose i could give it a shot, but the file it is being read from has not spaces, "ipaddress,password"
and i chomp that when i read it in to get rid of the newline, also, i tried the password manually, $session->login(Password => 'password');
so i dont know how there could be a space...
| [reply] [d/l] |