Setting Up an Asus Router Behind an ISP Modem: My Unexpected Gotchas
I bought an Asus RT-BE88U router because my ISP-provided Fritzbox WiFi was, to put it mildly, absolute garbage. What I thought would be a simple "plug it in and go" situation turned into a two-hour troubleshooting adventure that taught me more about networking than I ever wanted to know.
This is that story. No pretending I knew what I was doing. Just the actual messy process of figuring it out.
The Starting Point
What I had:
- Brand new Asus RT-BE88U still in the box
- Fritzbox modem/router combo from Digiweb (my ISP)
- Shockingly bad WiFi coverage
- Confidence that this would be easy
What I knew about networking:
- Enterprise troubleshooting, VLANs, routing protocols, complex network issues
- Consumer router setups behind ISP modems? Not my area
Step 1: Understanding Double NAT (Or Not Understanding It)
The first thing I learned is that my Fritzbox isn't just a modem - it's a router too. Which means when I add the Asus, I'm creating what's called "double NAT."
When someone first explained this to me, I got a whole technical breakdown about Network Address Translation and routing tables and... honestly, this is all enterprise networking stuff I deal with daily. But I needed it in consumer terms.
As I understand it now: both routers are translating network addresses. The Fritzbox translates from your ISP's public IP to its internal network (192.168.178.x), then the Asus translates again to its own network (192.168.50.x). Packets go through two address translations before reaching the internet.
At this point, I was worried this was going to cause problems. Everything I read said "double NAT is bad" but nobody could really explain why in a way I understood. Gaming? Servers? I don't do any of that.
I decided to just try it and see what happens.
Step 2: Physical Setup
This part was actually straightforward:
- Unbox the Asus (finally)
- Connect ethernet cable from Fritzbox LAN port to Asus WAN port (the blue one)
- Power everything up
- Download the Asus Router app
The app walked me through initial setup, asking me to choose between creating a new network or extending an existing one. I chose "new network" and selected DHCP as my WAN type, accepting the other defaults.
Then came the fun part: picking a WiFi name. After cycling through metal puns, Stephen King references, and various nerdy jokes, I landed on something that made me laugh. That part took longer than the actual setup.
Step 3: Everything Seemed Fine (It Wasn't)
The Asus app said setup was complete. I could see my new WiFi network broadcasting. The app showed everything as connected and happy.
But when I tried to actually use the internet... nothing. No connection.
Step 4: Down the Troubleshooting Rabbit Hole
Problem #1: WAN IP showing 0.0.0.0
The Asus router settings showed my WAN IP as 0.0.0.0, which apparently means "I'm not getting an IP address from the Fritzbox."
First attempts to fix:
- Rebooted the Asus (didn't work)
- Rebooted the Fritzbox (didn't work)
- Checked the physical connections (all good)
- Questioned my life choices (very effective, but didn't fix the internet)
Problem #2: The DHCP Mystery
I logged into my Fritzbox (at fritz.box or 192.168.178.1) and found something interesting. The Fritzbox could see a device connected to port 4 - listed as "PC-86-FB-ED-94-40-49" (definitely my Asus router based on the MAC address). But it wasn't assigning it an IP.
The DHCP server was enabled, with plenty of available addresses in the range. So why wasn't it working?
At this point I was stuck. The Asus should be getting an IP via DHCP automatically, but it just wasn't happening. I checked the Fritzbox settings - everything looked fine. No obvious DHCP conflicts, no MAC filtering blocking the Asus.
I thought: if DHCP isn't working, just assign a static IP manually. Standard troubleshooting step.
I picked 192.168.178.50 - well above the Fritzbox's default DHCP range (starts at .20) to avoid conflicts.
The Fix: Static IP Configuration
In the Asus router settings, I changed from DHCP to Static IP and manually entered:
- IP Address:
192.168.178.50 - Subnet Mask:
255.255.255.0 - Default Gateway:
192.168.178.1 - DNS Server:
192.168.178.1
This bypassed the DHCP issue entirely. The Asus app suddenly showed a valid WAN connection!
Progress! Except...
Problem #3: Router Has Internet, Devices Don't
My phone connected to the new WiFi just fine. It got an IP address in the 192.168.50.x range. I could access the Asus router settings at its default address, 192.168.50.1. Everything looked perfect.
But still no actual internet.
The Diagnostic That Revealed Everything
I tried accessing the Fritzbox (192.168.178.1) from my phone while connected to the Asus WiFi. It failed completely.
The Asus couldn't talk to the Fritzbox. Even though they were physically connected. Even though the Asus showed a valid WAN connection. The routing between them was completely broken.
I verified all the WAN settings were correct. I tried pinging from the router's diagnostic tools. Nothing worked.
Then I tried something stupid simple.
The Actual Fix: Wrong Port
I unplugged the ethernet cable from LAN port 4 on the Fritzbox and plugged it into port 3 instead.
It immediately worked.
Port 4 apparently had some restriction or configuration I never figured out. I checked Fritzbox logs, firewall rules, VLAN settings, port-specific configs - nothing obvious. Port 3 worked, so I moved on.
What I Learned
1. Start Simple When something doesn't work, start with the physical layer. Different port? Different cable? Sometimes the answer is that basic.
2. Work Layer by Layer
- Can the router see the modem? (Yes - device showed up in Fritzbox)
- Can the router get an IP? (No - fixed with static IP)
- Can the router reach the internet? (No - wrong port)
- Can devices reach the router? (Yes)
- Can devices reach the internet through the router? (Finally, yes)
3. Double NAT Isn't Scary For 95% of home use, double NAT works perfectly fine. The internet loves to make it sound like a critical issue, but for browsing, streaming, and normal life, it's completely transparent.
4. Learning in Public Means Sharing the Mess I didn't know what I was doing. I made wrong assumptions. I tried things that didn't work. And that's the point - this is what real learning looks like. Not polished tutorials where everything works perfectly the first time.
The Current Setup
I now have:
- Fritzbox handling the ISP connection
- Asus RT-BE88U connected via LAN port 3 (not 4, very important)
- Static IP configuration on the WAN side
- Separate 2.4GHz, 5GHz, and 6GHz WiFi networks
- Coverage throughout my entire house
- No more dead zones
Is it optimal? Probably not. Could I further optimize by putting the Fritzbox in bridge mode? Sure. But it works, it's fast, and I'm not touching it again until something breaks.
So... What Actually Worked?
I went with static IP configuration in the end. DHCP just refused to cooperate on the Fritzbox (port 4 was the actual problem, but I didn't know that yet), and once I figured out how to set the Asus manually, everything connected immediately.
Double NAT? I ended up leaving it alone. Everything I need - browsing, streaming, regular stuff - works fine. If I ever need port forwarding for something, I'll deal with it then.
The whole thing took way longer than it should have, mostly because I was plugged into the wrong LAN port. But I got there.
Having router troubles? Different experience? Let me know - I'm always learning.