Configure Form-based to Form-based Authentication
- Last Updated: May 13, 2025
- 2 minute read
- LoadMaster
- LoadMaster GA
- Documentation
To configure form-based to form-based authentication on the LoadMaster, first create a client-side Single Sign On (SSO) domain (Virtual Services > Manage SSO). Refer to the Edge Security Pack (ESP) Feature Description for further information.
Then, configure the Virtual Service by following the steps below in the LoadMaster Web User Interface (WUI):
- In the main menu, go to Virtual Services > View/Modify Services.
- Click Modify on the relevant Virtual Service.
- Expand the ESP
Options section.
- Select the Enable ESP check box.
- Select Form Based as the Client Authentication Mode.
- Select the relevant SSO Domain.
- Select Form Based as the Server Authentication Mode.
- Enter the Form Authentication Path and click Set Path.
- Enter the Form POST Format and click Set POST Format.
This feature is predominantly used in Microsoft Exchange deployments and it has only been tested with Exchange 2013 and 2016. The following strings do not need to be explicitly configured for Exchange 2013/2016. They are used by default in the implementation:
- Form Authentication Path: /owa/auth.owa
- Form POST Format: destination=%s#authRedirect=true&flags=4&forcedownlevel=0&username=%s&password=%s&passwordText=&isUtf8=1
If the deployment is not Exchange, we recommend that the settings are evaluated based on the required interaction with the Real Server and subsequently set appropriately.
POST Body Format
The server may require a specific POST body format. Essentially, this is the POST with the user credentials in the body.
The credentials are collected from the client (the username and password collected on the Progress Kemp SSO form) and they are printed into this string, along with the destination string (URL string).
To identify POST content for other target Real Servers, you could:
- Connect the client directly to the Real Server
- Use Fiddler, if necessary
- Use the form-based authentication from the Real Server
- Examine what is POSTed to the Real Server when submitting the credentials
For example, if the POST looks like:
example=example&user=JBLOGGS&password=INSECUREPASS&example2=example2
The configuration string should be:
destination=%s&example=example&user=%s&password=%s&example2=example2
If there is a requirement for more than three dynamic pieces of information, then it will likely not work.