Forum Discussion

Rahim_Abdul_reh's avatar
Rahim_Abdul_reh
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
} 

}

No RepliesBe the first to reply