Link to home
Start Free TrialLog in
Avatar of Dkota
Dkota

asked on

Blocking (1) IP Address

I have one particular website that is viewing all my information, ideas and hardwork and duplicating it on his website. I would like to know 1) how can I find out his IP address?
                  2) how can I prevent him from viewing my website
                      including my home page? Thank you
ASKER CERTIFIED SOLUTION
Avatar of ghana
ghana
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Either ping or tracert in command mode will give you the ip address. To block it you will have to go to server side technology to block it. If you you can use ASP on your system then make your pages .asp and structured like so

<% request.ServerVariables("REMOTE_HOST")  <>  'ip address to block'  then%>
 
HTML content of page

<%End If %>
 
You drop a cookie off on his machine by e-mailing him an URL with some info he might want to see. You can enquire of the cookie as it is yours and block him form seeng the pages. Once you are sure he has opened the page delete it. (probably violated EE membership agreement by saying that)
Concerning the variable IP address problem you will be forced to block the domain as he will be coming (probably) through a proxy.