What is the problem you are having with rclone?
I am trying to serve an FTP endpoint using rclone with MinIO as the backend. However, I am facing issues with the setup. External IP's is not logged.
Run the command 'rclone version' and share the full output of the command.
rclone v1.69.0
- os/version: alpine 3.21.2 (64 bit)
- os/kernel: 6.8.0-52-generic (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.23.4
- go/linking: static
- go/tags: none
Which cloud storage system are you using? (eg Google Drive, S3, etc.)
- MinIO (self-hosted S3-compatible storage)
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
rclone serve ftp bucket: \
--addr 172.30.100.3:200 \
--user ${SFTP_USER} \
--pass ${SFTP_PASS} \
--vfs-cache-mode off \
--poll-interval 5 \
--verbose=1 \
--passive-port 30000-30050 \
--public-ip 192.168.89.103 \
--dump headers,bodies,auth \
--retries=1 \
--low-level-retries=1
Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.
[bucket]
env_auth = false
access_key_id = XXX
secret_access_key = XXX
region = us-east-1
type = s3
provider = Minio
endpoint = http://172.30.100.2:9000
location_constraint =
server_side_encryption =
A log from the command that you were trying to run with the -vv
flag
2025/02/09 05:25:28 INFO : : Rclone FTP Server listening on 200
2025/02/09 05:29:06 INFO : 0ed5e6faea78de5c7434: Connection Established
2025/02/09 05:29:06 INFO : 0ed5e6faea78de5c7434: < 220 Welcome to Rclone v1.69.0 FTP Server
2025/02/09 05:29:06 INFO : 0ed5e6faea78de5c7434: > USER ftp
2025/02/09 05:29:06 INFO : 0ed5e6faea78de5c7434: ... (more logs if applicable)