0

When my customers are trying to transfer the files through ftp system, they are getting this error. It seems like the ftp connection is established however because of some unknown reasons the data is not transferring. This is a connection from VMS system to a Unix server.

230 User 1234567 logged in
bin
200 PORT command successful.
hash
Hash mark printing on (1024/hash mark).
put abc.str
200 PORT command successful.
150 Opening BINARY mode data connection for abc.str
%TCPIP-E-FTP_DATACONF, cannot establish data connection with remote host
-SYSTEM-F-REJECT, connect to network object rejected
226 Transfer complete.
421 Service not available, Remote server has closed the connection
4

1 回答 1

1

如果您使用 VMS ,请FTP使用:

set passive on

在开始数据连接之前。

如果您使用 VMS ,请COPY /FTP使用:

copy /ftp/passive

使用被动模式。

有关详细信息,请参阅

ftp> help set passive

$ help copy /ftp
于 2015-04-30T12:14:08.550 回答