Hi,
I set up a Windows Server 2012 and try to get FTP over SSL working. FTP without SSL works fine. With SSL I can connect properly, can download files but can not upload. I tried as client WinSCP and Filezilla. To avoid Firewall issues I used Filezilla even local on the server itself.
This is the connect to FTP:
Status: Connecting to 10.10.20.3:21...
Status: Connection established, waiting for welcome message...
Response: 220 Microsoft FTP Service
Command: AUTH TLS
Response: 234 AUTH command ok. Expecting TLS Negotiation.
Status: Initializing TLS...
Status: Verifying certificate...
Command: USER ginne
Status: TLS/SSL connection established.
Response: 331 Password required
Command: PASS *****
Response: 230 User logged in.
Command: OPTS UTF8 ON
Response: 200 OPTS UTF8 command successful - UTF8 encoding now ON.
Command: PBSZ 0
Response: 200 PBSZ command successful.
Command: PROT P
Response: 200 PROT command successful.
Status: Connected
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/" is current directory.
Status: Directory listing successful
And this is when I try to copy:
Status: Starting upload of C:\Users\Administrator\Desktop\filezilla-3.8.1-win32-setup.exe
Status: Retrieving directory listing...
Command: PASV
Response: 227 Entering Passive Mode (10,10,20,3,193,159).
Command: LIST
Response: 150 Opening BINARY mode data connection.
Response: 226 Transfer complete.
Command: PASV
Response: 227 Entering Passive Mode (10,10,20,3,193,161).
Command: STOR filezilla-3.8.1-win32-setup.exe
Response: 125 Data connection already open; Transfer starting.
Response: 550
Error: File transfer failed
Status: Retrieving directory listing...
Command: PASV
Response: 227 Entering Passive Mode (10,10,20,3,193,163).
Command: LIST
Response: 150 Opening BINARY mode data connection.
Response: 226 Transfer complete.
Status: Directory listing successful
Hope for some hints.
Thanks Ginne