Cannot Access Web GUI after changing to Router mode DD-WRT

dd-wrtnetworkingrouterwireless-networkingwireless-router

I have a wireless router running DD-WRT (the latest version) and I set it up to be a Repeater Bridge to function as a second router, which means I had to change the Local IP Address and change the router mode to "Router" from "AP" mode. After I did so all devices connected to this router network properly and connect to each other and the internet, but I cannot access the second router's Web GUI. As a matter of fact, all devices connected to the router point to the primary router (AP mode) as being the Gateway and Router, and I can access the primary router's Web GUI.

Any idea how to access the second router's Web GUI? Any ideas are appreciated.

Best Answer

To use DD-WRT as a router, you have to connect to the primary router via the WAN port. Using a LAN port will use the bridge functionality.

If you properly connect to the primary router via WAN, here is what you need to do to function properly.

Assume Primary router is 10.0.0.1/24

  1. Assign (or DHCP) an IP address to second router (on primary), say 10.0.0.2/24. This makes second router another device on the 10.0.0.0/24 subnet and it can talk to all devices on that subnet. Set its gateway to be 10.0.0.1

  2. Use a different subnet on the second router and setup in NAT mode. say 10.0.1.0/24 and give it an address 10.0.1.1/24. Enable DHCP on this router as well, since you want it to give out addresses on its local domain.

    This allows all devices on the second router to talk to each other. And for all non-local addresses to send it via the uplink for the primary router to handle.

  3. On the primary router, add a new route.

    destination 10.0.1.0/24 -> 10.0.0.2

    All responses coming back to the 10.0.1.0/24 address range now will be forwarded to the secondary router.

Related Question