Memotoo
Bugs / BoguesRSS Feed
You have noticed bugs, anomalies, then report them here
Informations:
Number of messages: 1066
Number of posts: 4057
Last posted: 2024-01-11 - 21:26
Last visit: 2024-05-18 - 22:03
Number of posts not read since your last visit: 0
Bookmark and Share
Return to the forum - Forums list - Reply to this post - New message - Search a postSearch a post

FTPS self signed certificationRSS Feed



Author Message
Hiroshi Miura

Translate this message to:
BulgarianChinese (Traditional)CroatianCzechEnglishFinnishFrancaisGermanGreek
HindiItalianJapaneseNederlandsNorwegianPortugueseRussianSpanishSwedish
smile Posted 2013-03-17 - 05:48

I found memotoo use self-signed SSL certificate for ftps - ftp over ssl/tls .
https uses rapidssl/geo trust cert but ftp is not.
Why use self-signed?
It cause a problem to sync with linux using ftps.



2 Replie(s)
Author Message
Thomas - Webmaster Memotoo
Thomas - Webmaster Memotoo


Translate this message to:
BulgarianChinese (Traditional)CroatianCzechEnglishFinnishFrancaisGermanGreek
HindiItalianJapaneseNederlandsNorwegianPortugueseRussianSpanishSwedish
smile Posted 2013-03-18 - 10:44     Subject: Re: FTPS self signed certification

Ok Hiroshi good idea, now the Memotoo FTP server use the signed certificate with FTPES (FTP over explicit TLS/SSL)
https://www.memotoo.com/my-files-how-to-access-with-ftp.php


Hiroshi Miura

Translate this message to:
BulgarianChinese (Traditional)CroatianCzechEnglishFinnishFrancaisGermanGreek
HindiItalianJapaneseNederlandsNorwegianPortugueseRussianSpanishSwedish
smile Posted 2013-03-18 - 15:39     Subject: Re: FTPS self signed certification

Thanks.

Now I can download RapidSSL intermediate CA from
https://knowledge.rapidssl.com/library/VERISIGN/ALL_OTHER/David%20A./Rapidssl/Se...

and place it in /etc/ssl/cert/RapidSSLCA.pem

I can prepare shell script such as
#!/bin/bash

# Replace "login", "password" and "LCD" with your settings
HOST="ftp.memotoo.com"
USER="user"
PASS="pass"
# Local directory
LCD="/home/memotoo-files/"
# Remote directory
RCD="/"

lftp -c "set ftp:list-options -a;
set ssl:check-hostname yes;
set ssl:verify-certificate yes;
set ssl:ca-file "/etc/ssl/certs/RapidSSLCA.pem"
open ftp://$USER:$PASS@$HOST;
lcd $LCD;
cd $RCD;
mirror --delete \
--verbose"

I've happy to use it with secure connection.


Memotoo Cloud My Address Book Ask my contacts to update their information
Return to the forum - Forums list - Reply to this post - New message - Search a postSearch a post