サーバーに接続した後にPscpがフリーズする - cmdを介してWindowsからLinuxにファイルをコピーする

サーバーに接続した後にPscpがフリーズする - cmdを介してWindowsからLinuxにファイルをコピーする

どちらも試していますプログラムの実行そしてプログラムの実行単一ファイルをコピーするためのコマンドラインWindows 7マシンが届きます。Linux(デップ)ところで、以下のようなエラーが発生しました。

パテエラー

pscp.exe -2 -v -sftp -pw password putty.chm [email protected]:/base/data/backup/

Looking up host "10.99.180.1"
Connecting to 10.99.180.1 port 22
We claim version: SSH-2.0-PuTTY_Release_0.67
Server version: SSH-2.0-OpenSSH_6.7
Using SSH protocol version 2
Doing Diffie-Hellman group exchange
Doing Diffie-Hellman key exchange with hash SHA-256
Host key fingerprint is:
ssh-rsa 2048 72:6c:f4:f6:e2:cb:bf:c2:89:e4:c5:8b:12:a3:e4:52
Initialised AES-256 SDCTR client->server encryption
Initialised HMAC-SHA-256 client->server MAC algorithm
Initialised AES-256 SDCTR server->client encryption
Initialised HMAC-SHA-256 server->client MAC algorithm
Using username "admin".
Attempting keyboard-interactive authentication
Server refused keyboard-interactive authentication
Sent password
Access granted
Opening session as main channel
Opened main channel
Started a shell/command
Using SFTP
Connected to 10.99.180.1
Server sent command exit status 0
Fatal: Received unexpected end-of-file from server

パテ凍結

pscp.exe -2 -v -sftp -pw password putty.chm [email protected]:/base/data/backup
Looking up host "10.99.180.1"
Connecting to 10.99.180.1 port 22
We claim version: SSH-2.0-PuTTY_Release_0.67
Server version: SSH-2.0-OpenSSH_6.7
Using SSH protocol version 2
Doing Diffie-Hellman group exchange
Doing Diffie-Hellman key exchange with hash SHA-256
Host key fingerprint is:
ssh-rsa 2048 72:6c:f4:f6:e2:cb:bf:c2:89:e4:c5:8b:12:a3:e4:52
Initialised AES-256 SDCTR client->server encryption
Initialised HMAC-SHA-256 client->server MAC algorithm
Initialised AES-256 SDCTR server->client encryption
Initialised HMAC-SHA-256 server->client MAC algorithm
Using username "admin".
Attempting keyboard-interactive authentication
Server refused keyboard-interactive authentication
Sent password
Access granted
Opening session as main channel
Opened main channel
Started a shell/command
Using SFTP
Connected to 10.99.180.1

次にCtrl + Cを押して固定状態を終了します。

WinSCPエラー

WinSCP.com /command "option confirm off" "open admin:[email protected]" "put test.txt /base/data/backup/" "exit"
confirm off
Searching for host...
Connecting to host...
Authenticating...
Using username "admin".
Authenticating with pre-entered password.
Authenticated.
Starting the session...
Received too large (825372730 B) SFTP packet. Max supported packet size is 10240
00 B.
The error is typically caused by message printed from startup script (like .prof
ile). The message may start with "120:".
Cannot initialize SFTP protocol. Is the host running an SFTP server?

ベストアンサー1

何度も試したところ、次のような答えを得ました。

winscp.com /command "open scp://uname:[email protected]" "put C:\Users\%username%\Desktop\%filename-case% /var/shared/data/dump/" "exit"

完全なバッチスクリプトは次のとおりです。

@echo off
cd\
color 0a
cls
title Copying File to Dump
set /p filename-case=Enter the name of the directory:
cls
cd C:\Program Files (x86)\WinSCP
winscp.com /command "open scp://uname:[email protected]" "put C:\Users\%username%\Desktop\%filename-case% /var/shared/data/dump/" "exit"
msg * Directory %filename-case% Copied OK !!!
exit
exit

おすすめ記事