
Oracle IAS is a rebranded version of Apache with some PL/SQL modules. Oracle implements secure connections via SSL using the standard Apache module, mod_ssl. This module can then be configured to authenticate via certificates, as well as using SSL to secure the connection.
The first step in implementing authentication via certificates with a web server for Oracle, is to set up the web server as described in the "Server Setup" section of the document Web Page Access Control Using PKI.
Once that is done, the configuration file for the PL/SQL module must be modified so that it passes the appropriate authentication environment variables along.
cgi_env_list = SSL_CLIENT_S_DN_CN,SSL_CLIENT_S_DN_O,SSL_CLIENT_S_DN_OU,SSL_CLIENT_VERIFY,REMOTE_PORT
ssl_client_verify := OWA_UTIL.GET_CGI_ENV('SSL_CLIENT_VERIFY');
if ssl_client_verify = 'SUCCESS' then
dnd_name := OWA_UTIL.GET_CGI_ENV('SSL_CLIENT_S_DN_CN'); -- cert common name
realm := OWA_UTIL.GET_CGI_ENV('SSL_CLIENT_S_DN_O'); -- cert organization not kerberos realm
end if;
Some distributions of IAS do not have the Makefile that is needed for the creation of the links to make mod_ssl work properly. Just copy the Makefile from another installation of mod_ssl, and edit the path pointing to OpenSSL.
Back to PKI Lab HomeDartmouth College PKI Lab
Last update: 17 June 2003