Bonsoir
Alors je débute avec SME Server 7 et j'ai quelques problèmes avec le fichier de configuration :
- J'utilise VirtualHost et MasqueradeAddress pour pouvoir accès au FTP depuis le réseau local ou le net, mais VirtualHost n'a pas l'air pris en compte
- Lorsque je change le port 21 par un autre je ne peu plus me connecter au FTP ni sur 21 ni sur le nouveau
- Enfin il me semble que la cbox pose problème pour le mode PASV même avec transfert de ports
Si vous avez quelques idées ou suggestions, merci d'avance
#------------------------------------------------------------
# !!DO NOT MODIFY THIS FILE!!
#
# Manual changes will be lost when this file is regenerated.
#
# Please read the developer's guide, which is available
# at http://www.contribs.org/development/
#
# Copyright (C) 1999-2006 Mitel Networks Corporation
#------------------------------------------------------------
AllowRetrieveRestart on
AllowStoreRestart on
DefaultRoot /home/e-smith/files
DefaultServer on
DenyFilter \*.*/
DisplayFirstChdir .message
DisplayLogin welcome.msg
Group public
IdentLookups off
MaxInstances 30
ScoreboardFile /var/run/proftpd/scoreboard
ServerAdmin admin@ctvim.local
ServerIdent off
ServerName "ProFTPD e-smith installation"
ServerType inetd
UseFtpUsers on
UseReverseDNS off
User public
Port 21
PassivePorts 60000 60250
<VirtualHost 192.168.99.1>
MasqueradeAddress 192.168.99.1
</VirtualHost>
<VirtualHost monserveur.no-ip.info>
MasqueradeAddress monserveur.no-ip.info
</VirtualHost>
<Directory /*>
<Limit WRITE>
DenyAll
</Limit>
<Limit SITE_CHMOD>
DenyAll
</Limit>
</Directory>
<Limit LOGIN>
Order Allow,Deny
Allow from 127.0.0.1, 192.168.100.0/24, 192.168.99.0/24
Deny from all
</Limit>
<Directory ~/home>
AllowOverwrite on
Umask 007
<Limit WRITE>
AllowAll
</Limit>
</Directory>
<Directory /home/e-smith/files/ibays/Primary/*>
AllowOverwrite on
GroupOwner shared
Umask 027
<Limit WRITE>
AllowAll
</Limit>
</Directory>
<Anonymous /home/e-smith/files/ibays/Primary/files>
User public
Group public
UserAlias anonymous public
UserAlias ftp public
AnonRequirePassword off
UseFtpUsers on
MaxClients 10
DisplayLogin welcome.msg
DisplayFirstChdir .message
<Limit LOGIN>
AllowAll
</Limit>
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
</Anonymous>