N_67263
Aug 28, 2017Nimbostratus
iRule which strips of the domain name and replaces that with another domain name.
Team, Can anyone help me with an iRule which strips of the domain name and does a DNS query with some other domain name? e.g. The F5 intercepts a request on "xyz.externaldomain.com". F5 strips of the externaldomain.com and replaces this with "xyz.internaldomain.com" and does a lookup. The IP address returned in the lookup is used for the node in the VIP.
Thanks!! N.
Hi,
Maybe the following irule may help you :
when HTTP_REQUEST { if { [HTTP::host] contains "xyz.externaldomain.com" } { HTTP::header replace Host "xyz.internaldomain.com" } }
You may also use
command to make the replacement more dynamicstring map