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 18 of 123 FirstFirst ... 816171819202868118 ... LastLast
Results 171 to 180 of 1225

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

  1. #171
    Join Date
    May 2006
    Beans
    2

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

    Any assistance will be golden, I just cant seem to get this to work !

  2. #172
    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)

    Did you read this post ?
    http://www.ubuntuforums.org/showpost...2&postcount=81

    Sorry, i can't help you more because i'm not an expert about router things.

    Maybe a thread in the server talk sub-forum will provide you the help you need.

  3. #173
    Join Date
    Mar 2006
    Location
    Johannesburg, South Africa
    Beans
    44
    Distro
    Ubuntu Breezy 5.10

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

    What do I need to change to allow each user to access his home folder?
    Chuck Norris' tears cure cancer. Too bad he has never cried.

  4. #174
    Join Date
    Jan 2006
    Location
    Gloucester,Australia
    Beans
    856
    Distro
    Ubuntu 6.06

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

    I have set up a ftp but when i go to login i dont no the name or password can some1 help me this is my conf

    ServerType standalone
    DefaultServer on
    Umask 022
    ServerName cameronsftp
    ServerIdent on "My FTPD"
    Bind "0.0.0.0"
    ServerAdmin suped_up_supra_01@hotmail.com
    IdentLookups off
    UseReverseDNS off
    Port 21
    PassivePorts 49152 65534
    #MasqueradeAddress None
    TimesGMT off
    MaxInstances 30
    MaxLoginAttempts 3
    TimeoutLogin 300
    TimeoutNoTransfer 120
    TimeoutIdle 120
    User cameron
    Group cameron
    DirFakeUser off nobody
    DirFakeGroup off nobody
    DefaultTransferMode binary
    AllowForeignAddress on
    AllowRetrieveRestart on
    AllowStoreRestart on
    DeleteAbortedStores off
    TransferRate RETR 30
    TransferRate STOR 40
    TransferRate STOU 40
    TransferRate APPE 40
    SystemLog /var/log/secure
    #gp_random_username_length 6
    #gp_random_password_length 6
    #gp_randomize_case lower
    #gp_useradd_root_path /home/ftp
    #gp_useradd_upload_path /upload
    #gp_html_path /var/www/ftp.html
    #gp_welcome_name welcome.msg
    <IfModule mod_tls.c>
    TLSEngine off
    TLSRequired off
    TLSVerifyClient off
    TLSProtocol TLSv1
    TLSLog /var/log/proftpd_tls.log
    TLSRSACertificateFile /etc/gproftpd/gproftpd.pem
    </IfModule>
    <Limit LOGIN>
    AllowUser cameroncalver
    AllowUser cameron
    DenyALL
    </Limit>

    <Anonymous /home/FTP-shared>
    User cameroncalver
    Group cameroncalver
    AnonRequirePassword on
    MaxClients 3 "The server is full, hosting %m users"
    DisplayLogin welcome.msg
    DisplayFirstChdir .msg
    AllowOverwrite off
    <Limit LOGIN>
    Allow from all
    Deny from all
    </Limit>
    <Limit ROOT_DIR_ALLOW RETR LIST NLST MDTM SIZE STAT CWD XCWD PWD XPWD CDUP XCUP>
    AllowAll
    </Limit>
    <Limit ROOT_DIR_DENY DELE APPE STOR STOU SITE_CHMOD SITE_CHGRP RNFR RNTO MKD XMKD RMD XRMD>
    DenyAll
    </Limit>
    <Directory /home/FTP-shared/linux.png/*>
    AllowOverwrite on
    <Limit UPLOAD_DIR_ALLOW LIST NLST MDTM SIZE SITE STAT APPE RETR STOR STOU MKD XMKD CWD XCWD PWD XPWD CDUP XCUP>
    AllowAll
    </Limit>
    <Limit UPLOAD_DIR_DENY DELE SITE_CHMOD SITE_CHGRP RMD XRMD RNFR RNTO>
    DenyAll
    </Limit>
    </Directory>
    </Anonymous>

    <Anonymous /home/FTP-sharedp>
    User cameron
    Group cameron
    AnonRequirePassword on
    MaxClients 3 "The server is full, hosting %m users"
    DisplayLogin welcome.msg
    DisplayFirstChdir .msg
    AllowOverwrite off
    <Limit LOGIN>
    Allow from all
    Deny from all
    </Limit>
    <Limit ROOT_DIR_ALLOW RETR LIST NLST MDTM SIZE STAT CWD XCWD PWD XPWD CDUP XCUP>
    AllowAll
    </Limit>
    <Limit ROOT_DIR_DENY DELE APPE STOR STOU SITE_CHMOD SITE_CHGRP RNFR RNTO MKD XMKD RMD XRMD>
    DenyAll
    </Limit>
    <Directory /home/ftp/upload/*>
    AllowOverwrite on
    <Limit UPLOAD_DIR_ALLOW LIST NLST MDTM SIZE SITE STAT APPE RETR STOR STOU MKD XMKD CWD XCWD PWD XPWD CDUP XCUP>
    AllowAll
    </Limit>
    <Limit UPLOAD_DIR_DENY DELE SITE_CHMOD SITE_CHGRP RMD XRMD RNFR RNTO>
    DenyAll
    </Limit>
    </Directory>
    </Anonymous>

    cameron@ubuntu:~$
    Last edited by CameronCalver; June 3rd, 2006 at 06:12 AM. Reason: adding stuff in
    This is the dumbest error I found in bios
    "Error Keyboard Failure Press F1 to continue or DEL to enter setup
    Amd Athlon 64 2800+, 1gb Ram, ATI Radeon HD3650 512mb, Western digital 160gb Segate 80gb, Gigabyte GaK8NS ,Cameron

  5. #175
    Join Date
    Jan 2006
    Location
    Gloucester,Australia
    Beans
    856
    Distro
    Ubuntu 6.06

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

    I fixed the problem
    This is the dumbest error I found in bios
    "Error Keyboard Failure Press F1 to continue or DEL to enter setup
    Amd Athlon 64 2800+, 1gb Ram, ATI Radeon HD3650 512mb, Western digital 160gb Segate 80gb, Gigabyte GaK8NS ,Cameron

  6. #176
    Join Date
    Mar 2006
    Location
    Johannesburg, South Africa
    Beans
    44
    Distro
    Ubuntu Breezy 5.10

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

    Anyone?
    Chuck Norris' tears cure cancer. Too bad he has never cried.

  7. #177
    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)

    LordMerlin, you want to use several users in your FTP server and you want that each of this user use its own home directory as FTP directory ?
    It's not really secure, could you explain me why you want to do that and what you want to do and i will try to find a secure way to do that, if you agree obviously

  8. #178
    Join Date
    Mar 2006
    Location
    Johannesburg, South Africa
    Beans
    44
    Distro
    Ubuntu Breezy 5.10

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

    No, I want each user (normal Linux user) to have access to his folder via FTP, can that be done?
    Chuck Norris' tears cure cancer. Too bad he has never cried.

  9. #179
    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)

    Sure it can be done.
    Creates one directory for each home user directory under FTP-shared. Then in your proftpd.conf add a section like that for each directory :
    Code:
    <Directory /home/FTP-shared/user1-homedir/*>
    Umask 022 022
    AllowOverwrite off
           <Limit ALL>
    		Order Allow,Deny
    		AllowUser user1
    		Deny ALL
    	</Limit>
    	<Limit MKD STOR DELE XMKD RNEF RNTO RMD XRMD>
    	DenyAll
    	</Limit>
    </Directory>
    Also add each user in the <Limit LOGIN> section and create an alias for each one in the proftpd.conf file.
    Then link the home directories in those created in FTP-shared like that :
    Code:
    sudo mount -o bind /home/user1 /home/FTP-shared/user1-homedir
    In the example i gave you you will only be able to download in these directories.

  10. #180
    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)

    By the way, did some tried this guide with dapper ?

    Thanks for the feedback.

Page 18 of 123 FirstFirst ... 816171819202868118 ... 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
  •