views:

101

answers:

2

Question: I need a way to automate routine tests that tell me if my website is reachable from remote addresses. Local tests and scripts from my own machines are not enough because these tests are inconclusive (return false positives).

Is there a service or programming trick I can use to routinely attempt to connect to my site where the connections are always external to my local subnet?

+1  A: 

You can use cURL with an external proxy.

fbonnet
+2  A: 

You could sign up with a proxy service and then make http requests to that URL. That way, the data is first retrieved from their host, which would be external to you.

Shane C. Mason
Such as www.witopia.net
MatthieuF