Forum Discussion

Brian_McCullou2's avatar
Brian_McCullou2
Icon for Nimbostratus rankNimbostratus
Oct 07, 2006

Help...Trying to create an iRule to use certain client SSL_profile

All I am working on an iRule that when a client attempts to reach a URL containing "test.test.com" to use a certain SSL profile.. I have 6 urls in total that all resolve in DNS to the same IP, so my goal is to seperate each to its proper client cert with an iRule. This didn't work.

 

 

when HTTP_REQUEST {

 

if { [HTTP::uri] contains "XX1.content.com"} {

 

SSL::profile XX1.content.com

 

}

 

}