RE: Telnet module

2004-04-19 Thread Andrew Timberlake-Newell
> Can someone send me an example of how to use the debugging tools "input_log , and or > dump_log" in the Telnet module.  I'm trying to get a telnet to work and it appears > there is a character that I can't match.  Here is an example of one of my telnets > that work: > > my ($file, $tn); > use

RE: Telnet module

2004-04-19 Thread Bullock, Howard A.
This is what I used to debug a Cisco Telnet script.   $session = Net::Telnet::Cisco->new(   Host   => $host,   Errmode    => 'return',   Input_log  => $RootPath . "logs\\". $host . "_input.log",   Output_log => $RootPath . "logs\\". $host . "_output.log",   Dump_log   => $RootPa