1
curlftpfs -o allow_other -o ssl -o no_verify_hostname -o no_verify_peer -o ftp_port=22 -o user='{{ ftp_user }}:{{ ftp_pass }}' {{ ftp_URL }} /mnt/sftp/

output is

Error connecting to ftp: Access denied: 530

When the same credentials are used on the FileZilla app everything works fine.

What is wrong with the command above?

1 Answers1

1

curlftpfs "talks" FTP(S). FTPS is not SFTP. SFTP uses SSH. sshfs "talks" SSH.

You mentioned SFTP and the port is 22 (the standard port for SSH), so most likely you need sshfs, not curlftpfs.