Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 
Custom Alert Banner

Apache to irule (inserting IP address in HTTP request/query)

SathishF5Dasam
Nimbostratus
Nimbostratus

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}\&regex=%{REMOTE_ADDR} [PT,QSA]

 

Appreciate irule coders!!!

 

1 REPLY 1

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&regex=$client_ip"
        } else {
            HTTP::query "[HTTP::query]&remote-addr=$client_ip&regex=$client_ip"
        }
    }
}