ProFTPD Direktiven

View allView all
DeutschDeutsch OfflineOffline
show also deprecated directives show also Betatest-directives
SearchSearch in  

I've found 11 directive(s) which contains max

 
 NameMaxClients 
SyntaxMaxClients number | none [message]
ContextServer config <Global> <VirtualHost> <Anonymous>
Modulmod_core 
From version0.99.0
Description
06.00.2003 20:02
Go to top
 
 NameMaxClientsPerHost 
SyntaxMaxClientsPerHost number|none [message]
ContextServer config <Global> <VirtualHost> <Anonymous>
Modulmod_core 
Standard
From version1.1.7
Description
Example 1Beispiel: 
MaxClientsPerHost 1 "Bitte nicht öfters als 1x verbinden" 

Ergebnis: 530 Bitte nicht öfters als 1x verbinden
Example 2
02.00.2004 05:01
Go to top
 
 NameMaxHostsPerUser 
SyntaxMaxHostsPerUser number|none [message]
Context<Global> <VirtualHost> <Anonymous>
Modulmod_core 
Standard
From version1.2.4
DescriptionThe MaxHostsPerUser directive configures the maximum number of times different hosts, using a given login, can connect at any given time. The optional argument message may be used which will be displayed to a client attempting to exceed the maximum value. If message is not supplied, a default message of "Sorry, the maximum number of hosts (%m) for this user already connected."
Example 1
Example 2
02.00.2004 05:01
Go to top
 
 NameMaxInstances 
SyntaxMaxInstances number
ContextServer config
Modulmod_core 
From version1.1.6pl1
Description
06.00.2003 20:02
Go to top
 
 NameMaxLoginAttempts 
SyntaxMaxLoginAttempts number
ContextServer config <Global> <VirtualHost>
Modulmod_core 
Standard3
From version0.99.0
Description
06.00.2003 20:02
Go to top
 
 NameControlsMaxClients 
SyntaxControlsMaxClients number
ContextServer config
Modulmod_ctrls 
Standard5
From version1.2.8rc1 and later
Description
Example 1
Example 2
02.00.2004 05:01
Go to top
 
 NameMaxClientsPerUser 
SyntaxMaxClientsPerUser [ MaxClientsPerUser number|none [message]]
ContextServer config <Global> <VirtualHost> <Anonymous>
Modulmod_auth 
Standard
From version1.2.7rc1 and later
DescriptionThe MaxClientsPerUser directive configures the maximum number of clients that may be connected at any given time using the same user name. The optional argument message may be used which will be displayed to a client attempting to exceed the maximum value. If message is not supplied, a default message of "Sorry, the maximum number of clients (%m) for this user already connected."
Example 1MaxClientsPerUser 1 "Only one such user at a time."
#Results in: 530 Only one such user at a time.
Example 2
02.00.2004 05:01
Go to top
 
 NameMaxRetrieveFileSize 
SyntaxMaxRetrieveFileSize [ number|"*" units ["user"|"group"|"class" expression]]
ContextServer config <Global> <VirtualHost> <Anonymous> .ftpaccess <Directory>
Modulmod_xfer 
Standard
From version1.2.7rc1 and later
DescriptionWhen downloading files to clients (eg serving a RETR request), the server will check for any configured limit against the size of the file being requested, and abort any transfers if the requested file's size exceeds the configured limit.

A single "*" argument configures unlimited file sizes, and is used primarily to override any inherited restrictions from higher contexts. The given number is the number of bytes for the limit, and is followed by a units specifier of (case-insensitive) "Gb" (Gigabytes), "Mb" (Megabytes), "Kb" (Kilobytes), or "B" (bytes). The given number of bytes is multiplied by the appropriate factor.

The optional parameters are used to restrict the file size limits only to specific users. If the "user" restriction is given, then expression is a user-expression specifying to which users the rule applies. Similarly for the "group" restriction. For the "class" restriction, the expression is simply the name of connection class for whom the rule will apply. If no matching user, group, or class expression is found for the current user (in that order), then a limit with no expression (i.e. no "user", "group", or "class" identifier) is applied.

See Also: MaxStoreFileSize
Example 1# Download bis zu 1 GB erlauben
MaxRetrieveFileSize 1 Gb
Example 2# Den Download nur für den User "fred" begrezen 
# für alle anderen aber nicht begrenzen
MaxStoreFileSize 50 Kb user fred
MaxStoreFileSize *
02.00.2004 04:02
Go to top
 
 NameMaxConnectionRate 
SyntaxMaxConnectionRate [ connections per second]
ContextServer config
Modulmod_core 
Standard
From version1.2.7rc1 and later
DescriptionSet the maxiumum rate at which new TCP connections are accepted, this applies to the entire server, therefore too low a value on a high traffic server can result in all VirtualHosts being made unavailable due to normal traffic levels.

The value is the number of connections in a given second at which the block comes into effect, thus a value of "1" will result in all connections being blocked.
Example 1MaxConnectionRate 4
Example 2
06.00.2003 21:02
Go to top
 
 NameMaxStoreFileSize 
SyntaxMaxStoreFileSize [ number|"*" units ["user"|"group"|"class" expression]]
ContextServer config <Global> <VirtualHost> <Anonymous> .ftpaccess <Directory>
Modulmod_xfer 
Standard
From version1.2.7rc1 and later
DescriptionWhen uploading files from a client (eg serving a STOR request), the server will check for any configured limit against the size of the file being sent, and abort any transfers if/when the given file's size exceeds the configured limit.

A single "*" argument configures unlimited file sizes, and is used primarily to override any inherited restrictions from higher contexts. The given number is the number of bytes for the limit, and is followed by a units specifier of (case-insensitive) "Gb" (Gigabytes), "Mb" (Megabytes), "Kb" (Kilobytes), or "B" (bytes). The given number of bytes is multiplied by the appropriate factor.

Weiterhin kann man durch die Angabe eines Users, einer Gruppe oder ein Klasse die Ausfuehrung des Befehls aus eben diese beschraenken. Sollte dabei keine Angabe zutreffen, so wird der Befehl dann nicht ausgefuehrt.

Ausserdem: MaxRetrieveFileSize
Example 1# Restrict upload to only 3 megabytes
MaxStoreFileSize 3 Mb
Example 2# Restrict anonymous uploads to 50k, 
# but allow unlimited upload size for everyone else
MaxStoreFileSize 50 Kb user anonymous
MaxStoreFileSize *
02.00.2004 04:02
Go to top
 
 NameMaxClientsPerClass 
SyntaxMaxClientsPerClass name number|"none" [message]
ContextServer config <Global> <VirtualHost>
Modulmod_auth 
StandardNone
From version1.2.10RC1
DescriptionThe MaxClientsPerClass directive configures the maximum number of clients
that may be connected at any given time from the same Class. The
optional argument message may be used which will be displayed to a client
attempting to exceed the maximum value. If message is not supplied, a default
message of "Sorry, the maximum number of clients (%m) from your class are
already connected."</para>
Example 1NEU
Example 2NEU
05.00.2004 03:01
Go to top