View Poll Results: Do you think that gproftpd is useful ?

Voters
872. You may not vote on this poll
  • Yes, it's easy to use and really powerful

    473 54.24%
  • Yes, but i won't use it

    136 15.60%
  • No, the GUI has to be improved

    263 30.16%
Page 116 of 123 FirstFirst ... 1666106114115116117118 ... LastLast
Results 1,151 to 1,160 of 1225

Thread: HOWTO : Create a FTP server with user access (proftpd)

  1. #1151
    Join Date
    Jun 2005
    Location
    France
    Beans
    7,100
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO : Create a FTP server with user access (proftpd)

    I bet that your FTP server name is too complex, keep your server name as simple as possible and try again.

    BTW, use QUOTE next time to post your config file, it's easier to read

  2. #1152
    Join Date
    May 2010
    Beans
    4

    Re: HOWTO : Create a FTP server with user access (proftpd)

    Still nothing. I changed ServerName to "MWI" and the ServerIdent to "MWI" as well and still nothing...

  3. #1153
    Join Date
    Jun 2005
    Location
    France
    Beans
    7,100
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO : Create a FTP server with user access (proftpd)

    Ok, so if you have still the 530 error then it is either a directory rights, user password or home network issue.

    Be sure to perform your test from the same computer that runs the server for debug.

  4. #1154
    Join Date
    Dec 2007
    Beans
    3

    Re: HOWTO : Create a FTP server with user access (proftpd)

    good tutorial. works perfectly!

    but, how can i add an anonymous user tu access ftp://mydomain.com without password ? like public one.

  5. #1155
    Join Date
    Dec 2008
    Beans
    2

    Exclamation Re: HOWTO : Create a FTP server with user access (proftpd)

    I have tried this scrips.The server works, but when authenticating The ftpuser (guest in my case) cant get access to FTP-shared .The ftp client (fireftp) never gets access.No error is displyed, so I think something must be wrong with the ownership of the folders.In my case the folder are owned by root .

  6. #1156
    Join Date
    Jul 2010
    Beans
    2

    Re: HOWTO : Create a FTP server with user access (proftpd)

    Hi, when I attempt to activate gftpd with gadmin I get " - Fatal: TLSRSACertificateFile: '/etc/gadmin-proftpd/certs/cert.pem' does not exist on line 58 of '/etc/proftpd/proftpd.conf"
    Any ideas on how to fix this? Thanks.

  7. #1157
    Join Date
    Sep 2009
    Beans
    5

    Re: HOWTO : Create a FTP server with user access (proftpd)

    How does i fix so one user is locked into

    /srcds

    another locked into those two

    /srcds
    /var/www

    The third is locked into this

    /var/www


    ?

  8. #1158
    Join Date
    Jun 2005
    Location
    France
    Beans
    7,100
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO : Create a FTP server with user access (proftpd)

    You have to use the DefautRoot command to suit your needs, by default in my tutorial the users are locked in their home directory but you can choose what you want there.

  9. #1159
    Join Date
    Apr 2010
    Beans
    3

    Re: HOWTO : Create a FTP server with user access (proftpd)

    Over FTP i can edit only those files/folders which have chmod 0700 or more. If the chmod is lower than 0700, then i get error "Operation failed".

    Code:
    My proftpd.conf file:
    #
    # /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                 off
    IdentLookups                off
    
    ServerName              "***.**"
    ServerType              standalone
    DeferWelcome                off
    
    MultilineRFC2228            on
    DefaultServer               on
    ShowSymlinks                on
    
    TimeoutNoTransfer           600
    TimeoutStalled              600
    TimeoutIdle             1200
    
    DisplayLogin                        welcome.msg
    DisplayChdir                    .message true
    ListOptions                     "-l"
    
    DenyFilter              \*.*/
    
    # Use this to jail all users in their homes 
    DefaultRoot             ~
    
    RequireValidShell  off
    # AuthUserFile  /etc/proftpd/ftpd.passwd
    # AuthGroupFile /etc/proftpd/ftpd.group
    
    # Port 21 is the standard FTP port.
    Port                    21
    
    # 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                10
    
    # 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
    
    TransferLog /var/log/proftpd/xferlog
    SystemLog /var/log/proftpd/proftpd.log
    
    <IfModule mod_quotatab.c>
        QuotaEngine off
    </IfModule>
    
    <IfModule mod_ratio.c>
        Ratios off
    </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      off
        ControlsMaxClients  2
        ControlsLog     /var/log/proftpd/controls.log
        ControlsInterval    5
        ControlsSocket      /var/run/proftpd/proftpd.sock
    </IfModule>
    
    <IfModule mod_ctrls_admin.c>
        AdminControlsEngine off
    </IfModule>
    
    # Include /etc/proftpd/sql.conf
    
    # Limit login permission only to users listed here
    <Limit LOGIN>
        DenyALL
        AllowUser ragnis
    </Limit>
    
    <Directory ~>
        <Limit READ WRITE STOR RMD DELE MKD>
            DenyALL
            AllowUser ragnis
        </Limit>
    </Directory>

  10. #1160
    Join Date
    Mar 2010
    Beans
    2

    Re: HOWTO : Create a FTP server with user access (proftpd)

    So I recently logged into my FTP server and it seems I can get out of the two main directories. Now I've copied and pasted the conf file directly and I can still get out of the upload and download directory. So it looks like I may have to re-write this whole thing again. I'm a bit of a noob with Ubuntu so what would I have to do to start from scratch?

Page 116 of 123 FirstFirst ... 1666106114115116117118 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •