Forum Discussion
Bernard_9303
Nimbostratus
Feb 03, 2009SharePoint Server with SSL Offloading Configuration Issue
Hi,
I am trying to configure Big-IP for SharePoint SSL offloading. Behind the Big-IP are 2 sharepoint front end servers.
I created the virtual server and pool as per the ...
Ryan_Segura_110
Nimbostratus
Aug 17, 2005I modified the example to show some more client SSL variables, does this sound right?
when CLIENTSSL_CLIENTCERT {
set ssl_cert [SSL::cert 0]
set ssl_errstr [X509::verify_cert_error_string [SSL::verify_result]]
set ssl_stuff [list $ssl_cert $ssl_errstr]
session add ssl [SSL::sessionid] $ssl_stuff 180
}
when HTTP_REQUEST {
set ssl_stuff2 [session lookup ssl [SSL::sessionid]]
set ssl_cert2 [lindex $ssl_stuff2 0]
set ssl_errstr2 [lindex $ssl_stuff2 1]
if { $ssl_errstr2 eq "ok" } {
HTTP::header insert SSLClientCertStatus $ssl_errstr2
HTTP::header insert SSLClientCertSN [X509::serial_number $ssl_cert2]
HTTP::header insert SSLClientCertValidFrom [X509::not_valid_before $ssl_cert2]
HTTP::header insert SSLClientCertValidUtil [X509::not_valid_after $ssl_cert2]
HTTP::header insert SSLClientCertSubject [X509::subject $ssl_cert2]
HTTP::header insert SSLClientCertIssuer [X509::issuer $ssl_cert2]
} else {
HTTP::redirect http://192.168.0.64/error.html
}
}
- Why not just use split and then extract the field via lindex?
- supreme_86715Jun 13, 2012
Nimbostratus
Thank MiLK_MaN this works. Btw what editor/shell are you using the check test the irules?