Vsftp: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=installation= sudo apt-get update sudo apt-get install vsftpd =firewall test configuration= mkdir -p /var/ftp/pub chown nobody:nogroup /var/ftp/pub echo…“)
 
(Der Seiteninhalt wurde durch einen anderen Text ersetzt: „*Was ist vsftp? *Vsftp Installation“)
Markierung: Ersetzt
 
Zeile 1: Zeile 1:
=installation=
+
*[[Was ist vsftp?]]
sudo apt-get update
+
*[[Vsftp Installation]]
sudo apt-get install vsftpd
 
 
 
=firewall test configuration=
 
mkdir -p /var/ftp/pub
 
chown nobody:nogroup /var/ftp/pub
 
echo "vsftpd test file" | sudo tee /var/ftp/pub/test.txt
 
*add in vi /etc/vsftp.conf
 
anonymous_enable=YES
 
#
 
# Point users at the directory we created earlier.
 
anon_root=/var/ftp/
 
#
 
# Stop prompting for a password on the command line.
 
no_anon_password=YES
 
#
 
# Show the user and group as ftp:ftp, regardless of the owner.
 
hide_ids=YES
 
#
 
# Limit the range of ports that can be used for passive FTP
 
pasv_min_port=40000
 
pasv_max_port=50000
 
 
 
for passive mode add
 
pasv_enable=Yes
 
to vi /etc/vsftp.conf
 
 
 
restart & enable
 
systemctl restart vsftpd.service
 
systemctl enable vsftpd.service
 

Aktuelle Version vom 16. Februar 2023, 08:29 Uhr