Displaying 8 results from an estimated 8 matches for "ssh2_fxp_status".
2004 May 06
2
ID mismatch
Hi,
When do the sftp to remote server with file system full, sftp connection
get "ID mismatch"
and connection closed. Is it supposed to get the "sftp>" prompt back? I try
with V3.7.1p2 and V3.8.1p1 and have the same result.
Please help.
rdsosl.sef_cdf-831# sftp -v edosuser at rdsosl
Connecting to rdsosl...
OpenSSH_3.8.1p1, OpenSSL 0.9.7d 17 Mar 2004
debug1: Reading
2017 Jun 29
2
[Bug 2733] New: sftp wildcard list missing stats if more than one match
...order
by also not working.
For example:
when there is one match to wildcard:
sftp> ls -l /var*
debug3: Sending SSH2_FXP_READDIR I:3
debug3: Received reply T:104 I:3
debug3: Received 25 SSH2_FXP_NAME responses
debug3: Sending SSH2_FXP_READDIR I:4
debug3: Received reply T:101 I:4
debug3: Received SSH2_FXP_STATUS 1
debug3: Sent message SSH2_FXP_CLOSE I:5
debug3: SSH2_FXP_STATUS 0
debug3: Sent message fd 3 T:7 I:6
debug3: Received stat reply T:105 I:6
debug3: Sending SSH2_FXP_READDIR I:8
debug3: Received reply T:104 I:8
debug3: Received 13 SSH2_FXP_NAME responses
debug3: Sending SSH2_FXP_READDIR I:9
debug3:...
2024 Aug 02
1
sftp can't preserve uploaded mtime: fsetstat: No such file or directory
...ies_17146_PSSF_T1_HB.zip"
debug2: Sending SSH2_FXP_OPEN "/tempupload1/MRW_PM_Series_17146_PSSF_T1_HB.zip"
debug3: Sent dest message SSH2_FXP_OPEN I:3 P:/tempupload1/MRW_PM_Series_17146_PSSF_T1_HB.zip M:0x001a
debug3: Sent message SSH2_FXP_WRITE I:5 O:0 S:32768
debug3: SSH2_FXP_STATUS 0
debug3: In write loop, ack for 5 32768 bytes at 0
debug3: Sent message SSH2_FXP_WRITE I:6 O:32768 S:32768
...
debug3: In write loop, ack for 35 17707 bytes at 983040
debug2: Sending SSH2_FXP_FSETSTAT
debug3: Sent message fd 7 T:10 I:4 F:0x000c M:00644
debug3: SSH2_FXP_...
2001 Feb 22
3
Problems with sftp under SCO OpenServer
Hello,
I compiled OpenSSH 2.5.1p1 for SCO OpenServer 5.0.5, HPUX B.11.00, and
SunOS 5.7. When I sftp into the HP or Sun box, everything works fine.
However, whenever I sftp into the OpenServer box, all remote filenames
are shown as "(null)". File sizes, owners, etc. display properly. This
behavior is exhibited from all origination points.
OpenSSH was configured with identical
2024 Aug 01
1
sftp can't preserve uploaded mtime: fsetstat: No such file or directory
On Wed, 31 Jul 2024, ilya Basin wrote:
> I've just tried that. It still fails.
>
> Is it possible to dump the decrypted sftp commands? I tried -vvv but found nothing interesting.
Try
Subsystem sftp /usr/libexec/sftp-server -l debug3
in sshd_config
> The Total Commander plugin calls:
>
> libssh2_sftp_setstat(ConnectSettings->sftpsession,
>
2014 Jan 24
1
Question Reagrding open SSH
...mote file: No such file or directory
Uploading /cust01/dellinvs/edi_prod/push/snd/OUT100000157152.INT.sch to /home/700000035/tovan/OUT100000157152.INT.wrk
debug3: Sent message SSH2_FXP_OPEN I:3 P:/home/700000035/tovan/OUT100000157152.INT.wrk
debug3: Sent message SSH2_FXP_WRITE I:4 O:0 S:564
debug3: SSH2_FXP_STATUS 0
debug3: In write loop, ack for 4 564 bytes at 0
debug3: Sent message SSH2_FXP_CLOSE I:4
debug3: SSH2_FXP_STATUS 0
sftp> rename /home/700000035/tovan/OUT100000157152.INT.wrk /home/700000035/tovan/OUT100000157152.INT
debug3: Sent message SSH2_FXP_RENAME "/home/700000035/tovan/OUT10000015715...
2002 Jan 03
3
[PATCH] Improving sftp client performance
...+ }
buffer_clear(&msg);
-
get_msg(fd_in, &msg);
type = buffer_get_char(&msg);
id = buffer_get_int(&msg);
debug3("Received reply T:%d I:%d", type, id);
- if (id != expected_id)
- fatal("ID mismatch (%d != %d)", id, expected_id);
- if (type == SSH2_FXP_STATUS) {
+ reply = find_request(req, num_req, id);
+
+ switch (type) {
+ case SSH2_FXP_STATUS:
status = buffer_get_int(&msg);
+ if (status != SSH2_FX_EOF)
+ read_error = 1;
+ max_req = 0;
+ remove_request(req, &num_req, reply);
+ break;
+ case SSH2_FXP_DATA:
+ data = buffer_g...
2002 Jan 06
3
sftp/scp performance testing
Folks, I've noticed poor performance using sftp. If anyone has any
advice on how to improve performance, I'd like to hear it. Test simply
involved transferring a single 143MB MP3 file using defaults for all the
program configs. The opensshd 3.0.2p1 server is used in all tests.
Software:
openssh suite 3.0.2p1
psftp (putty sftp client) latest dev snapshot
pscp (putty scp client) latest