Forum Discussion
behavior of SSL::disable serverside
- Feb 11, 2023
Better give the config of list ltm virtual xxx and serverside tcpdump to watch whether F5 send clienthello to this pool member
modify this iRules to test:
when HTTP_REQUEST { set usessl 0 switch -glob [string tolower [HTTP::uri]] { "/path1/*" { set usessl 1 pool POOL-path1 persist cookie insert cookie1 } "/path2/*" { set usessl 1 pool POOL-path2 persist cookie insert cookie2 } "/path3/*" { set usessl 0 # SSL::disable serverside pool POOL-path3 } default { set usessl 1 } } } when SERVER_CONNECTED { log local0. "usessl value is $usessl" if { $usessl == 0 } { SSL::disable } }
your iRules and vs config look normal,iRules Home SSL::disable says:
Disables SSL processing on one side of the LTM. Sends an SSL alert to the peer requesting termination of SSL processing
is F5 send SSL alert packet on the serverside to the pool member cause this scene?
so,you need to tcpdump in serverside watch whether F5 send ClientHello or SSL alert to the http pool member
xuwen, you're the man!
Improved iRule worked like a charm. And yes, before the changes I saw the attempt of SSL handshake with the server.
/Mike
- xuwenFeb 12, 2023Cumulonimbus
Because SSL:: disable describes that it will send an ssl alert message to the peer, and I'm not sure because I did not experiment with VE.
In short, iRules Home should simply describe the scope of use of the function, and BIGIP VE should do the experiment for the specific details. In the previous few days [TCP:: option get 28], someone directly copied the example Code displayed by CLIENT_ACCEPTED event, cause [string length [TCP::option get 28] value is 0, Let Akamai capture packets. Akamai truely carry the tcp option 28 field, Finally, take VE to test and find that this situation should be CLIENT_DATA event use [TCP::option get 28] and not in CLIENT_ACCEPTED event
iRules Event flow order display SSL::disable should be in CLIENT_ACCEPTED or SERVER_CONNECTED event
Here is the link to the iRule Events flow order
https://clouddocs.f5.com/training/community/irules/html/class1/module1/iRuleEventsFlowHTTPS.html
Recent Discussions
Related Content
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com