we have a requirement to insert a text in the http header when a request is originating from a client node. the list of client nodes will be set as a data-group list and the incming request will check the client ip against a data-group list and if matches it will insert the text, if not it will send the request to the node as is. i am looking something like this…
when HTTP_REQUEST { if { (not [matchclass [IP::remote_addr] equals $::server_list]) and ([matchclass [string tolower [HTTP::uri]] contains $::access_control_uri]) insert “text”} { pool deny-pool } else { pool test-Pool }
is this possible? }