Configurer proftpd pour serveur anonyme tout con sous Mandrake 8.2 ?

Configurer proftpd pour serveur anonyme tout con sous Mandrake 8.2 ? - Linux et OS Alternatifs

Marsh Posté le 22-05-2002 à 08:20:32    

Hoy !
 
Voilà y a tout qui marche, apache, php, MySQLAdmin etc alors là il me reste plus qu'à faire un serveur FTP anonyme pour pouvoir mettre mes fichiers dans le repertoir /var/www/html/ depuis un autre PC... mais proftpd déconne, il se lance, mais quand j'essaye de me connecter depuis un autre PC ça me donne ça dans le client FTP sous Windows
 
Connecté à 160.53.50.227
Compiled in modules:
mod_core.c
mode_auth.c
(y en a une 15 aine comme ça)
...
...
Connexion fermée.
 
Mon fichier .conf
 
 
ServerName "powered by Linux"
 ServerType standalone
 ServerAdmin ftpadm@localhost
 DeferWelcome off
 DefaultServer on
 
# 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
 
MaxInstances 30
 
# Set the user and group that the server normally runs at.
 User nobody
 Group nogroup
 
# Normally, we want files to be overwriteable.
 <Directory />
 AllowOverwrite on
 </Directory>
 
<Anonymous /var/www/html>
 # After anonymous login, daemon runs as:
 User ftp
 Group public
 
# Client login as 'anonymous' is aliased to 'ftp'.
 UserAlias anonymous ftp
 
 # Limit the maximum number of anonymous logins
 MaxClients 10
 
 # We want 'welcome.msg' displayed at login, and '.message' displayed
 # in each newly chdired directory.
 DisplayLogin msgs/welcome.msg
 DisplayFirstChdir .message
 
 # Deny write operations to all directories, underneath root-dir
 # Default is to allow, so we don't need a <Limit> for read operations.
 <Directory *>
 <Limit WRITE>
 AllowAll
 </Limit>
 </Directory>
 
 # Only uploads into incomming directory are allowed...
 <Directory incoming>
 
 Umask 022
 
 # ... allow file storing, but not other writes
 <Limit STOR>
 AllowAll
 </Limit>
 
 </Directory>
 
</Anonymous>
 
Je dois faire quoi pour que ça marche ???
 
Merci !
 
Darx

Reply

Marsh Posté le 22-05-2002 à 08:20:32   

Reply

Marsh Posté le 22-05-2002 à 08:51:23    

Tu recuperes le RPM de pure-ftpd sur ftp://ftp.pureftpd.org/pub/pure-ftpd/ , tu mets les fichiers que tu veux rendre disponibles via ftp dans le compte nomme 'ftp', tu lances :
/usr/local/sbin/pure-ftpd -eB
 
Et c'est fini. Pas besoin de fichier de conf.

Reply

Marsh Posté le 22-05-2002 à 09:11:51    

Merci bien je va essayer ça !

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed