Skip Headers

Oracle® Application Server Single Sign-On Administrator's Guide
10g (9.0.4)

Part Number B10851-01
Go To Documentation Library
Home
Go To Product List
Solution Area
Go To Table Of Contents
Contents
Go To Index
Index

Go to previous page Go to next page

6
Multilevel Authentication

This document explains how to configure a single sign-on system that assigns different authentication levels to different partner applications. Such a system enables the administrator to tailor authentication behavior to the security level of the application requested.

The document contains the following topics:

What Is Multilevel Authentication?

OracleAS Single Sign-On enables you to assign different authentication levels to the applications that it protects. You can then map these authentication levels to specific authentication plugins. You might, for example, configure a highly sensitive application to require a user certificate and a less sensitive application to require a user name and password.

How Multilevel Authentication Works

Figure 6-1 illustrates how multilevel authentication works.

Figure 6-1 Multilevel Authentication Flow

Text description of ssoag037.gif follows

Text description of the illustration ssoag037.gif

  1. The user has already authenticated to Application A. He now goes to Application B.

  2. Application B redirects the user to the single sign-on server.

  3. Because Application B has a higher authentication level than Application A, the single sign-on server forces the user to authenticate again, this time with a higher credential.


    Note:

    In release 9.0.4, authentication is at the root level of a partner application. You cannot assign authentication levels to URLs under the root.


Components of a Multilevel System

The following topics are key to understanding how multilevel authentication works:

Authentication Levels

Authentication levels are parameters that enable you to specify a particular authentication behavior for an application. You use the policy.properties file to configure the authentication level names and values that make up these parameters. This file is in $ORACLE_HOME/sso/conf. A copy of it appears in Appendix C.

Table 6-1 provides examples of authentication levels. You can customize these to suit your deployment requirements and can provide additional ones.

Table 6-1 Default Authentication Levels
Authentication Level Names Authentication Level Values

LowSecurity

20

LowMediumSecurity

30

MediumSecurity

40

MediumHighSecurity

50

HighSecurity

60

The authentication level names must be unique. For example, a system that includes both NoSecurity=10 and NoSecurity=20 is unacceptable. The lower the numeric value of a level, the lower the level of security.

Users who log in at a high level such as MediumHighSecurity and then attempt to access a lower-level application are not rechallenged for credentials. Conversely, users who log in at a low-level application such as LowMediumSecurity and then attempt to access a higher-level one are challenged with the required level.

Authentication Plugins

An authentication plugin is an implementation of a specific authentication method. This method collects a user's credentials and authenticates him.

You can pair one of the authentication levels introduced in the preceding section with one of the authentication methods described in the bulleted list that follows. The authentication level that an authentication plugin maps to is deployment specific. You use policy.properties to achieve the pairing.

Configuring Multilevel Authentication

Applications not configured for a specific authentication level default to password authentication and are assigned an authentication level of MediumSecurity. If you require a different authentication level, you must modify policy.properties. Use the configuration scenario that follows for guidance.

Usage Scenario

This usage scenario explains how two hypothetical partner applications are configured to use different authentication levels and plugins. It assumes these conditions:

Configuration Steps

Modify policy.properties with the following configurations.

  1. Choose the name of the authentication level from policy.properties. If necessary, add a new authentication level and corresponding name to the file.

  2. Assign authentication levels to the root URLs of the two partner applications:

    pa1.mydomain.com\:7777 = HighSecurity
    pa2.mydomain.com\:7777 = MediumSecurity
    
    


    Note:

    Be sure to include the backslash after the domain name.


  3. Assign authentication plugins to the authentication level names that you assigned in step 1:

    HighSecurity_AuthPlugin = oracle.security.sso.server.auth.SSOX509CertAuth
    MediumSecurity_AuthPlugin = oracle.security.sso.server.auth.SSOServerAuth
    

  1. Save policy.properties; then restart the single sign-on middle-tier. For instructions, see "Stopping and Starting the OC4J_SECURITY Instance".

  2. Test the partner applications.


Go to previous page Go to next page
Oracle
Copyright © 1996, 2003 Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Solution Area
Go To Table Of Contents
Contents
Go To Index
Index