31
Supporto Generale / Re: ftp server on centos
« il: 23 Aprile 2010, 12:20:25 »
Ciao Mazin
non ho molti termini di paragone, ma ho sempre usato
vsftp. Non servono 2 istanze, se opportunamente
configurato, usi l'accesso anonimo per andare su /var/ftp
(o dove preferisci), usi l'accesso con user/passwd per
accedere alla home (in chroot) dell'utente creato.
I file di configurazione su /etc/vcftp sono:
-chroot_list:
## CHROOT() file list
anonymous
-user_list:
# vsftpd userlist
# If userlist_deny=NO, only allow users in this file
# If userlist_deny=YES (default), never allow users in this file, and
# do not even prompt for a password.
# Note that the default vsftpd pam config also checks /etc/vsftpd.ftpusers
# for users that are denied.
anonymous
# Se abilito gli utenti NON vanno in chroot().
# Mi sa che l'utente anomymous e' un po' strano.
user1
user2
-vsftpd.conf:
anonymous_enable=YES
local_enable=YES
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
ascii_upload_enable=YES
ascii_download_enable=YES
local_umask=022
write_enable=YES
anon_upload_enable=YES
anon_umask=002
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_file=/var/log/vsftpd/vsftpd.log
xferlog_std_format=YES
pam_service_name=vsftpd
userlist_deny=NO
userlist_enable=YES
# enable for standalone mode
listen=YES
# listen_address=192.168.93.206
max_clients=100
max_per_ip=5
pasv_max_port=65535
pasv_min_port=64000
# session_support=NO
# tcp_wrappers=YES
listen_port=21
Ovvio che l'uso di man e google è implicito.....
ciao
non ho molti termini di paragone, ma ho sempre usato
vsftp. Non servono 2 istanze, se opportunamente
configurato, usi l'accesso anonimo per andare su /var/ftp
(o dove preferisci), usi l'accesso con user/passwd per
accedere alla home (in chroot) dell'utente creato.
I file di configurazione su /etc/vcftp sono:
-chroot_list:
## CHROOT() file list
anonymous
-user_list:
# vsftpd userlist
# If userlist_deny=NO, only allow users in this file
# If userlist_deny=YES (default), never allow users in this file, and
# do not even prompt for a password.
# Note that the default vsftpd pam config also checks /etc/vsftpd.ftpusers
# for users that are denied.
anonymous
# Se abilito gli utenti NON vanno in chroot().
# Mi sa che l'utente anomymous e' un po' strano.
user1
user2
-vsftpd.conf:
anonymous_enable=YES
local_enable=YES
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
ascii_upload_enable=YES
ascii_download_enable=YES
local_umask=022
write_enable=YES
anon_upload_enable=YES
anon_umask=002
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_file=/var/log/vsftpd/vsftpd.log
xferlog_std_format=YES
pam_service_name=vsftpd
userlist_deny=NO
userlist_enable=YES
# enable for standalone mode
listen=YES
# listen_address=192.168.93.206
max_clients=100
max_per_ip=5
pasv_max_port=65535
pasv_min_port=64000
# session_support=NO
# tcp_wrappers=YES
listen_port=21
Ovvio che l'uso di man e google è implicito.....
ciao