Im trying to Mount FTPS to a directory but it doesn't seem to work...

I can do this:

lftp -p 990 user:pass@10.10.10.1

It will connect fine.

But if I do this:

curlftpfs 10.10.10.1:990 /mnt/test -o user=user:pass

I get this error:

* Couldn't find host 10.10.10.1 in the .netrc file; using defaults
* About to connect() to 10.10.10.1 port 990 (#0)
*   Trying 10.10.10.1... * connected
* Connected to 10.10.10.1 (10.10.10.1) port 990 (#0)
< 220-FileZilla Server version 0.9.34 beta
< 220-written by Tim Kosse (Tim.Kosse@gmx.de)
< 220 Please visit http://sourceforge.net/projects/filezilla/
> USER user
< 530 SSL required
* Access denied: 530
* Closing connection #0
Error connecting to ftp: Access denied: 530

Whats going on?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can try -o ssl

link|improve this answer
Thanks that works (with no_verify_hostname,no_verify_peer) – Mint Feb 23 '10 at 5:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.