Bonjour à tous j'ai un problème avec mon serveur FTP (ProFTP).
Je ne peux pas établir une connexion avec le serveur même si j'ai suivi presque toutes les étapes nécessaire.
J'aimerai bien que vous m'aidiez à résoudre ce problème

# Mon fichier /etc/proftpd.conf
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Includes DSO modules
Include /etc/proftpd.d/*.conf
 
ModulePath /usr/lib/proftpd
 
ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *
 
ServerName		"Serveur FTP"
ServerType		standalone
DeferWelcome		off
MultilineRFC2228		on
DefaultServer		on
ShowSymlinks		on
TimeoutNoTransfer		600
TimeoutStalled		600
TimeoutIdle		1200
DisplayLogin                      welcome.msg
DisplayChdir                      .message
ListOptions                       "-l"
DenyFilter		\*.*/
UseIPv6                            Off
AllowStoreRestart		on
Port			21
#PassivePorts                   49152 65534
MaxInstances		30
User			nobody
Group			nogroup
Umask			022  022
#DefaultRoot ~
AllowOverwrite		on
PersistentPasswd		off
#UseSendFile		off
TransferLog /var/log/proftpd/proftpd.log
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>
 
<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>
 
<Limit SITE_CHMOD>
    DenyAll
</Limit>
# Ajout d'un utilisateur dans le fichier /etc/ftpusers
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
root
bin
daemon
# ------ Dans mon cas l'utilisateur est adminftp
adminftp
# -----
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
nobody
# Redémarrage du serveur avec la commande (service proftpd restart)
Arrêt de proftpd [ OK ]
Lancement de proftpd [ OK ]
Avec FireFox ou Konqueror je tape l'adresse ftp://127.0.0.1:21

Il me demande un login et un password
Je tape Login : adminftp
Password : azerty
# J'ai attribué ce password à adminftp lors de sa création avec useradd

# Finalement je reçois un message (Connection Failed Error 530)