Table of Contents

Information

Prerequisites

Dependencies

sudo zypper install 'vsftpd'

Firewall

sudo firewall-cmd --add-service='vsftpd' --permanent && sudo firewall-cmd --reload
sudo firewall-cmd --info-service='vsftpd'

Service

sudo systemctl enable 'vsftpd' --now

Settings

sudo -e '/etc/vsftpd.conf' && sudo systemctl restart 'vsftpd'
# Custom
anonymous_enable=NO
write_enable=YES
listen=YES
listen_ipv6=NO
pasv_enable=YES
local_root=/mnt/NAS1
force_dot_files=YES
seccomp_sandbox=NO
data_connection_timeout=300

# End