Expand my Community achievements bar.

Join us for an upcoming in-person Adobe Target Skill Builders event ~~> We're hosting these live learning opportunities to equip you with the knowledge and skills to leverage Target successfully. Learn more to see if we'll be coming to a city near you!
SOLVED

How to exclude IP address for an AP test?

Avatar

Level 1

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

1 Accepted Solution

Avatar

Correct answer by
Level 10

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 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

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

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 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