Forum Discussion

Rahim_Abdul_re1's avatar
Rahim_Abdul_re1
Icon for Nimbostratus rankNimbostratus
Aug 22, 2017

Send traffic parallel base on URI

Is it possible to send traffic parallel on multiple host on basis on URI. One host has SSL enable while other does not and we need to send traffic on both at the same time.

I build a iRule but we are facing issue while sending a traffic to pool FCDB-Staging.

when HTTP_REQUEST { set uri [HTTP::uri] if { [HTTP::uri] contains "/T001/mds" } { SSL::disable serverside set uri [HTTP::uri] HTTP::header replace "Host" "1.1.1.1" HTTP::uri $uri pool CMD log local0. "New URI: $uri"

} else { 
    pool FCDB-Staging
} 

}

1 Reply

  • You can potentially use K13392 to send traffic to clone pool. However, sending traffic encrypted to one pool and unencrypted to another seems to be tough to achieve based on my understanding. What is the underlying technical reason for such a request ? May be understanding this will help someone to provide you with a simpler solution.