Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
681 views
in Technique[技术] by (71.8m points)

windows - Using echo y as an automated response to a pcp hostkey prompt

I am building a batch file so that I can push firmware to 600 plus devices.

If I am at a command prompt I can run the following command on a single line that will push the firmware and answer yes to the SSH key prompt.

echo y | pscp -v -scp -pw password C:CNA1000FirmwareCNA1504v1.1.7CNA1504v1_1_7.run [email protected]:/tmp/.    

The echo y | answers yes to the SSH keys prompt. However when I try to add it to a batch file I get an error in the command prompt that it did not like the password.

Specifically, it looks like this;

Using username "root".
[email protected]'s password:
Sent password
Access denied
Access denied

and then it repeats itself until I hit CTRL+C to break the batch file.

Is there a better way to do this so that I can automate the process?

Thanks,

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I ended up using WinSCP.net for the batch file to correctly do what I was trying to do. Here is the example of how to do the above with WinSCP.net.

@echo off

"C:Program Files (x86)WinSCPWinSCP.com" ^
  /log="C:Program Files (x86)WinSCPWinSCP.log" /ini=nul ^
  /command ^
    "open scp://root:[email protected]/" ^
    "Put C:CNA1000FirmwareCNA1504v1.1.7CNA1504v1_1_7.run /tmp/."  ^
    "exit"

set WINSCP_RESULT=%ERRORLEVEL%
if %WINSCP_RESULT% equ 0 (
  echo Success
) else (
  echo Error
)

exit /b %WINSCP_RESULT%

And repeat for each IP address.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...