Skip to main content

How to TEST a web server or FTP server?


First you should test whether another computer on your local LAN can log into the server.

Do this by entering the Static IP address of the server in the Address Bar of your web browser (for a web server), or by using an FTP client (for an FTP server).

Use the INTERNAL IP address of the computer the server is running on, the one you've already configured as a STATIC IP address.

This will test whether the server is configured correctly. If you can’t log in locally like this, no one from the Internet is going to be able to log in either.

Once you can log in from your local LAN, most people immediately want to try logging in just like someone out on the Internet would do it, by entering the EXTERNAL IP address of the router into the web browser or FTP client.

And then they freak out because it doesn’t work. If anything, they get the router’s login screen, not the server. And nothing they do to the router or the server makes it work. And they tear their hair out for days, because it SHOULD work, but it doesn’t.

And actually- it WILL NOT work this way.

You CAN NOT test a server by trying to log into the EXTERNAL (or “Public”) IP address (the WAN interface) from a computer that is located on the INTERNAL (or “Private”) side of the router.

The router simply WILL NOT pass the connection attempt through from the Local LAN side OUT to the External WAN side of the router, then BACK IN to the Local LAN side, to the server.

This is called a “loopback” and most of the small routers used for home networks don’t have loopback testing implemented.

Think of it this way- the router is DOING its job. It’s supposed to “route” the connection to its proper destination, and it KNOWS the destination (the server) is on the LOCAL side, so it WON’T route the connection in the wrong direction.

So- how do you test a server..?

For a complete test, you need to test it from OUTSIDE the local network. From somewhere ELSE on the Internet, OUTSIDE the router. From a friend’s house, from your workplace, from a library or an Internet Café. Call a friend and have them do it.

Anywhere that is NOT on your local LAN.

If you still have a "dialup" account with your ISP and a modem attached to a phone line, it should be possible to dialup a connection and access your web or FTP server that way because the dialup connection isn't going through the router.

If you don't still have dialup, there are a few other things you can try:

In the case of a web server, there’s actually a rather clever workaround that will at least indicate whether your web site is visible from outside, and that can be tested from INSIDE your local LAN.

#1 With your normal web browser, go to http://web-sniffer.net/

#2 If this server:

a) does not have SSL support, type in http:// enter your EXTERNAL IP address and port number as need be, just like anyone on the Internet would to view your web site. This is your router's "WAN" IP address, the one assigned by your ISP.

b) has support for SSL, type in https:// enter your EXTERNAL IP address and port number as need be, just like anyone on the Internet would to view your web site. This is your router's "WAN" IP address, the one assigned by your ISP.

#3 Press Submit

#4 You should see the HTTP Headers of your web server.

** And for FTP servers, place holder for FTP Directions ***

Remember, for a complete test, to see your site as others will from out on the Internet, you need to test it from somewhere outside your router.

But however you do it, you may be pleasantly surprised to find out it’s actually working already..!

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...