Windows FTP Error 425: Unable to build data connection

来源:互联网 发布:精通d3.js pdf 编辑:程序博客网 时间:2024/06/06 02:24

http://www.trapstone.com/articles/windows_ftp_425_connection_refused


Having problems transferring files with FTP? If you are using the command line FTP client within Windows and getting errors like these...

500 Illegal PORT command 425 Unable to build data connection: Connection refused

Well, don't worry - you're in good company.

This is probably one of the most commonly encountered problems by Windows users with the command line FTP client, primarily when connecting to servers that use non-default ports.

This article explains why ... and what you can do about it.

Illegal Port Command - Why FTP may be running on a non-standard port

Every day, countless attempts are made to get access to servers via FTP by guessing account names and passwords.

As a result, many companies who provide FTP access to their customers have configured their servers to run FTP on a non-standard port (i.e. anything other than the default port 21).

Normally this should not be a problem, as you can tell your FTP client which port to connect to on the server and to use passive mode. If you don't know what passive mode is all about, take a look at the article onActive FTP vs. Passive FTP.

Why Windows FTP Can't Build A Data Connection

If you use the standard FTP client (the command line one) that comes bundled with Microsoft Windows, then you will find that even if you specify a different port number, you cannot enable passive mode.

Note also that you can't specify the port number on the command line itself as aserver.name:port pair (unlike pretty much every other command line FTP client on the planet).

Instead, you can only attempt this from within the client interactively. For example, here's a session from an attempt to connect to one of our FTP servers which is running on port 7021...


Here we can see our attempt to connect to our server on it's non-standard port is successful.

However, as soon as we attempt to transfer data, the attempt to open a secondary port for the data flow fails. Microsoft's own article on theWindows FTP Client Receives Error Message 425 points out that:

"The FTP clients that ship with Windows do not support passive mode. Therefore, they always need to negotiate a data port when issuing a command that returns data."

As a result, even if you do correctly specify a non-default port number,you still cannot use passive mode.

Sigh...cheers guys.

Note that you may find a lot of articles on the 'net claiming that Windows FTP clientdoes support passive FTP - often because they've seen the PASV entry in the registry or because the clientappears to accept the literal pasv command.

It does not work with the Windows command line FTP client!

The server might respond to a PASV command with a message saying it is in passive mode but the Windows command line client has silently ignored it.

How You Can Use Passive FTP Under Windows

Internet Explorer can support passive mode as an FTP client if you enable it in the"Internet Options", although that's only useful for retrieving files - you can't upload via Internet Explorer.

For full bidirectional FTP functionality, the simple answer is to not use the Windows command line FTP client at all.

We recommend that you use something like FileZilla, which provides a clear, friendly and useful interface - and it's free!. Alternatively, Firefox users can get the FireFTP add-on to integrate bi-directional FTP with their browser.

If security is a concern and if the FTP server supports SSH connections, you may also want to download SFTP, which is part of thePuTTY SSH client distribution. This is also free and FileZilla supports SFTP as an alternative backend.



原创粉丝点击