vote up 0 vote down star

My expect code does this: It does a ssh connect to another machine, sends the password and then returns the hostname of that machine. I give a sample of my code below
#!/usr/bin/expect -f
set ipaddr [lrange $argv 0 0]
set password [lrange $argv 1 1]
set timeout -1
spawn ssh root@$ipaddr hostname
match_max 100000
expect "*assword:*"
send -- "$password\r"
expect eof

This code runs perfectly many times but intermittently, I get the following error
send: spawn id exp4 not open
while executing
"send -- "$password\r""

Why is this happening?

flag

80% accept rate
1  
send: spawn id exp4 not open implies that the ssh root@$ipaddr hostname has failed or closed before the send can complete. – mas Sep 7 at 8:18
Thanks....will explore this – Ninja Sep 9 at 8:16

1 Answer

vote up 0 vote down check

Figured out why. I had generated ssh keys and copied it on to the destination machine. So there was no "Password: " prompt. Hence before send could complete, the ssh connection had closed.

I deleted the ssh keys from the destination machine and ran the script again and observed no issues

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.