Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Background:

I recently bought a router (Linksys E4200) that is capable of creating a "guest network" giving guest at my home access to only the internet. To use the feature I need the router to be configured as such (not running as a switch) as there needs to be a seperation between the networks on the WAN and LAN ports.

The challange is that I already have an ISP (Zyxel Prestige 660) supplied router that also takes care of the phone lines, and therefor cannot easily be replaced.

Problem

So I decided to create a setup of the two routers chained to create two subnets: one private (with NAS and personal documents attached) and one public for guests of the house.

The Setup looks like this:

          Internet
             |
             |
       [Zyxel router]
  (WAN IP: ISP provided IP)
    (LAN IP: 192.168.0.1)
             |
             |
       Public network
 (192.168.0.1-192.168.0.255)
             |
             |
      [Linksys router]
   (WAN IP: 192.168.0.2)
   (LAN IP: 192.168.1.1)
             |
             |
       Private network
(192.168.1.1-192.168.1.255)

Everything seems to be running fine with this setup. The Linksys router has two wifi access points, one for guests with access only to the public network and one for me that gives access the private network as well.

My problem comes when I want to set up the network translation (NAT) so that people on the internet gets access to my WebServer running on the NAS on the private network.

The NAS has the IP 192.168.1.100, and the steps I am doing is:

  1. On the Zyxel router I set up a NAT rule that all trafic should go to Linksys router on 192.168.0.2.
  2. On the Linksys router I set up a rule that HTTP traffic (port 80) should go to the NAS on 192.168.1.100

Apparently I am missing something as this does not work. I can access the webserver on both the NAS IP (192.168.1.100) and the external IP of the linksys router (192.168.0.2), but not from My ISP provided IP address.

Any ideas?

Thank you for reading! -Ricky

share|improve this question
just for fun did you test the zyxel config to know that you are setting it correctly? I.e. move your NAS (or put another web server temporarily) on the guest net ... then see if you can reach from ISP IP – nhed May 2 '12 at 14:50
Also ... is there a requirement from the ISP to use the zyxel? – nhed May 2 '12 at 14:51
I did try to move the NAS to the Public network (this was my old setup) and the NAT was working fine here. – RickyKaare May 2 '12 at 14:57
No requirement to use the Zyxel router from the ISP, but since my phones are conected to it, the requirement is comming from the Mrs. – RickyKaare May 2 '12 at 14:59
To refine the last question ... Is the WAN interface on the Zyxel Ethernet or other (DSL, coax, ...) if its ethernet - why not put the linksys first as it supports the guest feature, and connect the zyxel after? – nhed May 2 '12 at 21:01
show 5 more comments

closed as off topic by RivieraKid, Bobrovsky, Daniel Kelley, M42, Lukas Knuth Feb 11 at 12:46

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

The internet router, which uses NAT is set by you to perform "port forwarding" because it uses NAT. The internal router is not using NAT (hopefully) and therefore, port forwarding is irrelevant.

You may try and follow this:

  1. Add a route at the internet router towards the internal network (to reach 192.168.1.0/24, go through 192.168.0.2). Note that this is routing and not any type of forwarding.

  2. On the internet router, at its forwarding port rule, set the private address of your NAS. It should be able to reach it because you implemented stage 1 and a route exists.

This should work fine as long as you do not set any NAT or port forwarding on the internal router.

Good luck.

share|improve this answer
what is the big issue with double-NAT? and as for your #2, that is what he said he is doing (as I understand it) – nhed May 3 '12 at 15:31
Double NAT introduces complexity and may impose limitations with some applications (SIP, FTP). Using NAT where there is no need for it, is a bad practice. Regarding #2, as I understood it,he pointed to the inner router address and not the private NAS address. – EdwardH May 4 '12 at 16:27

Best and fastest troubleshooting would be to go through your chain. Your starting point of choice would be to make sure your ISP is not blocking traffic on port 80. If they do; have your ISP router listen on an open port and route internally to port 80.

Move your NAS to your 'public network' and have your ISP router route http traffic to the nas. Check your logs on the routers when you go along your network. Use wireshark to see the actual packets.

share|improve this answer

Long shot in the dark ...

maybe the Linksys has remote-management enabled, or even if its not, may reserve port 80 for that ... see about disabling, or changing the port.

Alternatively you could map WAN:80 to LINKSYS:8888 on the Zyxel and map WAN:8888 to NAS:80 on your Linksys.

share|improve this answer
I did leave the remote management feature turned off, so unfortunately not the issue :-( – RickyKaare May 7 '12 at 15:33

Not the answer you're looking for? Browse other questions tagged or ask your own question.