nixCraft Linux Forum

nixCraft

Linux Tech Support Forum

expect about helps pls

This is a discussion on expect about helps pls within the Shell scripting forums, part of the Development/Scripting category; Hi , Could you help me please. i want backup all cisco routers with sheel script. So i wrote a ...


Go Back   nixCraft Linux Forum > Development/Scripting > Shell scripting

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 03-05-2008, 12:05 PM
Junior Member
User
 
Join Date: Mar 2008
My distro: Fedora
Posts: 1
Rep Power: 0
samuel is on a distinguished road
Default expect about helps pls

Hi ,
Could you help me please.
i want backup all cisco routers with sheel script. So i wrote a script.
Can i into 3. password info asking try with sheel script. ? i can not use to 3. password info with expect. Just i can use two expect

Regards,



set timeout 100
match_max 1000000
set router [lindex $argv 0]

spawn telnet $router
expect {
"Password" {
send "*******\r"
expect ">"
send "en\r"
expect "Password"
send "******\r"
}
"Username"
{
send "*****\r"
expect "Password"
send "*****\r"
}
}
send -- "term len 0\r"
expect "*#"
send -- "show run\r"
expect "*#"
send -- "term leng 50\r"
expect "*#"
send -- "exit\r"
expect "closed*host.\r"
expect eof
Reply With Quote
Sponsored Links
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
interacting with expect monteo7 Shell scripting 1 03-04-2008 04:42 PM
Expect and tcl - manymaint.exp script Intelligen Shell scripting 11 11-21-2007 02:48 PM


All times are GMT +5.5. The time now is 08:42 AM.


Powered by vBulletin® Version 3.7.3 - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36