Selfhosting static site behind two routers?
from pythia@lemmy.dbzer0.com to selfhosted@lemmy.world on 26 Apr 13:02
https://lemmy.dbzer0.com/post/43032998

For the very first time i tried to selfhost a static site (lighttpd + duckdns) but I’ve failed… Is it even possible to selfhost a static site from “router 2” while i’m behind two routers? “Router 1” is from ISP and i have no possibility to change any settings except subnet, standard gateway, dhcp on/off and DMZ. -> no port forwarding. "Router 2 is Asus with port-forwarding available and i’m using an OpenVPN configuration on it (if that matters). DuckDNS could see the external ip from R2, but i couldn’t access it.

#selfhosted

threaded - newest

markstos@lemmy.world on 26 Apr 13:05 next collapse

Yes. DMZ on router 1 exposes router 2 IP to internet.

badlotus@discuss.online on 26 Apr 16:48 collapse

This right here. Since you can’t really configure the ISP router (1), DMZ is the way to go. The DMZ feature on home routers usually allows you to select a specific device or devices to add to the DMZ so make sure to reserve/set a static IP on your router (2) and configure the DMZ on your ISP router (1) to include only that specific IP. DMZ essentially forwards all ports to that device.

perishthethought@lemm.ee on 26 Apr 13:12 next collapse

Hey, I’m doing this now, using DuckDNS. But I had to forward a port thru Router 1, as you call it. That’s your problem.

Maybe Tailscale would help you? (I’ve not used it though)

Or, instead of allowing port 80/443 traffic in, what I have is a random port used by my Wireguard VPN opened only. But I have to connect thru that when I’m not at home. I. E. only I can access my web server.

just_another_person@lemmy.world on 26 Apr 13:17 next collapse

You’re going to get double NAT’d if you don’t have a proper passthrough. Is there a specific reason you have two routers setup like this?

Onomatopoeia@lemmy.cafe on 26 Apr 14:18 collapse

Probably because the ISP modem/router has limited capability.

I’ve done 2 routers like this for years (out of laziness more than anything) because cable modem router suck from a capability standpoint.

just_another_person@lemmy.world on 26 Apr 14:25 next collapse

The actual cable modem can run in passthrough mode though. Look up the model and find the docs. Should be a quick and easy change, or your ISP at least should able to change it. It would be absurd if not.

pythia@lemmy.dbzer0.com on 26 Apr 14:44 collapse

the ISP locked their router. I have to go the the ISP’s site, login and change settings there… can’t even change DNS on ISP-router.

just_another_person@lemmy.world on 26 Apr 14:47 collapse

That’s a bummer. Have you asked them about running it in passthrough mode?

pythia@lemmy.dbzer0.com on 26 Apr 15:04 collapse

No I haven’t. First i got to educate myself what these different modes are…

just_another_person@lemmy.world on 26 Apr 15:13 collapse

Passthrough in this sense just means that the ISP cable modem only acts as a modem, handing off all traffic to your router to control. Essentially it just disabled NAT so you won’t have double-NAT’ing happening. It’s a standard setting on all cable modems, so I know that part is possible, but it’s more about getting your ISP to enable that if they have it locked.

pythia@lemmy.dbzer0.com on 26 Apr 14:37 collapse

that’s exactly why.

possiblylinux127@lemmy.zip on 26 Apr 18:15 collapse

Is the ISP device a cable modem or is it fiber?

You may be able to replace it with your own stuff

pythia@lemmy.dbzer0.com on 26 Apr 18:25 collapse

it’s fiber.

possiblylinux127@lemmy.zip on 26 Apr 18:48 collapse

Do you have a username and password for PPP? You could replace the device with something with a SPF port

Another option is that you could turn off masquerading (NAT) on the Asus router. This may not work but if you have different IP ranges on each device theoretically it would avoid double NAT

BrightCandle@lemmy.world on 26 Apr 13:31 next collapse

The DMZ for the ISPs router forward to the second router, then everything that hits your outside IP will be forwarded to router 2. Then on Router 2 you open the ports for your service and forward to the internal machine. That should all work fine.

pythia@lemmy.dbzer0.com on 26 Apr 14:39 collapse

Thank you, will try. I was afraid of DMZ …

Jason2357@lemmy.ca on 26 Apr 13:42 next collapse

Either DMZ on the first router, or bridge mode on the second.

couch1potato@lemmy.dbzer0.com on 26 Apr 14:56 next collapse

I’m actually behind 3 routers and still hosting stuff to the internet. My house is behind cgnat, I have two isp routers, which both connect to a pfsense router (ip of which is in the dmz of each isp router).

My pfsense router and a free vps hosted at oracle are both connected via tailscale. Pfsense router advertises specific subnet addresses to the tailnet. VPS uses caddy to reverse proxy to those subnet addresses to expose them to the internet.

Xanza@lemm.ee on 26 Apr 15:23 next collapse

DuckDNS is just unreliable, I’ve found. Try HurricaneElectric; dns.he.net

possiblylinux127@lemmy.zip on 26 Apr 18:14 next collapse

You don’t want two routers as that creates a double NAT

Setup a service and them install Tailscale/Netbird on your devices. The reason double NAT is bad is that it can break NAT traversal used to allow you to directly remote access a device away from home.

[deleted] on 26 Apr 18:58 next collapse

.

fishynoob@infosec.pub on 26 Apr 22:41 next collapse

Yes, but DMZ is a better solution if you want to let Router 2 handle your network

uranibaba@lemmy.world on 26 Apr 22:43 collapse

You want DMZ. I have the same setup. DMZ will make router 1 consider router 2 to be WAN and not behind firewall.

aspoleczny@lemmy.world on 26 Apr 19:03 collapse

I use cloudflare tunnel for this purpose. No open ports, no dealing with ISP, no exposing my IP.

yournamehere@lemm.ee on 27 Apr 11:16 collapse

yet some people might want less america in their setup and try to avoid services like that.

retro@infosec.pub on 27 Apr 21:52 collapse

While this is true, the reader is really the only one that can choose for themselves and Cloudflare is a valid option, even if it isn’t the most purist method available.