<div dir="ltr">Hi,<div><br></div><div>I have one big problem with rancid. I don't get the backup of my switch. </div><div><br></div><div>This switch is: <span style="font-family:monospace;font-size:10px">Ethernet Routing Switch 4548GT-PWR    HW:12       FW:5.3.0.3 </span></div><span style="font-size:10px;font-family:monospace"> SW:v5.7.0.008 BN:08 (c) Avaya Networks</span><div><span style="font-size:10px;font-family:monospace"><br></span></div><div><br></div><div>I have two files, these are: bnrancid and bnlogin</div><div><br></div><div>this is the configuration by bnlogin, it's:</div><div><br></div><div><div>#! /usr/bin/expect --</div><div>##</div><div>## $Id: <a href="http://blogin.in">blogin.in</a>,v 1.50 2009/04/16 21:22:57 heas Exp $</div><div>##</div><div>## @PACKAGE@ @VERSION@</div><div>## Copyright (c) 1997-2009 by Terrapin Communications, Inc.</div><div>## All rights reserved.</div><div>##</div><div>## This code is derived from software contributed to and maintained by</div><div>## Terrapin Communications, Inc. by Henry Kilmer, John Heasley, Andrew Partan,</div><div>## Pete Whiting, Austin Schutz, and Andrew Fort.</div><div>##</div><div>## Redistribution and use in source and binary forms, with or without</div><div>## modification, are permitted provided that the following conditions</div><div>## are met:</div><div>## 1. Redistributions of source code must retain the above copyright</div><div>##    notice, this list of conditions and the following disclaimer.</div><div>## 2. Redistributions in binary form must reproduce the above copyright</div><div>##    notice, this list of conditions and the following disclaimer in the</div><div>##    documentation and/or other materials provided with the distribution.</div><div>## 3. All advertising materials mentioning features or use of this software</div><div>##    must display the following acknowledgement:</div><div>##        This product includes software developed by Terrapin Communications,</div><div>##        Inc. and its contributors for RANCID.</div><div>## 4. Neither the name of Terrapin Communications, Inc. nor the names of its</div><div>##    contributors may be used to endorse or promote products derived from</div><div>##    this software without specific prior written permission.</div><div>## 5. It is requested that non-binding fixes and modifications be contributed</div><div>##    back to Terrapin Communications, Inc.</div><div>##</div><div>## THIS SOFTWARE IS PROVIDED BY Terrapin Communications, INC. AND CONTRIBUTORS</div><div>## ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED</div><div>## TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR</div><div>## PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COMPANY OR CONTRIBUTORS</div><div>## BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR</div><div>## CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF</div><div>## SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS</div><div>## INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN</div><div>## CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)</div><div>## ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE</div><div>## POSSIBILITY OF SUCH DAMAGE.</div><div>#</div><div>#  The expect login scripts were based on Erik Sherk's gwtn, by permission.</div><div>#</div><div># blogin - Bay Networks(Nortel) login</div><div>#</div><div># Unlike the Cisco's, there is no enable function on the Bay's.  Instead</div><div># there are seperate User and Manager accounts.  A 'system' command exists,</div><div># which I am told does nothing.</div><div>#</div><div># The "bcc>" prompt changes to "box#", not "bcc#" after the config command.</div><div>#</div><div> </div><div># Usage line</div><div>set usage "Usage: $argv0 \[-dSV\] \[-autoenable\] \[-noenable\] \[-c command\] \</div><div>\[-Evar=x\] \[-e enable-password\] \[-f cloginrc-file\] \[-p user-password\] \</div><div>\[-s script-file\] \[-t timeout\] \[-u username\] \</div><div>\[-v vty-password\] \[-w enable-username\] \[-x command-file\] \</div><div>\[-y ssh_cypher_type\] router \[router...\]\n"</div><div> </div><div># env(CLOGIN) may contain:</div><div>#       x == do not set xterm banner or name</div><div> </div><div># Password file</div><div>set password_file $env(HOME)/.cloginrc</div><div># Default is to login to the router</div><div>set do_command 0</div><div>set do_script 0</div><div># The default is to automatically enable</div><div>set avenable 0</div><div># The default is that you login non-enabled (tacacs can have you login already</div><div># enabled)</div><div>set avautoenable 0</div><div># The default is to look in the password file to find the passwords.  This</div><div># tracks if we receive them on the command line.</div><div>set do_passwd 1</div><div>set do_enapasswd 0</div><div># Save config, if prompted</div><div>set do_saveconfig 0</div><div> </div><div># Find the user in the ENV, or use the unix userid.</div><div>if {[ info exists env(CISCO_USER) ]} {</div><div>    set default_user $env(CISCO_USER)</div><div>} elseif {[ info exists env(USER) ]} {</div><div>    set default_user $env(USER)</div><div>} elseif {[ info exists env(LOGNAME) ]} {</div><div>    set default_user $env(LOGNAME)</div><div>} else {</div><div>    # This uses "id" which I think is portable.  At least it has existed</div><div>    # (without options) on all machines/OSes I've been on recently -</div><div>    # unlike whoami or id -nu.</div><div>    if [ catch {exec id} reason ] {</div><div>        send_error "\nError: could not exec id: $reason\n"</div><div>        exit 1</div><div>    }</div><div>    regexp {\(([^)]*)} "$reason" junk default_user</div><div>}</div><div>if {[ info exists env(CLOGINRC) ]} {</div><div>    set password_file $env(CLOGINRC)</div><div>}</div><div> </div><div># Sometimes routers take awhile to answer (the default is 10 sec)</div><div>set timeout 45</div><div> </div><div># Process the command line</div><div>for {set i 0} {$i < $argc} {incr i} {</div><div>    set arg [lindex $argv $i]</div><div> </div><div>    switch  -glob -- $arg {</div><div>        # Expect debug mode</div><div>        -d* {</div><div>            exp_internal 1</div><div>        # Username</div><div>        } -u* {</div><div>            if {! [  regexp .\[uU\](.+) $arg ignore user]} {</div><div>                incr i</div><div>                set username [ lindex $argv $i ]</div><div>            }</div><div>        # VTY Password</div><div>        } -p* {</div><div>            if {! [  regexp .\[pP\](.+) $arg ignore userpasswd]} {</div><div>                incr i</div><div>                set userpasswd [ lindex $argv $i ]</div><div>            }</div><div>            set do_passwd 0</div><div>        # VTY Password</div><div>        } -v* {</div><div>            if {! [  regexp .\[vV\](.+) $arg ignore passwd]} {</div><div>                incr i</div><div>                set passwd [ lindex $argv $i ]</div><div>            }</div><div>            set do_passwd 0</div><div>        # Version string</div><div>        } -V* {</div><div>            send_user "@PACKAGE@ @VERSION@\n"</div><div>            exit 0</div><div>        # Enable Username</div><div>        } -w* {</div><div>            if {! [  regexp .\[wW\](.+) $arg ignore enauser]} {</div><div>                incr i</div><div>                set enausername [ lindex $argv $i ]</div><div>            }</div><div>        # Environment variable to pass to -s scripts</div><div>        } -E* {</div><div>            if {[ regexp .\[E\](.+)=(.+) $arg ignore varname varvalue]} {</div><div>                set E$varname $varvalue</div><div>            } else {</div><div>                send_user "\nError: invalid format for -E in $arg\n"</div><div>                exit 1</div><div>            }</div><div>        # Enable Password</div><div>        } -e* {</div><div>            if {! [  regexp .\[eE\](.+) $arg ignore enapasswd]} {</div><div>                incr i</div><div>                set enapasswd [ lindex $argv $i ]</div><div>            }</div><div>            set do_enapasswd 0</div><div>        # Command to run.</div><div>        } -c* {</div><div>            if {! [  regexp .\[cC\](.+) $arg ignore command]} {</div><div>                incr i</div><div>                set command [ lindex $argv $i ]</div><div>            }</div><div>            set do_command 1</div><div>        # Expect script to run.</div><div>        } -s* {</div><div>            if {! [  regexp .\[sS\](.+) $arg ignore sfile]} {</div><div>                incr i</div><div>                set sfile [ lindex $argv $i ]</div><div>            }</div><div>            if { ! [ file readable $sfile ] } {</div><div>                send_user "\nError: Can't read $sfile\n"</div><div>                exit 1</div><div>            }</div><div>            set do_script 1</div><div>        # save config on exit</div><div>        } -S* {</div><div>            set do_saveconfig 1</div><div>        # 'ssh -c' cypher type</div><div>        } -y* {</div><div>            if {! [  regexp .\[eE\](.+) $arg ignore cypher]} {</div><div>                incr i</div><div>                set cypher [ lindex $argv $i ]</div><div>            }</div><div>        # alternate cloginrc file</div><div>        } -f* {</div><div>            if {! [ regexp .\[fF\](.+) $arg ignore password_file]} {</div><div>                incr i</div><div>                set password_file [ lindex $argv $i ]</div><div>            }</div><div>        # Timeout</div><div>        } -t* {</div><div>            if {! [ regexp .\[tT\](.+) $arg ignore timeout]} {</div><div>                incr i</div><div>                set timeout [ lindex $argv $i ]</div><div>            }</div><div>        # Command file</div><div>        } -x* {</div><div>            if {! [  regexp .\[xX\](.+) $arg ignore cmd_file]} {</div><div>                incr i</div><div>                set cmd_file [ lindex $argv $i ]</div><div>            }</div><div>            set cmd_fd [open $cmd_file r]</div><div>            set cmd_text [read $cmd_fd]</div><div>            close $cmd_fd</div><div>            set command [join [split $cmd_text \n] \;]</div><div>            set do_command 1</div><div>        # Do we enable?</div><div>        } -noenable {</div><div>            set avenable 0</div><div>        # Does tacacs automatically enable us?</div><div>        } -autoenable {</div><div>            set avautoenable 1</div><div>            set avenable 0</div><div>        } -* {</div><div>            send_user "\nError: Unknown argument! $arg\n"</div><div>            send_user $usage</div><div>            exit 1</div><div>        } default {</div><div>            break</div><div>        }</div><div>    }</div><div>}</div><div># Process routers...no routers listed is an error.</div><div>if { $i == $argc } {</div><div>    send_user "\nError: $usage"</div><div>}</div><div> </div><div># Only be quiet if we are running a script (it can log its output</div><div># on its own)</div><div>if { $do_script } {</div><div>    log_user 0</div><div>} else {</div><div>    log_user 1</div><div>}</div><div> </div><div>#</div><div># Done configuration/variable setting.  Now run with it...</div><div>#</div><div> </div><div># Sets Xterm title if interactive...if its an xterm and the user cares</div><div>proc label { host } {</div><div>    global env</div><div>    # if CLOGIN has an 'x' in it, don't set the xterm name/banner</div><div>    if [info exists env(CLOGIN)] {</div><div>        if {[string first "x" $env(CLOGIN)] != -1} { return }</div><div>    }</div><div>    # take host from ENV(TERM)</div><div>    if [info exists env(TERM)] {</div><div>        if [regexp \^(xterm|vs) $env(TERM) ignore ] {</div><div>            send_user "\033]1;[lindex [split $host "."] 0]\a"</div><div>            send_user "\033]2;$host\a"</div><div>        }</div><div>    }</div><div>}</div><div> </div><div># This is a helper function to make the password file easier to</div><div># maintain.  Using this the password file has the form:</div><div># add password sl*      pete cow</div><div># add password at*      steve</div><div># add password *        hanky-pie</div><div>proc add {var args} { global int_$var ; lappend int_$var $args}</div><div>proc include {args} {</div><div>    global env</div><div>    regsub -all "(^{|}$)" $args {} args</div><div>    if { [ regexp "^/" $args ignore ] == 0 } {</div><div>        set args $env(HOME)/$args</div><div>    }</div><div>    source_password_file $args</div><div>}</div><div> </div><div>proc find {var router} {</div><div>    upvar int_$var list</div><div>    if { [info exists list] } {</div><div>        foreach line $list {</div><div>            if { [string match [lindex $line 0] $router ] } {</div><div>                return [lrange $line 1 end]</div><div>            }</div><div>        }</div><div>    }</div><div>    return {}</div><div>}</div><div> </div><div># Loads the password file.  Note that as this file is tcl, and that</div><div># it is sourced, the user better know what to put in there, as it</div><div># could install more than just password info...  I will assume however,</div><div># that a "bad guy" could just as easy put such code in the clogin</div><div># script, so I will leave .cloginrc as just an extention of that script</div><div>proc source_password_file { password_file } {</div><div>    global env</div><div>    if { ! [file exists $password_file] } {</div><div>        send_user "\nError: password file ($password_file) does not exist\n"</div><div>        exit 1</div><div>    }</div><div>    file stat $password_file fileinfo</div><div>    if { [expr ($fileinfo(mode) & 007)] != 0000 } {</div><div>        send_user "\nError: $password_file must not be world readable/writable\n"</div><div>        exit 1</div><div>    }</div><div>    if [ catch {source $password_file} reason ] {</div><div>        send_user "\nError: $reason\n"</div><div>        exit 1</div><div>    }</div><div>}</div><div> </div><div># Log into the router.</div><div># returns: 0 on success, 1 on failure</div><div>proc login { router user userpswd passwd enapasswd prompt cmethod cyphertype } {</div><div>    global spawn_id in_proc do_command do_script</div><div>    global u_prompt p_prompt e_prompt sshcmd</div><div>    set in_proc 1</div><div> </div><div>    # try each of the connection methods in $cmethod until one is successful</div><div>    set progs [llength $cmethod]</div><div>    foreach prog [lrange $cmethod 0 end] {</div><div>        incr progs -1</div><div>        if [string match "telnet*" $prog] {</div><div>            regexp {telnet(:([^[:space:]]+))*} $prog command suffix port</div><div>            if {"$port" == ""} {</div><div>                set retval [ catch {spawn telnet $router} reason ]</div><div>            } else {</div><div>                set retval [ catch {spawn telnet $router $port} reason ]</div><div>            }</div><div>            if { $retval } {</div><div>                send_user "\nError: telnet failed: $reason\n"</div><div>                return 1</div><div>            }</div><div>        } elseif ![string compare $prog "ssh"] {</div><div>            if [ catch {spawn $sshcmd -c $cyphertype -x -l $user $router} reason ] {</div><div>                send_user "\nError: $sshcmd failed: $reason\n"</div><div>                return 1</div><div>            }</div><div>        } elseif ![string compare $prog "rsh"] {</div><div>            send_error "\nError: unsupported method: rsh\n"</div><div>            if { $progs == 0 } {</div><div>                return 1</div><div>            }</div><div>            continue;</div><div>        } else {</div><div>            send_user "\nError: unknown connection method: $prog\n"</div><div>            return 1</div><div>        }</div><div>        sleep 0.3</div><div> </div><div>        # This helps cleanup each expect clause.</div><div>        expect_after {</div><div>            timeout {</div><div>                send_user "\nError: TIMEOUT reached\n"</div><div>                catch {close}; catch {wait};</div><div>                if { $in_proc} {</div><div>                    return 1</div><div>                } else {</div><div>                    continue</div><div>                }</div><div>            } eof {</div><div>                send_user "\nError: EOF received\n"</div><div>                catch {close}; catch {wait};</div><div>                if { $in_proc} {</div><div>                    return 1</div><div>                } else {</div><div>                    continue</div><div>                }</div><div>            }</div><div>        }</div><div> </div><div>    # Here we get a little tricky.  There are several possibilities:</div><div>    # the router can ask for a username and passwd and then</div><div>    # talk to the TACACS server to authenticate you, or if the</div><div>    # TACACS server is not working, then it will use the enable</div><div>    # passwd.  Or, the router might not have TACACS turned on,</div><div>    # then it will just send the passwd.</div><div>    # if telnet fails with connection refused, try ssh</div><div>    expect {</div><div>        -re "(Connection refused|Secure connection \[^\n\r]+ refused|Connection closed by)" {</div><div>            catch {close}; catch {wait};</div><div>            if !$progs {</div><div>                send_user "\nError: Connection Refused ($prog)\n"; return 1</div><div>            }</div><div>        }</div><div>        eof { send_user "\nError: Couldn't login\n"; wait; return 1</div><div>        } -nocase "unknown host\r" {</div><div>            catch {close}; catch {wait};</div><div>            send_user "\nError: Unknown host\n"; wait; return 1</div><div>        } "Host is unreachable" {</div><div>            catch {close}; catch {wait};</div><div>            send_user "\nError: Host Unreachable!\n"; wait; return 1</div><div>        } "No address associated with name" {</div><div>            catch {close}; catch {wait};</div><div>            send_user "\nError: Unknown host\n"; wait; return 1</div><div>        }</div><div>        -re "(Host key not found |The authenticity of host .* be established).*\(yes\/no\)\?" {</div><div>            send "yes\r"</div><div>            send_user "\nHost $router added to the list of known hosts.\n"</div><div>            exp_continue }</div><div>        -re "HOST IDENTIFICATION HAS CHANGED.* \(yes\/no\)\?" {</div><div>            send "no\r"</div><div>            send_user "\nError: The host key for $router has changed.  Update the SSH known_hosts file accordingly.\n"</div><div>            return 1</div><div>        }</div><div>        -re "Offending key for .* \(yes\/no\)\?" {</div><div>            send "no\r"</div><div>            send_user "\nError: host key mismatch for $router.  Update the SSH known_hosts file accordingly.\n"</div><div>            return 1</div><div>        }</div><div>        -re "Ctrl-Y" { send -- "\031"</div><div>            expect {</div><div>               -re "$u_prompt" { send -- "$user\r" ; send -- "$userpswd\r" }</div><div>               -re "#"   { set in_proc 0; return 0 }</div><div>        }</div><div>           # exp_continue</div><div>        }</div><div>        -re "$u_prompt" { send -- "$user\r"</div><div>            expect {</div><div>                eof                     { send_user "\nError: Couldn't login\n"; wait; return 1 }</div><div>                "Login invalid"         { send_user "\nError: Invalid login\n";</div><div>                                          catch {close}; catch {wait};</div><div>                                          return 1 }</div><div>                -re "$p_prompt"         { send -- "$userpswd\r" }</div><div>                "$prompt"               { set in_proc 0; return 0 }</div><div>            }</div><div>            exp_continue</div><div>        }</div><div>        -re "$p_prompt" {</div><div>            if $in_proc { exp_continue }</div><div>            if ![string compare $prog "ssh"] {</div><div>                send -- "$userpswd\r"</div><div>            } else {</div><div>                send -- "$passwd\r"</div><div>            }</div><div>            expect {</div><div>                eof             { send_user "\nError: Couldn't login\n"; wait; return 1 }</div><div>                -re "$e_prompt" { send -- "$enapasswd\r" }</div><div>                "$prompt"       { set in_proc 0; return 0 }</div><div>            }</div><div>            exp_continue</div><div>        }</div><div>        #"$prompt"       { break; }</div><div>        denied          { send_user "\nError: Check your passwd for $router\n"</div><div>                          catch {close}; catch {wait}; return 1</div><div>                        }</div><div>        "% Bad passwords" {send_user "\nError: Check your passwd for $router\n"; return 1 }</div><div>    }</div><div>}</div><div>    set in_proc 0</div><div>    return 0</div><div>}</div><div> </div><div># Enable</div><div>proc do_enable { enauser enapasswd } {</div><div>    global prompt in_proc</div><div>    global u_prompt e_prompt</div><div>    set in_proc 1</div><div> </div><div>    send "enable\r"</div><div>    expect {</div><div>        -re "$u_prompt" { send -- "$enauser\r"; exp_continue}</div><div>        -re "$e_prompt" { send -- "$enapasswd\r"; exp_continue}</div><div>        "#"             { set prompt "#" }</div><div>        "(enable)"      { set prompt "> (enable) " }</div><div>        denied          { send_user "\nError: Check your Enable passwd\n"</div><div>                          return 1</div><div>                        }</div><div>        "% Bad passwords" {</div><div>                          send_user "\nError: Check your Enable passwd\n"</div><div>                          return 1</div><div>                        }</div><div>    }</div><div>    # We set the prompt variable (above) so script files don't need</div><div>    # to know what it is.</div><div>    set in_proc 0</div><div>    return 0</div><div>}</div><div> </div><div># Run commands given on the command line.</div><div>proc run_commands { prompt command } {</div><div>    global in_proc</div><div>    set in_proc 1</div><div>    </div><div>    regsub -all "\[)(]" $prompt {\\&} reprompt</div><div> </div><div>    set commands [split $command \;]</div><div>    set num_commands [llength $commands]<span class="" style="white-space:pre">       </span></div><div>    for {set i 0} {$i < $num_commands} { incr i} {</div><div>        send -- "[subst -nocommands [lindex $commands $i]]\r"</div><div>        send "exit\r"</div><div>        expect {</div><div>            -re "^\[^\n\r *]*$reprompt"         {}</div><div>            -re "^\[^\n\r]*$reprompt."          { exp_continue }</div><div>            -re "\[\n\r]+"                      { exp_continue }</div><div>            -re "Main Menu"                     { send "L" }</div><div>        }</div><div>    }</div><div>    expect {</div><div>        "\n"                                    { exp_continue }</div><div>        timeout                                 { catch {close}; catch {wait};</div><div>                                                  return 0</div><div>                                                }</div><div>    }</div><div>    set in_proc 0</div><div>}</div><div> </div><div>#</div><div># For each router... (this is main loop)</div><div>#</div><div>source_password_file $password_file</div><div>set in_proc 0</div><div>set exitval 0</div><div>foreach router [lrange $argv $i end] {</div><div>    set router [string tolower $router]</div><div>    send_user "$router\n"</div><div> </div><div>    # Figure out prompt.</div><div>    # Since autoenable is off by default, if we have it defined, it</div><div>    # was done on the command line. If it is not specifically set on the</div><div>    # command line, check the password file.</div><div>    if $avautoenable {</div><div>        set autoenable 1</div><div>        set enable 0</div><div>        set prompt "#"</div><div>    } else {</div><div>        set ae [find autoenable $router]</div><div>        if { "$ae" == "1" } {</div><div>            set autoenable 1</div><div>            set enable 0</div><div>            set prompt "#"</div><div>        } else {</div><div>            set autoenable 0</div><div>            set enable $avenable</div><div>            set prompt ">"</div><div>        }</div><div>    }</div><div> </div><div>    # look for noenable option in .cloginrc</div><div>    if { [find noenable $router] != "" } {</div><div>        set enable 0</div><div>    }</div><div> </div><div>    # Figure out passwords</div><div>    if { $do_passwd || $do_enapasswd } {</div><div>      set pswd [find password $router]</div><div>      if { [llength $pswd] == 0 } {</div><div>        send_user "\nError - no password for $router in $password_file.\n"</div><div>        continue</div><div>      }</div><div>      if { $do_enapasswd && $autoenable == 0 && [llength $pswd] < 2 } {</div><div>        send_user "\nError - no enable password for $router in $password_file.\n"</div><div>        continue</div><div>      }</div><div>      set passwd [join [lindex $pswd 0] ""]</div><div>      set enapasswd [join [lindex $pswd 1] ""]</div><div>    } else {</div><div>        set passwd $userpasswd</div><div>        set enapasswd $enapasswd</div><div>    }</div><div> </div><div>    # Figure out username</div><div>    if {[info exists username]} {</div><div>      # command line username</div><div>      set ruser $username</div><div>    } else {</div><div>      set ruser [join [find user $router] ""]</div><div>      if { "$ruser" == "" } { set ruser $default_user }</div><div>    }</div><div> </div><div>    # Figure out username's password (if different from the vty password)</div><div>    if {[info exists userpasswd]} {</div><div>      # command line username</div><div>      set userpswd $userpasswd</div><div>    } else {</div><div>      set userpswd [join [find userpassword $router] ""]</div><div>      if { "$userpswd" == "" } { set userpswd $passwd }</div><div>    }</div><div> </div><div>    # Figure out enable username</div><div>    if {[info exists enausername]} {</div><div>      # command line enausername</div><div>      set enauser $enausername</div><div>    } else {</div><div>      set enauser [join [find enauser $router] ""]</div><div>      if { "$enauser" == "" } { set enauser $ruser }</div><div>    }</div><div> </div><div>    # Figure out prompts</div><div>    set u_prompt [find userprompt $router]</div><div>    if { "$u_prompt" == "" } {</div><div>        set u_prompt "(Username|login|user name):"</div><div>    } else {</div><div>        set u_prompt [join [lindex $u_prompt 0] ""]</div><div>    }</div><div>    set p_prompt [find passprompt $router]</div><div>    if { "$p_prompt" == "" } {</div><div>         set p_prompt "(\[Pp]assword|passwd):"</div><div>        } else {</div><div>        set p_prompt [join [lindex $p_prompt 0] ""]</div><div>    }</div><div>    set e_prompt [find enableprompt $router]</div><div>    if { "$e_prompt" == "" } {</div><div>        set e_prompt "\[Pp]assword:"</div><div>    } else {</div><div>        set e_prompt [join [lindex $e_prompt 0] ""]</div><div>    }</div><div> </div><div>    # Figure out cypher type</div><div>    if {[info exists cypher]} {</div><div>      # command line cypher type</div><div>      set cyphertype $cypher</div><div>    } else {</div><div>      set cyphertype [find cyphertype $router]</div><div>      if { "$cyphertype" == "" } { set cyphertype "3des" }</div><div>    }</div><div> </div><div>    # Figure out connection method</div><div>    set cmethod [find method $router]</div><div>    if { "$cmethod" == "" } { set cmethod {{telnet}} }</div><div> </div><div>    # Figure out the SSH executable name</div><div>    set sshcmd [find sshcmd $router]</div><div>    if { "$sshcmd" == "" } { set sshcmd {ssh} }</div><div> </div><div>    # Login to the router</div><div>    if {[login $router $ruser $userpswd $passwd $enapasswd $prompt $cmethod $cyphertype]} {</div><div>        incr exitval</div><div>        continue</div><div>    }</div><div>    if { $enable } {</div><div>        if {[do_enable $enauser $enapasswd]} {</div><div>            if { $do_command || $do_script } {</div><div>                incr exitval</div><div>                catch {close}; catch {wait};</div><div>                continue</div><div>            }</div><div>        }</div><div>    }</div><div> </div><div>    if { $do_command } {</div><div>        if {[run_commands $prompt $command]} {</div><div>            incr exitval</div><div>            continue</div><div>        }</div><div>    } elseif { $do_script } {</div><div>        expect $prompt  {}</div><div>        source $sfile</div><div>        catch {close};</div><div>    } else {</div><div>        label $router</div><div>        log_user 1</div><div>        interact</div><div>    }</div><div> </div><div>    # End of for each router</div><div>    catch {wait};</div><div>    sleep 0.3</div><div>}</div><div>exit $exitval</div></div><div><br></div><div><br></div><div><br></div><div><br></div><div>I set this command:</div><div><br></div><div><div>./bnlogin -f /var/lib/rancid/.cloginrc -c "show sys-info" ip_my_host</div></div><div><br></div><div>And its the result, you can see it here:</div><div><br></div><div><div>4548GT-PWR#show sys-info</div><div>"</div><div>"</div><div>"</div><div>"</div><div>"</div><div>show parameters of system</div><div>"</div><div>"</div><div>"</div><div>"</div><div><br></div><div>4548GT-PWR#exit</div><div>Connection closed by foreign host.</div><div><br></div><div>Error: EOF received</div></div><div><br></div><div><br></div><div>Why I have this messages? I don't know it...</div><div><br></div><div><br></div><div><br></div><div>Can you help me, please?</div><div><br></div><div><br></div><div><br></div><div>Regards!</div><div>Santi</div></div>