Pscp congelar depois de conectar ao servidor - ao copiar o arquivo do Windows para o Linux via cmd

1

Estou tentando a linha de comando pscp.exe e winscp.exe para copiar um único arquivo da máquina Windows 7 para Linux (Deb) máquina, mas recebendo um erro abaixo.

Erro do PuTTY

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

Congelamento PuTTY

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

Em seguida, pressione Ctrl + C para sair do congelamento.

Erro do 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?
    
por manjesh23 23.09.2016 / 10:18

2 respostas

1

Depois de fazer uma tentativa e erro, recebi a resposta:

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

Aqui está o script em lote completo:

@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
    
por 23.09.2016 / 13:34
1

Talvez você devesse usar scp protocol em vez de sftp ?

pscp.exe -v -scp -pw password putty.chm [email protected]:/base/data/backup/
    
por 03.03.2017 / 08:48