Tham_T__330907
Nov 17, 2017Nimbostratus
Any iRules that acts as Virtual Server for By-Pass Cert
F5 APM with SWG module, so this F5 acts as Proxy and Intercept Cert.
I have a problem about intercept certificate some website cannot use it, then I solved that problem by create the new virtual machine and fixed the destination of each website's IP. (nslookup)
But I think it's not a good solution, because If some website occurs like this problem more, I have to add more virtual server. So I try to use iRules to by-pass the destination by using iRules.
when CLIENT_ACCEPTED {
if { [ IP::Addr [IP::local_addr] equals "xxx.xxx.xxx.xxx" ] } {
SSL::disable
}
}
But it's did not work, please could you suggest me for the iRules command.