Is it possible to login via ftp to my dedicated server using a private/public key pair? i.e without using a password?

link|improve this question

Yes, using scp it is possible. – Sathya Sep 9 '11 at 18:17
feedback

1 Answer

up vote 2 down vote accepted

FTP can use SSL, which supports client authentication using X.509 certificates. However, while many FTP servers support FTPS, I don't know of any which support client certificates. (In addition, client authentication is complicated in SSL – in many cases, you would have to create and maintain your own certificate authority and stuff. Not many clients support this kind of authentication, either.)

Much easier is to use SFTP, the SSH file transfer protocol. It uses exactly the same keys as "normal" SSH would. On Windows, WinSCP and FileZilla support SFTP.

link|improve this answer
thank you, I know about SFTP. the problem is that is way more slower than normal ftp.. – develroot Sep 9 '11 at 18:42
feedback

Your Answer

 
or
required, but never shown

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