Reputation: 11
I'm trying to FTP a file to Juniper and I'm failing. I think it has something to do with the pasv setting but I don't know what it should be as I've tried both pasv=true and pasv=false. Help please?
ftp.set_pasv(False)
ftp.storbinary('STOR myfile', fileRSI)
error_perm: 500 Illegal PORT command.
ftp.set_pasv(True)
ftp.storbinary('STOR myfile', fileRSI)
error_temp: 425 Security: Bad IP connecting.
Upvotes: 1
Views: 1270
Reputation: 123270
error_temp: 425 Security: Bad IP connecting.
This is a security check by vsftp that the control connection and the data connection originate at the same IP address. I assume that either
Upvotes: 2