2ip bot
2IP web crawler for analysis
About this crawler
2ip bot is a web crawler identified by the regular-expression pattern 2ip bot in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block 2ip bot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- 2ip bot
- Pattern
2ip bot- Tags
- seo
- Reference
- http://2ip.io
- Added
- 2023/09/08
- Instances
- 1 known sample(s)
Sample User-Agent strings
2ip bot/1.1 (+http://2ip.io)
Block this crawler
robots.txt — disallow 2ip bot:
User-agent: 2ip bot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} 2ip bot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "2ip bot") {
return 403;
}
← back to all crawlers