Custom Query (8168 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (67 - 69 of 8168)

Ticket Resolution Summary Owner Reporter
#8009 outdated Problem While Connecting to SFTP Server Yash
Description

Dear FileZilla Team:

I am getting an error while connecting to SFTP server from Filezilla, hope you could help me. Please find the error below:

"server host key did not match the signature supplied"

#3395 MSW: Ctrl + Space not working in file list yvan456
Description

multiple selection in local files windows with ctrl+spacebar is not available; would operate in previous release. Thanks and goodbye

#1179 Active mode data connection is made from the wrong port yurivkhan
Description

According to the FTP specification (RFC0959), in active FTP mode, the data connection should be made from port L-1, where L is the port that the server is listening for control connections (see section 3.2 Establishing Data Connections, paragraph 1). This should be true for every active mode transfer.

FileZilla Server attempts to bind the outgoing port as per specification, but fails to do this when another active mode data connection exists. The second connection will get port L+1, and if a third connection is opened, then it will get an arbitrary OS-assigned port.

Versions:

  • OS: any Windows version (tested on Windows XP SP1, SP2)
  • Server: FileZilla Server, all versions (tested on

0.9.4, 0.9.8a, 0.9.19)

  • Client: any FTP client (tested on Windows ftp.exe)

To reproduce:

  • Open two concurrent connections from the same client

host to the same server host.

  • Start downloading a large file in each connection.
  • While the files are being downloaded, run "netstat -a

-n" on the client host.

Expected behavior:

  • There are two control connections to server host,

port 21.

  • There are two data connections from server host, port 20.

Observed behavior:

  • There are two control connections to server host,

port 21.

  • There is one data connection from server host, port 20.
  • There is another data connection from server host,

unspecified port.

Cause:

  • By default, the bind() function fails if the

requested local port is already used by another socket.

  • To reuse the port, it is necessary to issue a

setsockopt(socket, SOL_SOCKET, SO_REUSEADDR, ...) call, passing TRUE as the option value, before binding the socket.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.