proftpd configuration - réseaux et sécurité - Linux et OS Alternatifs
MarshPosté le 19-04-2006 à 16:11:15
Bonjour,
voici mon chemin de configuration
Citation :
#NOM DU SERVEUR ServerName "SERVEUR FTP ONLINE" #PHRASE DE BIENVENUE ServerIdent on "==> FTP CHARLES ONLINE <=="
#PARAMETRE DE LANCEMENT DU SERVER ServerType standalone #ServerType inetd DefaultServer on
#PHRASE DE CONNECTION AU SERVEUR AccessGrantMsg "Utilisateur %u autorise."
#EVITE DE DONNER DES INFOS SUR LE SERVEUR DeferWelcome off
# Use this to excude users from the chroot
# Use pam to authenticate (default) and be authoritative AuthPAMConfig proftpd AuthOrder mod_auth_pam.c* mod_auth_unix.c
# Do not perform ident nor DNS lookups (hangs when the port is filtered) IdentLookups off UseReverseDNS off
# Port 21 is the standard FTP port. Port 21
# Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask 022
# Default to show dot files in directory listings ListOptions "-a"
# Allow to resume not only the downloads but the uploads too AllowRetrieveRestart on AllowStoreRestart on
# To prevent DoS attacks, set the maximum number of child processes # to 30. If you need to allow more than 30 concurrent connections # at once, simply increase this value. Note that this ONLY works # in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd) MaxInstances 20
# Set the user and group that the server normally runs at. User nobody Group nobody
# This is where we want to put the pid file ScoreboardFile /var/run/proftpd.score
J'ai monté des partitions windows sur ma fedora core 4. J'ai créé un user charles_ftp avec comme home /partage (dossier de montage des partitions windows) Avec le user charles_ftp j'arrive a créer et ecrire dans le dossier /partage mais en FTP je n'y arrive pas. J'ai fais pour test un chmod 777 /partage et ca change rien...
Quelqu'un peut me dire comment faire ??
Merci d'avance
Message édité par charles84 le 20-04-2006 à 09:38:06
Marsh Posté le 19-04-2006 à 16:11:15
Bonjour,
voici mon chemin de configuration
#NOM DU SERVEUR
ServerName "SERVEUR FTP ONLINE"
#PHRASE DE BIENVENUE
ServerIdent on "==> FTP CHARLES ONLINE <=="
#PARAMETRE DE LANCEMENT DU SERVER
ServerType standalone
#ServerType inetd
DefaultServer on
#PHRASE DE CONNECTION AU SERVEUR
AccessGrantMsg "Utilisateur %u autorise."
#EVITE DE DONNER DES INFOS SUR LE SERVEUR
DeferWelcome off
# Use this to excude users from the chroot
# Use pam to authenticate (default) and be authoritative
AuthPAMConfig proftpd
AuthOrder mod_auth_pam.c* mod_auth_unix.c
# Do not perform ident nor DNS lookups (hangs when the port is filtered)
IdentLookups off
UseReverseDNS off
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# Default to show dot files in directory listings
ListOptions "-a"
# Allow to resume not only the downloads but the uploads too
AllowRetrieveRestart on
AllowStoreRestart on
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 20
# Set the user and group that the server normally runs at.
User nobody
Group nobody
# This is where we want to put the pid file
ScoreboardFile /var/run/proftpd.score
# Normally, we want users to do a few things.
<Global>
AllowOverwrite yes
DefaultRoot ~
</Global>
# Define the log formats
LogFormat default "%h %l %u %t \"%r\" %s %b"
LogFormat auth "%v [%P] %h %t \"%r\" %s"
J'ai monté des partitions windows sur ma fedora core 4.
J'ai créé un user charles_ftp avec comme home /partage (dossier de montage des partitions windows)
Avec le user charles_ftp j'arrive a créer et ecrire dans le dossier /partage mais en FTP je n'y arrive pas.
J'ai fais pour test un chmod 777 /partage et ca change rien...
Quelqu'un peut me dire comment faire ??
Merci d'avance
Message édité par charles84 le 20-04-2006 à 09:38:06
---------------
Charles