Configuration proftpd (webmin)

Fermé
asus02 Messages postés 196 Date d'inscription dimanche 30 décembre 2007 Statut Membre Dernière intervention 18 septembre 2013 - 1 janv. 2008 à 19:50
jipicy Messages postés 40842 Date d'inscription jeudi 28 août 2003 Statut Modérateur Dernière intervention 10 août 2020 - 1 janv. 2008 à 20:49
Bonjour,

avant tout une bonne année 2008

mon probleme j'ai installer un serveur sous debian 4.0 etch, avec webmin comme interface.
(pas facile de trouver un tuto webmin pour novice)
bref, j'arrive a avoir acces a mon serveur via filezilla, maintenant je voudrais creer un client virtuel, et lui attribuer un espace disk,
quand je me conect a mon ftp(filezilla) avec mon compte root, cela fonctionne bien mais quand je tente de rentrer dans l'espace test
ave le login et password coila le message de filezilla :

Status: Connecting to 192.168.1.200 ...
Status: Connected with 192.168.1.200. Waiting for welcome message...
Response: 220 ProFTPD 1.3.0 Server (test) [::ffff:192.168.1.200]
Command: USER test
Response: 331 Password required for test.
Command: PASS ****
Response: 530 Login incorrect.
Error: Unable to connect!


merci
A voir également:

8 réponses

asus02 Messages postés 196 Date d'inscription dimanche 30 décembre 2007 Statut Membre Dernière intervention 18 septembre 2013 13
1 janv. 2008 à 20:24
serveur:~# cat /etc/proftpd.conf
cat: /etc/proftpd.conf: Aucun fichier ou répertoire de ce type
4
asus02 Messages postés 196 Date d'inscription dimanche 30 décembre 2007 Statut Membre Dernière intervention 18 septembre 2013 13
1 janv. 2008 à 20:47
/etc/proftpd/proftpd.conf je te l'ai mis dessus
3
jipicy Messages postés 40842 Date d'inscription jeudi 28 août 2003 Statut Modérateur Dernière intervention 10 août 2020 4 895
1 janv. 2008 à 20:34
Alors peut être dans "/usr/local/etc/proftpd.conf"

Sinon tapes en root :
updatedb
Ça peut prendre un peu de temps... puis ensuite :
locate proftpd.conf
;-)
1
jipicy Messages postés 40842 Date d'inscription jeudi 28 août 2003 Statut Modérateur Dernière intervention 10 août 2020 4 895
1 janv. 2008 à 20:00
Salut,

Il serait peut être utile de nous afficher aussi ton fichier de configuration...
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
asus02 Messages postés 196 Date d'inscription dimanche 30 décembre 2007 Statut Membre Dernière intervention 18 septembre 2013 13
1 janv. 2008 à 20:06
merci pour ta reponse rapide,

je suis un peut (beaucoup) novice c'est pour cela que j'ai opte pour l'interface webmin (mais plus ca va plus je me dit que linux ne doit pas etre fait pour moi)
peut tu me donner la marche a suivre s il te plait.
merci
0
jipicy Messages postés 40842 Date d'inscription jeudi 28 août 2003 Statut Modérateur Dernière intervention 10 août 2020 4 895
1 janv. 2008 à 20:16
Tu dois pouvoir via l'interface de Webmin avoir accès au fichier de conf, sinon ouvre un terminal et tapes :
cat /etc/proftpd.conf
et colle le résultat ici.

http://www.proftpd.org/localsite/Userguide/linked/userguide.html

;-))
0
asus02 Messages postés 196 Date d'inscription dimanche 30 décembre 2007 Statut Membre Dernière intervention 18 septembre 2013 13
1 janv. 2008 à 20:33
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#

# Includes DSO modules
Include /etc/proftpd/modules.conf

# Set off to disable IPv6 support which is annoying on IPv4 only boxes.
UseIPv6                         on

ServerName                      "Debian"
ServerType                      standalone
DeferWelcome                    off

MultilineRFC2228                on
DefaultServer                   on
ShowSymlinks                    on

TimeoutNoTransfer               600
TimeoutStalled                  600
TimeoutIdle                     1200

DisplayLogin                    welcome.msg
DisplayFirstChdir               .message
ListOptions                     "-l"

DenyFilter                      \*.*/

# Port 21 is the standard FTP port.
Port                            21

# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
# PassivePorts                    49152 65534

# 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                    30

# Set the user and group that the server normally runs at.
User                            proftpd
Group                           nogroup

# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask                           022  022
# Normally, we want files to be overwriteable.
AllowOverwrite                  on

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
# PersistentPasswd              off

# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
# UseSendFile                   off

TransferLog /var/log/proftpd/xferlog
SystemLog   /var/log/proftpd/proftpd.log

<IfModule mod_tls.c>
TLSEngine off
</IfModule>

<IfModule mod_quota.c>
QuotaEngine on
</IfModule>

<IfModule mod_ratio.c>
Ratios on
</IfModule>


# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>

<IfModule mod_ctrls.c>
ControlsEngine        on
ControlsMaxClients    2
ControlsLog           /var/log/proftpd/controls.log
ControlsInterval      5
ControlsSocket        /var/run/proftpd/proftpd.sock
</IfModule>

<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>

# A basic anonymous configuration, no upload directories.

# <Anonymous ~ftp>
#   User                                ftp
#   Group                               nogroup
#   # We want clients to be able to login with "anonymous" as well as "ftp"
#   UserAlias                   anonymous ftp
#   # Cosmetic changes, all files belongs to ftp user
#   DirFakeUser on ftp
#   DirFakeGroup on ftp
#
#   RequireValidShell           off
#
#   # 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                        welcome.msg
#   DisplayFirstChdir           .message
#
#   # Limit WRITE everywhere in the anonymous chroot
#   <Directory *>
#     <Limit WRITE>
#       DenyAll
#     </Limit>
#   </Directory>
#
#   # Uncomment this if you're brave.
#   # <Directory incoming>
#   #   # Umask 022 is a good standard umask to prevent new files and dirs
#   #   # (second parm) from being group and world writable.
#   #   Umask                           022  022
#   #            <Limit READ WRITE>
#   #            DenyAll
#   #            </Limit>
#   #            <Limit STOR>
#   #            AllowAll
#   #            </Limit>
#   # </Directory>
#
# </Anonymous>
<VirtualHost 192.168.1.200>
ServerName "test"
</VirtualHost>
<VirtualHost 192.168.1.200>
ServerName "test"
</VirtualHost>
serveur:~#
0
jipicy Messages postés 40842 Date d'inscription jeudi 28 août 2003 Statut Modérateur Dernière intervention 10 août 2020 4 895
1 janv. 2008 à 20:49
/etc/proftpd/proftpd.conf je te l'ai mis dessus
Oui j'ai vu entre temps, mais un peu tard :-))

Je ne suis pas un pro de "proftpd", de plus je n'en ai aucun en service en ce moment (je suis plutôt "vsftpd") et j'ai pas trop envie de me prendre la tête, donc inspires-toi des exemples donnés là : http://www.proftpd.org/docs/example-conf.html

De plus je ne connais pas bien Webmin, je l'ai utilisé un peu à mes débuts sous GNU/Linux et je suis vite passé à la configuration "à la mano" comme on dit, et par expérience et ouïe-dire le croisement de configuration "Interface graphique" et "Édition à la main" ne font pas bon ménage ;-((

http://guide.andesi.org/html/eproftpd.html

Bon courage.
0