Back to product page
- Introduction
- Overview
- License agreement
- Getting Started
- Objects
- Enumerations
- wodFTPD
- Methods
- Properties
- Authentication
- BindIP
- BindIPType
- Certificate
- DirFormat
- Encryption
- EncryptionList
- FileLocking
- FIPS
- ForceUTF8
- GoodbyeMessage
- GreetingMessage
- HMacList
- HostKeyList
- KeyExchangeList
- MaxDataPort
- MinDataPort
- MonitorTransfers
- MyHostname
- MyIP
- Notification
- PasvPort
- Port
- Protocol
- Secure
- ServerName
- SFTPVersion
- Status
- StrictDataIP
- Threads
- Timeout
- UseIPv6
- Users
- Version
- VirtualFiles
- VirtualFolders
- Events
- wodFTPDNotify
- FtpUser
- FtpUsers
- VirtualFile
- VirtualFiles
- VirtualFolder
- VirtualFolders
- How to get support?
- Technical information
- Fast notifications interface
- Error list
Authentication property
Determines allowed/required authentication types.
Type
An AuthenticationsEnum enumeration.Syntax
- Basic
object.Authentication [= value]
The Authentication(object,value) syntax has these parts:
The Authentication(object,value) syntax has these parts:
object | An expression evaluating to an object of type wodFTPD. |
value | An AuthenticationsEnum enumeration, as described in settings. |
Remarks
This property determine client authentications allowed/required when user connects to wodFTPServer.By default, this is set to authAny - clients can send their password, but also their certificate to login.
When wodFTPServer is running as plaintext FTP server, certificate/privatekey authentication is not possible.
The settings for value are:
Constant | Value | Description |
---|---|---|
authBoth | 0 | Require both authentications. |
authPassword | 1 | Allow password authentication. |
authCertificate | 2 | Allow public key authentication. |
authNone | 3 | No authentication required. |
authAny | 4 | Allow any. |