530 用户无法使用 FTPSClient 登录

Dra*_*ken 6 java ftp ssl

我们尝试使用与标准 FTP 客户端中相同的凭据来访问我们的 FTPS 服务器之一。但是,当使用 Java 类时,FTPSClient我们收到错误消息:

530 用户无法登录。

没有别的。到目前为止,我们有以下代码(示例中的简化):

public final class FTPSExample {

    public static final void main(String[] args) {
        boolean error = false;
        String server, username, password;
        String protocol = "TLS";    // SSL/TLS
        FTPSClient ftps;


        server = "A_SERVER";
        username = /*server + "|" + */"A_USER";
        password = "A_PASS";

        ftps = new FTPSClient(protocol);
        ftps.setTrustManager(TrustManagerUtils.getAcceptAllTrustManager());

        ftps.addProtocolCommandListener(new PrintCommandListener(new PrintWriter(System.out)));

        try {
            int reply;

            ftps.connect(server, 21);
            System.out.println("Connected to " + server + ".");

            reply = ftps.getReplyCode();

            if (!FTPReply.isPositiveCompletion(reply)) {
                ftps.disconnect();
                System.err.println("FTP server refused connection.");
            } else {
                ftps.sendCommand("HOST", server);

                if (!ftps.login(username, password)) {
                    String[] welcomeMessage = ftps.getReplyStrings();
                    for(String s : welcomeMessage) {
                        System.out.println(s);
                    }
                    ftps.logout();
                    error = true;
                }
            }
        }
        catch (IOException e) {
            if (ftps.isConnected()) {
                try {
                    ftps.disconnect();
                }
                catch (IOException f) {
                    // do nothing
                }
            }
            System.err.println("Could not connect to server.");
            e.printStackTrace();
            System.exit(1);
        }
        System.exit(error ? 1 : 0);
    }
}
Run Code Online (Sandbox Code Playgroud)

上面的代码为我们提供了以下日志消息:

220 Microsoft FTP Service
AUTH TLS
234 AUTH command ok. Expecting TLS Negotiation.
Connected to A_SERVER.
HOST A_SERVER
220 Host accepted.
USER A_USER
331 Password required for A_USER.
PASS A_PASS
530 User cannot log in.
530 User cannot log in.
QUIT
221 Goodbye.
Run Code Online (Sandbox Code Playgroud)

同时,如果我们在 FTP 客户端(例如 FTP Voyager)中执行相同操作,我们会得到:

STATUS:>    Connecting to "A_SERVER" on port 21.
    220 Microsoft FTP Service
COMMAND:>   AUTH TLS
    234 AUTH command ok. Expecting TLS Negotiation.
STATUS:>    Negotiating SSL connection with server.
STATUS:>    SSL connection established.  All transactions are now secure.
STATUS:>    Connected.  Logging into the server
COMMAND:>   HOST A_SERVER
    220 Host accepted.
COMMAND:>   USER A_USER
    331 Password required for A_USER.
COMMAND:>   PASS *********************
    230 User logged in.
STATUS:>    Login successful
Run Code Online (Sandbox Code Playgroud)

我们尝试过的一些故障排除:

  • 从 TLS更改protocol为 SSL,两者都遇到同样的问题
  • 添加命令ftps.sendCommand("HOST", server);。我们看到 FTP 客户端在登录之前运行此命令,如果没有该行,我们会收到错误:530 Valid hostname is expected.
  • 使用FTPClient,结果是预期的534 Policy requires SSL.
  • 删除会ftps.setTrustManager(TrustManagerUtils.getAcceptAllTrustManager());导致相同错误的
  • 不设置 HOST,而是使用用户:username = "A_SERVER|A_USER";。同样的错误信息

服务器确实附带了一个证书,出于调试目的,我们很乐意忽略它。这就是为什么我们将 设为TrustManager接受所有。还有其他我们应该注意的设置吗?

我们没有设置代理,并且没有收到有用的错误消息。到目前为止,谷歌搜索530 User cannot log in.没有提供任何有用的信息。有没有人有什么建议?

编辑

我设法使用一个名为 的不同包让它工作FTP4J,但是如果有人能解释为什么它FTPSClient不起作用,那就太棒了。这是工作代码:

public final class FTPSExample {

    public static final void main(String[] args) {
        boolean error = false;
        String server, username, password;
        FTPClient ftps;

        server = "A_SERVER";
        username = server + "|" + "A_USER";
        password = "A_PASS";

        ftps = new FTPClient();
        ftps.setSecurity(FTPClient.SECURITY_FTPES);
        ftps.addCommunicationListener(new FTPCommunicationListener() {

            @Override
            public void sent(String s) {
                System.out.println(s);
            }

            @Override
            public void received(String s) {
                System.out.println(s);
            }
        });

        try {

            ftps.connect(server);
            System.out.println("Connected to " + server + ".");

            if (!ftps.isConnected()) {
                ftps.disconnect(false);
                System.err.println("FTP server refused connection.");
            } else {
                //ftps.sendSiteCommand("HOST " + server);

                ftps.login(username, password);

                if (!ftps.isAuthenticated()) {
                    error = true;
                } else {
                    System.out.println("Connected!");
                }
                ftps.logout();
            }
        }
        catch (Exception e) {
            if (ftps.isConnected()) {
                try {
                    ftps.disconnect(false);
                }
                catch (Exception f) {
                    // do nothing
                }
            }
            System.err.println("Could not connect to server.");
            e.printStackTrace();
            System.exit(1);
        }
        System.exit(error ? 1 : 0);
    }
}
Run Code Online (Sandbox Code Playgroud)

以及结果数据:

220 Microsoft FTP Service
Connected to A_SERVER.
AUTH TLS
234 AUTH command ok. Expecting TLS Negotiation.
USER A_SERVER|A_USER
331 Password required for A_SERVER|A_USER.
PASS A_PASS
230 User logged in.
Run Code Online (Sandbox Code Playgroud)

Liz*_*uge 6

我记得当我尝试将代码从 FTP 更改为 FTPS 时,我遇到了同样的错误,我已经使用以下代码解决了它:

public void FTPSUploader(String host, String user, String pwd,int numPort) throws Exception {
    FTPSClient ftp = new FTPSClient();
    ftps.addProtocolCommandListener(new PrintCommandListener(new PrintWriter(System.out)));
    int reply;
    ftps.connect(host, numPort);
    reply = ftp.getReplyCode();
    if (!FTPReply.isPositiveCompletion(reply)) {
        ftps.disconnect();
        throw new Exception("Exception in connecting to FTPs Server");
    }
    ftps.login(user, pwd);
    ftps.setFileType(FTP.BINARY_FILE_TYPE);
    ftps.enterLocalPassiveMode();
    ftps.execPBSZ(0);// Set protection buffer size
    ftps.execPROT("P");// Set data channel protection to private--
}
Run Code Online (Sandbox Code Playgroud)