How to exclude IP address for an AP test?
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
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
Hi,
Knowledge base article already answers this question:
All you have to do is modify the script given there.
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
if (res)
{
return "Invalid IP";
}
else
{
return "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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.