Forum Moderators: open

Message Too Old, No Replies

LLBKJPNATM on 141.150.18.247

         

jimmykav

4:09 pm on Jul 18, 2001 (gmt 0)

10+ Year Member



Any ideas?
resolves to NETBLK-BELL-ATLANTIC fromwhat i can see

jimmykav

4:23 pm on Jul 18, 2001 (gmt 0)

10+ Year Member



I have had 71 requests from the thing since midnight

msgraph

4:31 pm on Jul 18, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It's someone off an ADSL line. LLBKJPNATM is probably a random UA they created to grab your pages.

littleman

4:35 pm on Jul 18, 2001 (gmt 0)



adsl-141-150-18-247.nnj.adsl.bellatlantic.net
Looks like it is off line right now.

jimmykav

8:13 pm on Jul 18, 2001 (gmt 0)

10+ Year Member



Thanks for the info folks.
I guess robots.txt wont stop it!
I publish to the web using frontpage (no remarks please) any ideas on how to keep it out?

volatilegx

6:38 pm on Jul 19, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can use a .htaccess file to keep it out. Like the following (if you want to deny access to that host):

<Files *\.*>
order deny,allow
deny from adsl-141-150-18-247.nnj.adsl.bellatlantic.net
allow from all
</Files>

or the following (if you want to deny access just to that User agent):

SetEnvIf User-Agent ^LLBKJPNATM ban_me
<Files *\.*>
Order Deny,Allow
Deny from env=ban_me
Allow from all
</Files>