Does anyone have experience with IONOS FTP? I have enabled the FTP protocol, but unfortunately I can't access the files. Do I need to use a different configuration?
if is set UseSSL to true, i get this exception:
Without setting UseSSL to true
with setting UseSSLExplicit to true on port 21:
The configurations of the IONOS Hidrive FTP from the manual:
It is no problem, to use it with Filezilla.
B4X:
Private Sub B4XPage_Created (Root1 As B4XView)
FTP.Initialize("FTP", "sftp.hidrive.ionos.com", 22, "xxxxx@xxemail.de", "xxxxxx")
FTP.UseSSL=True
FTP.TimeoutMs=5000
FTP.List("/")
End Sub
Sub FTP_ListCompleted (ServerPath As String, Success As Boolean, Folders() As FTPEntry, Files() As FTPEntry)
Log(ServerPath)
If Success = False Then
Log(LastException)
Else
For i = 0 To Folders.Length - 1
Log(Folders(i).Name)
Next
For i = 0 To Files.Length - 1
Log(Files(i).Name & ", " & Files(i).Size & ", " & DateTime.Date(Files(i).Timestamp))
Next
End If
End Sub
if is set UseSSL to true, i get this exception:
(SSLException) javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
Without setting UseSSL to true
(SocketTimeoutException) java.net.SocketTimeoutException: Read timed out
with setting UseSSLExplicit to true on port 21:
(ConnectException) java.net.ConnectException: Connection refused: connect
The configurations of the IONOS Hidrive FTP from the manual:
Bezeichnung | SFTP | FTPS |
---|---|---|
Server | sftp.hidrive.ionos.com | ftp.hidrive.ionos.com |
Benutzername | Ihr HiDrive-Benutzername | Ihr HiDrive-Benutzername |
Passwort | Ihr HiDrive-Passwort | Ihr HiDrive-Passwort |
Port | 22 | 21 (explizit mit TLS-Verschlüsselung) |
It is no problem, to use it with Filezilla.