Created
August 23, 2019 00:31
-
-
Save codebymark/112aef5c3c49d1523b211db358e784b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# VSFTPD installation for ubuntu | |
# | |
sudo su | |
apt-get update | |
apt-get install vsftpd | |
useradd -m ftpusr | |
# add your groups where nessesary | |
service vsftpd restart | |
# edit the /etc/vsftpd.conf | |
# write_enable=YES | |
# append | |
# pasv_enable=Yes | |
# pasv_min_port=40000 | |
# pasv_max_port=40100 | |
# pasv_addr_resolve=YES |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment