LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   ProFTPd permissions (https://www.linuxquestions.org/questions/linux-networking-3/proftpd-permissions-404533/)

jeucken 01-17-2006 01:08 PM

ProFTPd permissions
 
Once again I am at a loss.

I'm running Proftp 1.2.10.

I created a couple of users that can succesfully login to my FTP server.

But when they upload a file or create a directory it gives Umask 002.
I checked the proftpd.conf a zillion times and it really says Umask 775. (don't start about security, my server is still in it's testing phase)

Code:

# 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                        "FTP Server"
ServerType                        standalone
DefaultServer                        on

# Port 21 is the standard FTP port.
Port                                21

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

# 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                        20

# Set the user and group under which the server will run.
User                                wwwrun
Group                                jeucken

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

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

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

# A basic anonymous configuration, no upload directories.  If you do not
# want anonymous users, simply delete this entire <Anonymous> section.
#<Anonymous ~ftp>
#  User                                ftp
#  Group                                ftp
#
#  # We want clients to be able to login with "anonymous" as well as "ftp"
#  UserAlias                        anonymous ftp
#
#  # Limit the maximum number of anonymous logins
#  MaxClients                        10
#
#  # We want 'welcome.msg' displayed at login, and '.message' displayed
#  # in each newly chdired directory.
#  DisplayLogin                        welcome.msg
#  DisplayFirstChdir                .message
#
#  # Limit WRITE everywhere in the anonymous chroot
#  <Limit WRITE>
#    DenyAll
#  </Limit>
#</Anonymous>

It happens with every user.
I've also checked that I'm modifying the correct config file.
The Umask now says 0775 0755.
I tried setting two Umasks after each other. Maybe it needed one for file and one for directory. But that also didn't make a difference.

Please help. :(

jeucken 01-18-2006 02:21 AM

Anyone? :(

bathory 01-18-2006 03:28 AM

I don't understand what you want to achieve but since you give umask=0775 then the file/dir attributes should be 0002.Take a look here to clarify the usage of umask.

jeucken 01-18-2006 03:54 AM

Quote:

Originally Posted by bathory
I don't understand what you want to achieve but since you give umask=0775 then the file/dir attributes should be 0002.Take a look here to clarify the usage of umask.

I just got the same from a friend. ;)

I will study the link you gave me and get back on this. (I don't think I'm the only one that confuses chmod with umask ;))


All times are GMT -5. The time now is 04:38 PM.