Forum Discussion
Al_Estrellas
Nimbostratus
Nov 25, 2020How to modify client-ssl on multiple VS using TMSH
Hi, I was able to get the list of virtual servers using cert1 for example by list and grep. Now, I want to use TMSH to use the CLI in replacing client-ssl cert1 to cert2. If I have like ...
spark_86682
Aug 05, 2009Historic F5 Account
There is no way to do that. SERVER_DATA is only triggered when the server sends data and there's a TCP collect on the server side. You can't be guaranteed to start that collect in CLIENT_DATA because there may not be a server side connection yet. The best way is to set a variable in whatever event you are in when you know you need to collect server data, and then do something like:
when SERVER_CONNECTED {
if { $need_to_collect } {
TCP::collect
}
}