Questions tagged [vsftpd]
VSFTPD ("Very Secure FTP Daemon") is an FTP server for Unix-like systems, including Linux.
252 questions
0
votes
1
answer
118
views
FTP unable to write to a mounted drive
I'm using Mint Linux 22.1 and vsftpd on the destination computer and Windows 11 (latest version) as the source computer.
I have the following permissions. In my home directory I have a symlink to a ...
0
votes
0
answers
52
views
vsftpd FTPS server does NOT allow login
I recently setup an Arch Linux server running an FTPS vsftpd server, I am more or less new to this field, especially with this program so I'm sorry if I may come off as ignorant
My issue is that I ...
0
votes
0
answers
67
views
Running vsftpd in Docker (Swarm)
I want to use a vsftp-Server in my Docker Swarm but having some network issues. I have the following compose-file:
services:
vsftpd:
container_name: vsftpd
image: million12/vsftpd
...
1
vote
1
answer
62
views
How to prevent user from going to upper directory by vsftpd, in Ubuntu
The directories and the access setting is like below.
/home/directoroy1
rwxr-xr-x 4 user1 user1 4096
/home
rwxrwxr-x 5 root root 4096
And in vsftpd.conf, I set like below.
chroot_local_user=YES
...
0
votes
0
answers
47
views
configure "vsftpd" for certificate revocation
Is there a way to provide vsftpd with CRL?
The man page does not seem to have any option for the same and neither googling helped.
Appreciate response.
1
vote
0
answers
436
views
Unable to start vsftpd.service on Centos9 Stream using Virtualbox
I'm unable to start the vsftpd.service. Here's the error I get when I try to start it
Job for vsftpd.service failed because the control process exited with error code.
See "systemctl status ...
0
votes
2
answers
543
views
Why vsftpd don't respect passive port range?
I configure vsftpd for passive mode
listen=YES
log_ftp_protocol=YES
pasv_enable=YES
pasv_address=192.168.0.2
pasv_min_port=10090
pasv_max_port=10100
It works but use random ports!
Look output of ss ...
0
votes
1
answer
547
views
Would vsftpd not default to using the system username and password?
I downloaded vsftpd-3.0.5.tar.gz and successfully compiled it to generate vsftpd on computer A. Then I copied vsftpd to another computer B and created a new file called vsftpd.conf on computer A. Then,...
1
vote
2
answers
517
views
FTP transfer fails unless I open an ssh session with the server
This is a strange issue.
I have a centOS 7 based server with vsftpd running as the FTP server.
If I use filezilla to copy a file from the centOS box to my local client the transfer fails after ...
0
votes
0
answers
129
views
vsftpd FTP server on Linux
I just installed this FTP server and it works fine. I noticed that the FTP user can read an write their own directory but they can read and download other files also (owned by other users or by system)...
0
votes
0
answers
520
views
Error while installing VSFTPD in passive mode - 500 OOPS: could not bind listening IPv4 socket
I am trying to install and connect to FTPS server (passive mode) locally. I have read similar topics in this community, but still can't fix the problem or find an error in the vsftpd.conf. Firewall is ...
0
votes
1
answer
1k
views
How to enable port 21 with vsftpd
I can connect to my ftp server with port 22.
but I think port 21 is not active.:
Error: Connection timed out after 20 seconds of inactivity
Error: Could not connect to server
ufw status
Status:...
0
votes
1
answer
423
views
SELinux doesn't let me allow ftpd
I'm in AlmaLinuxOS 9.
When I try to run setsebool -P ftpd_full_access on , it sends me a message saying boolean ftpd_full_access not defined.
I don't know how could I make it working nor what's wrong.
0
votes
0
answers
398
views
vsFTPd config error when using local_root=
What I am trying to achieve is the following, vsFTPd server which uses a different directory on a different mounted disk and jails each user to that directory while TLS/SSL is forced.
Currently I have ...
0
votes
1
answer
152
views
vsftpd custom anonymous root folder
The default folder shared for the anonymous user by vsftpd is /var/ftp. This works fine. Now I want to share a different folder. I added this line to /etc/vsftpd/vsftpd.conf:
anon_root=/data/downloads/...