What's a good tool for checking from my own machine that my server is up?

Posted by chico on Super User See other posts from Super User or by chico
Published on 2013-06-16T18:52:19Z Indexed on 2013/11/12 10:01 UTC
Read the original article Hit count: 184

Filed under:

I'm looking for a good tool (web site or not) that I can use to do a simple check whether my web server is accessible from outside LAN (it's serving in a non-standard port).

To give some context, I've gone through this problem: can't access my ip from outside. Even the tools I've found are not really working.

Currently to fetch the html I serve with the online bash tool I do:

curl <my ip>:<my port> \
| sed 's/&/\&amp;/g; s/</\&lt;/g; s/>/\&gt;/g; s/"/\&quot;/g; s/'"'"'/\&#39;/g'

I'm looking for a simple tool that can display the html properly, or just show raw text without resorting to sed html escaping and curl.

© Super User or respective owner

Related posts about network-monitoring