abhilashs786367
05-07-2017
I want to exclude the following IP's to exclude from AP test? Can i exclude them in the audience?
162.115.0.0 - 162.115.255.255
137.188.0.0 - 137.188.255.255
72.96.0.0 - 72.127.255.255
Amit_Kumar
MVP
Hi,
Knowledge base article already answers this question:
Adobe Target Help | How to create audiences based on specific IP using Profile scripts in Adobe Targ...
All you have to do is modify the script given there.
var strIp= user.header('x-cluster-client-ip');
var
strIp= user.header(
'x-cluster-client-ip'
);
var res = /^(192.236.17.44)$/.test(strIp);// change this to match the list of you IP address
res = /^(192.236.17.44)$/.test(strIp);// change this to match the list of you IP address
if (res)
if
(res)
{
return "Invalid IP";
return
"Invalid IP"
;
}
else
return "Valid IP";
"Valid IP"
The idea is very Simple, Create a default test segment for all IP address so that this will not impact you reporting or anything.
Regards,
Amit