docker-vsftpd icon indicating copy to clipboard operation
docker-vsftpd copied to clipboard

Unable to connect with latest image from Filezilla client

Open DanTurco opened this issue 1 year ago • 4 comments

Its like its forcing SSL, and no logs are generated

Docker.compose

  vsftp:
    container_name: vsftp
    image: "fauria/vsftpd"
    restart: always
    ports:
        - 0.0.0.0:20:20
        - 0.0.0.0:21:21
        - "21100-21110:21100-21110"
    environment:
      - FTP_USER=admin
      - FTP_PASS=PassW0rd!
      - PASV_ADDRESS=127.0.0.1
      - PASV_MIN_PORT=21100
      - PASV_MAX_PORT=21110
    volumes:
        - vol_ftp:/home/vsftpd
        - vol_ftp:/var/log/vsftpd

Logs image

Filezilla Site image

Filezilla output

Response:	220 (vsFTPd 3.0.2)
Command:	AUTH TLS
Response:	530 Please login with USER and PASS.
Command:	AUTH SSL
Response:	530 Please login with USER and PASS.
Status:	Insecure server, it does not support FTP over TLS.
Command:	USER cbxuser
Response:	331 Please specify the password.
Command:	PASS *********
Error:	Connection timed out after 20 seconds of inactivity
Error:	Could not connect to server

DanTurco avatar Jan 05 '24 19:01 DanTurco

same here

docteurzoidberg avatar Jan 16 '24 19:01 docteurzoidberg

same here when run in Docker container on Windows 10

khacdatdo avatar Jan 17 '24 02:01 khacdatdo

My short term solution was i used older image bogem/ftp. that worked out of the box. Following this: https://www.linkedin.com/pulse/how-configure-ftp-server-your-ubuntu-local-using-docker-andrade

DanTurco avatar Jan 17 '24 13:01 DanTurco