Forum Moderators: open
I have never used robots meta tags and heard Googlebot didn't obey them anyway. I thought there was a tag such as NOINDEX 7 DAYS or something similar I could use to slow bots down.
Would anyone else have a better idea or know if this would work with Googlebot?
Appreciated.
we had an ugly attack of altavista, taking 20 pages a second and the server just went nuts..
If you have "iptables" installed on your Linux box, create a script with any editor:
#!/bin/sh
IFACE="eth0"
iptables -I INPUT -p tcp --dport 80 -s 216.39.48.0/20 -m limit --limit 180/min -j ACCEPT
iptables -I INPUT 2 -p tcp --dport 80 -s 216.39.48.0/20 -j DROP
exchange the IPs of AltaVista with the Google network you want to slow down...
so that network would be slowed to 180 pages per minute... you might play around with that one.
P!