How to exclude traffic in Google Analytics from Dynamic IP addresses?

后端 未结 9 684
执笔经年
执笔经年 2021-02-05 21:04

Google\'s detection of Unusual traffic is nice. But how is it handling Dynamic IP addresses?

For example,I do not have ranges of IPs and my ISP provides Dynamic IP which

9条回答
  •  半阙折子戏
    2021-02-05 21:49

    Why not simple add a filter:

    1. Go to Admin
    2. Select View Profile and create a new view
    3. Click on Filter
    4. Add New Filter
    5. Name it IP Exclusion or whatever
    6. Select the Custom Filter Radio Button
    7. Check Exclude
    8. Select IP Address as Filter Field
    9. In Filter pattern Use Regex to define the range of IP address

    For example for IP ranging from 182.73.42.140 to 182.73.42.150 The regex would be:

    ^182.73.42.(1(4[6-9]|50))$

    Here's a screenshot for same

    If you have trouble understanding RegEx, you may use this tool to create IP range regex

提交回复
热议问题