我有以下使用Apache Mina SSHD创建远程ChannelSubsystem(FTP客户端)的代码:

org.apache.sshd.client.channel.ChannelSubsystem c = session.createSubsystemChannel("sftp");

int authState = ClientSession.WAIT_AUTH;

while ((authState & ClientSession.WAIT_AUTH) != 0) {

    System.out.println("authenticating...");

    authFuture.addListener(new SshFutureListener<AuthFuture>()
    {
        @Override
        public void operationComplete(AuthFuture arg0)
        {
            System.out.println("Authentication completed with " + ( arg0.isSuccess() ? "success" : "failure"));
        }
    });

    authState = session.waitFor(ClientSession.WAIT_AUTH | ClientSession.CLOSED | ClientSession.AUTHED, 0);
}

if ((authState & ClientSession.CLOSED) != 0) {
    System.err.println("error");
    System.exit(-1);
}

OpenFuture openFuture = c.open().await();


如何通过ChannelSubsystem发送命令到远程FTP站点以进入被动模式?

最佳答案

您正在使用SSH / SFTP而不是FTP进行连接。

SFTP中没有什么像主动/被动模式。



FTP协议区分主动/被动模式,因为它使用单独的数据连接。在活动模式下,服务器启动数据连接。在被动模式下,客户端启动连接。
有关详细信息,请参见我在FTP connection modes上的文章。

SFTP中没有单独的数据连接,因此没有理由使用主动/被动模式。

07-24 21:34