ProFTPD Direktiven

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

I've found 6 directive(s) which contains timeout

 
 NameLDAPQueryTimeout 
SyntaxLDAPQueryTimeout timeout-seconds
ContextServer config <Global> <VirtualHost>
Modulmod_ldap 
Standarddefault-api-timeout
From versionmod_ldap v2.0
Description
06.00.2003 20:02
Go to top
 
 NameTimeoutIdle 
SyntaxTimeoutIdle seconds
ContextServer config
Modulmod_core 
Standard600
From version0.99.0
Description
06.00.2003 20:02
Go to top
 
 NameTimeoutLogin 
SyntaxTimeoutLogin seconds
ContextServer config
Modulmod_core 
Standard300
From version0.99.0
Description
06.00.2003 20:02
Go to top
 
 NameTimeoutNoTransfer 
SyntaxTimeoutNoTransfer seconds
ContextServer config
Modulmod_core 
Standard300
From version0.99.0
Description
06.00.2003 20:02
Go to top
 
 NameTimeoutStalled 
SyntaxTimeoutStalled seconds
ContextServer config
Modulmod_core 
Standard3600
From version1.1.6
Description
06.00.2003 20:02
Go to top
 
 NameTimeoutSession 
SyntaxTimeoutSession [ seconds ["user"|"group"|"class" expression]]
ContextServer config <Global> <VirtualHost> <Anonymous>
Modulmod_auth 
Standard
From version1.2.6rc1 and later
DescriptionThe TimeoutSession directive sets the maximum number of seconds a control connection between the proftpd server and an FTP client can exist after the client has successfully authenticated. If the seconds argument is set to 0, sessions are allowed to last indefinitely (the default).

The optional parameters are used to restrict the session time limit only to specific users. If "user" restriction is given, then expression is a user-expression specifying to which users the time limit applies. Similarly for the "group" restriction. For the "class" restriction, the expression is simply the name of connection class for whom the time limit will apply. Note that use of the "user" or "group" classifiers within an <Anonymous> context will not make much sense.
Example 1# Kick the user off after 60 minutes
TimeoutSession 3600
Example 2# set a draconian session time limit 
TimeoutSession 60 

# set session time limits for everyone except a few privileged users 
TimeoutSession 300 user !bob,!dave,!jenni
06.00.2003 21:02
Go to top