我正在尝试连接 FTPES 服务器(IBM MVS OS/390),在尝试使用 ftp4j 时,我在使用他们的示例代码时遇到 PASS failed 异常
it.sauronsoftware.ftp4j.FTPException [code=530, message= PASS command failed]
我尝试使用 python 以及使用 ftplib 和 M2Crypto ftpslib,所有这些都返回相同的错误“530 PASS 命令失败”
任何线索?
def connect(self):
try:
ctx = SSL.Context('sslv23')
self.ftps = ftpslib.FTP_TLS(ssl_ctx=ctx)
self.ftps.connect(self.host,self.port)
self.ftps.auth_tls()
self.ftps.set_pasv(1)
self.ftps.sendcmd('USER %s' % self.username) # '331 Please specify the password.'
self.ftps.sendcmd('PASS %s' % self.password)
#self.ftps.login(self.username, self.password)
self.ftps.prot_p()
print('logged in sucessfuly')
self.ftps.cwd('XXXX')
except Exception,e:
self.ftps = None
self.logger.warning("Exception raised while connecting FTPS server, %s" % ("*** Caught exception: %s: %s" % (e.__class__, e)))