• # proftpd.conf

    Posté par . En réponse au message Protfpd : utilisateurs à la volée. Évalué à 1.

    problème de balises, désolé

    # This is a basic ProFTPD configuration file (rename it to
    # 'proftpd.conf' for actual use. It establishes a single server
    # and a single anonymous login. It assumes that you have a user/group
    # "nobody" and "ftp" for normal operation and anon.

    ServerName erwanlinux
    ServerType standalone
    DefaultServer on

    # Allow FTP resuming.
    # Remember to set to off if you have an incoming ftp for upload.
    AllowStoreRestart on

    # Port 21 is the standard FTP port.
    Port 21
    PassivePorts 7000 7010

    # Umask 022 is a good standard umask to prevent new dirs and files
    # from being group and world writable.
    Umask 022

    # To prevent DoS attacks, set the maximum number of child processes
    MaxInstances 10

    # Set the user and group under which the server will run.
    User nobody
    Group nogroup

    # To cause every FTP user to be "jailed" (chrooted) into their home
    # directory, uncomment this line.
    DefaultRoot /home/erwan/ftp

    # Normally, we want files to be overwriteable.
    AllowOverwrite on

    # Bar use of SITE CHMOD by default
    <Limit SITE_CHMOD>
    DenyAll
    </Limit>

    # Needed for NIS.

    PersistentPasswd off

    #drakwizard_proftpd
    <Global>
    <Limit LOGIN>
    Order allow,deny
    Allow from all
    Deny from all
    </Limit>
    </Global>
    #drakwizard_proftpd

    <Anonymous /home/erwan/ftp>
    <Limit LOGIN>
    AllowAll
    </Limit>
    RequireValidShell off
    AnonRequirePassword off
    User ftp
    Group ftp
    UserAlias anonymous ftp
    MaxClients 10 "Désolé maximum %m connecté"
    </Anonymous>

    RootLogin off
    AllowForeignAddress on
    AllowRetrieveRestart on
    DirFakeUser off nobody
    LogFormat auth "%v [%P] %h %t "%r" %s"
    Extendedlog /var/log/proftpd/ftp.log
    UseReverseDNS off
    LogFormat default "%h %l %u %t "%r" %s %b"
    SystemLog /var/log/proftpd/proftpd.log
    DisplayConnect /etc/banner-proftpd
    DirFakeGroup off nobody
    DeleteAbortedStores off
    IdentLookups off
    DeferWelcome on
    TimesGMT off
    TransferLog /var/log/proftpd/xferlog
    AccessGrantMsg " -- Guest access granted for %u --"
    ServerIdent off
    LogFormat write "%h %l %u %t "%r" %s %b"
    AccessDenyMsg " !-!! ACCESS DENY !!-! SEEMS YOU HAVE NO RIGHT THERE !!"