Setting authentication preferences |
Top Previous Next |
Administrators may authenticate with JSCAPE MFT Server using a variety of different authentication protocols. To view the current authentication method used go to Settings > Manager Service > Authentication.
Local Authentication is the most basic form of authentication, authenticating against local administrative accounts created using JSCAPE MFT Server Manager.
Figure 213
Database Authentication allows you to authenticate an administrator based on whether the user has credentials to connect to a database. When connecting to the supplied JDBC URL the username and password provided at time of login are used to login to the JDBC URL. If user authenticates successfully with the JDBC URL then user is considered a valid administrator of the JSCAPE MFT Server service.
Figure 214
JDBC URL - The JDBC URL used to connect to the database. Libraries for JDBC drivers must be placed in the libs/jdbc directory of your JSCAPE MFT Server installation, the JSCAPE MFT Server Service restarted and the JDBC driver class registered in Settings > JDBC Drivers in order for the database to be accessible to JSCAPE MFT Server.
Create user if not found using role - This allows for administrative accounts to be created automatically upon successful authentication. If selected, an administrator will be created automatically (if it does not exist already) using the specified Role.
Convert username before creation to - If enabled, the username supplied will be converted to specified case prior to creation.
Database Query Authentication allows you to authenticate an administrator based on the results of a database query. If one or more records are returned from the query then the administrator is successfully authenticated.
Figure 215
JDBC URL - The JDBC URL used to connect to the database. Libraries for JDBC drivers must be placed in the libs/jdbc directory of your JSCAPE MFT Server installation, the JSCAPE MFT Server Service restarted and the JDBC driver class registered in Settings > JDBC Drivers in order for the database to be accessible to JSCAPE MFT Server
User - The username to connect with when authenticating with JDBC database.
Password - The password to connect with when authenticating with JDBC database.
SQL query - The query to perform to authenticate the user. There are two special variables that may be used when performing the database query %username% and %password% which refer the username and password passed in during the authentication process. Note, SQL queries and stored procedures may be used, however stored procedures which make use of output parameters may not be used. The variables %username% and %password% are treated as strings so must be enclosed in single quotes.
Password hash class - The Java class to use for hashing password before passing to SQL query. If no class is specified then password will be passed to SQL query in clear text.
Create user if not found using role - This allows for administrators to be created automatically upon successful authentication. If selected, an administrator will be created automatically (if it does not exist already) using the specified Role.
Convert username before creation to - If enabled, the username supplied will be converted to specified case before passing username to SQL query and Role.
LDAP User Authentication allows you to authenticate an administrator based on whether the user has the credentials to connect to the LDAP or Active Directory service.
Figure 217
Host - The hostname or IP address of the LDAP service.
Port - The port of the LDAP service.
Timeout - The connection timeout when connecting to LDAP service.
User DN - The users distinguished name for authenticating with the LDAP service. The variable %username% may be used which refers to the username passed in during the authentication process.
Use SSL connection - Connect to LDAP server using SSL connection.
Allow anonymous binding - Sets whether user can bind anonymously to LDAP directory.
Use failover server - If enabled and primary LDAP server is inaccessible then authentication will be attempted against failover server.
Create user if not found using role - This allows for administrative accounts to be created automatically upon successful authentication. If selected, an account will be created automatically (if it does not exist already) using the specified Role.
Convert username before creation to - If enabled, the username supplied will be converted to specified case before passing username to specified Role.
LDAP Query Authentication allows you to authenticate an administrator user based on the results of a LDAP query and is a two step authentication process.
If one or more records are returned from the query then the user is successfully authenticated.
Figure 218
Host - The hostname or IP address of the LDAP service.
Port - The port of the LDAP service.
Timeout - The connection timeout when connecting to LDAP service.
User DN - The users distinguished name for authenticating with the LDAP service.
Search user DN - The user distinguished name used for performing LDAP search query.
Password - The user password for performing LDAP search query.
Base DN - The base distinguished name in which to perform the filter.
Filter - The filter to execute using the LDAP filter syntax. There are two special variables that may be used when performing the database query, %username% and %password% which refer the username and password supplied by the user during the authentication process.
Hash password class - The Java class to use for hashing password before passing to filter. If no class is specified then password will be passed to Filter in clear text.
Use SSL connection - Connect to LDAP server using SSL connection.
Use failover server - If enabled and primary LDAP server is inaccessible then authentication will be attempted against failover server.
Create user if not found using role - This allows for administrative users to be created automatically upon successful authentication. If selected, an administrative account will be created automatically (if it does not exist already) using the specified Role.
Convert username before creation to - If enabled, the username supplied will be converted to specified case before passing username to specified Role.
See also
When using LDAP Query Authentication you must define a filter that will be used to identify the record you are searching for. The syntax of LDAP filters are defined in RFC 2254. The table below provides a list of valid expressions and their meanings.
Using NTLM Authentication you may authenticate against an existing Windows domain.
Figure 219
Host - The IP address of Windows domain controller.
Windows domain - The name of the Windows domain to which users belong.
Create user if not found using role - This allows for accounts to be created automatically upon successful authentication. If selected, an account will be created automatically (if it does not exist already) using the specified Role.
Convert username before creation to - If enabled, the username supplied will be converted to specified case before passing username to specified Role.
Using PAM Authentication you may authenticate against an existing UNIX PAM user repository. In order to use the PAM Authentication module you must install some native libraries that allow JSCAPE MFT Server to communicate with your PAM user repository.
Figure 220
Enable debug to file system_output.log - Sends debugging information to file system_output.log in installation directory.
Create user if not found using role - This allows for accounts to be created automatically upon successful authentication. If selected, an account will be created automatically (if it does not exist already) using the specified Role.
Convert username before creation to - If enabled, the username supplied will be converted to specified case before passing username to specified Role.
Using RADIUS authentication you may authenticate against an existing RADIUS server.
Figure 221
Local address - The local UDP address for socket binding.
Server address - The server address of RADIUS server.
Server port - The server port of RADIUS server.
Timeout - The timeout in seconds for connecting to RADIUS server.
Max retransmit attempts - The maximum number of retransmission attempts when there is no response from the RADIUS server
Identifier - The identifier value of the RADIUS server.
Shared secret - The shared secret value of the RADIUS server.
Create account if not found using role - This allows for accounts to be created automatically upon successful authentication. If selected, an account will be created automatically (if it does not exist already) using the specified Role.
Convert username before creation to - If enabled, the username supplied will be converted to specified case before passing username to specified Role.
Using custom authentication you may define your own custom authentication class. To do so perform the following.
1. Create a class which implements the com.jscape.inet.mft.subsystems.administrator.authentication.AuthenticationService class.
2. Overload the public void authenticate(AuthenticationCredentials creds) method, throwing a com.jscape.inet.mft.subsystems.administrator.authentication.OperationException exception if authentication fails or returning the username of administrator if authentication passes.
3. Create a JAR file that contains the compiled version of your com.jscape.inet.mft.subsystems.administrator.authentication.AuthenticationService implementation. To compile your authentication class you will need to include the ftpserver.jar library in your classpath. The ftpserver.jar library may be found in the libs directory for JSCAPE MFT Server.
4. Place the JAR file created in Step 3 as well as any needed 3rd party JAR files into the libs/ext directory of your JSCAPE MFT Server installation.
5. Restart the JSCAPE MFT Server Service.
6. Open JSCAPE MFT Server Manager and go to Settings > Manager Service > Authentication and change the Service to custom authentication and click Apply.
An example implementation com.jscape.inet.mft.subsystems.administrator.authentication.TestAuthenticationService is also found in the ftpserver.jar file for testing.
Figure 207
Example
The following example is taken directly from the TestAuthenticationService example provided in ftpserver.jar library. There are two exception types that MAY be thrown as part of this example UnsupportedCredentialsTypeException and InvalidCredentialsException. In the event that UnsupportedCredentialsTypeException is thrown JSCAPE MFT Server will pass the credentials up and attempt to validate against local credentials stored within JSCAPE MFT Server instead of using the logic provided in custom authentication class. If InvalidCredentialsException is thrown then credentials will not be passed up and user will immediately be denied access.
package com.jscape.inet.mft.adapter;
import java.util.Scanner;
public class TestAuthenticationService
implements AuthenticationService {
@Override
public String authenticate(AuthenticationCredentials credentials)
throws OperationException {
if (credentials instanceof PasswordCredentials) {
return authenticate((PasswordCredentials) credentials);
} else if (credentials instanceof TokenCredentials) {
return authenticate((TokenCredentials) credentials);
}
throw new UnsupportedCredentialsTypeException(credentials); }
private String authenticate(PasswordCredentials credentials)
throws OperationException {
assertPasswordValid(credentials.username, credentials.password, credentials);
return credentials.username;
}
private String authenticate(TokenCredentials credentials)
throws OperationException {
try {
Scanner scanner = new Scanner(credentials.token).useDelimiter(":");
String username = scanner.next();
String password = scanner.skip(":").nextLine();
assertPasswordValid(username, password, credentials);
return username;
} catch (InvalidCredentialsException e) {
throw e;
} catch (Exception e) {
throw new InvalidCredentialsException(credentials);
}
}
private void assertPasswordValid(String username, String password, AuthenticationCredentials credentials)
throws InvalidCredentialsException {
if (!username.equals(password)) {
throw new InvalidCredentialsException(credentials);
}
}
}
|