04-Jun-2016 08:31
I'm trying to insert remote address for the below http uri in IRULE (no X-forward)
If i request for URL like https://www.abcd.com/123/ then that becomes
‘https://www.abcd.com/123/?remote-addr=10.10.10.5®ex10.10.10.5’ only for the query it must match
Rule in Apache:
RewriteRule ^(/123/.+)$ $1\?remote-addr=%{REMOTE_ADDR}\®ex=%{REMOTE_ADDR} [PT,QSA]
Appreciate irule coders!!!
04-Jun-2016
10:11
- last edited on
04-Jun-2023
17:26
by
JimmyPackets
Hi,
here an example you can use :
when HTTP_REQUEST {
set client_ip [IP::client_addr]
if { [HTTP::host] eq "www.abcd.com" and [HTTP::path] eq "/132/" } {
if { [HTTP::query] eq "" } {
HTTP::query "remote-addr=$client_ip®ex=$client_ip"
} else {
HTTP::query "[HTTP::query]&remote-addr=$client_ip®ex=$client_ip"
}
}
}