Skip to content
reidrac edited this page Jun 7, 2012 · 2 revisions

1. username and password when using OpenStack:

In OpenStack the username can be "accountname:username", and it may require that the ":" part is encoded with "%3a".

Examples:

With ftp command line (v0.17)

ftp localhost
Name: account%3auser
Password: yourpass
ftp> passive
ftp> ls

With lftp command line (v4.3.1)

lftp account%3auser:yourpass@localhost
lftp> ls

With lftp command line (v4.3.1) using sftp (sftpcloudfs)

lftp sftp://account%3auser:yourpass@localhost:115
lftp> ls

Source: https://github.com/chmouel/ftp-cloudfs/issues/16

Clone this wiki locally