esp32_nat_router icon indicating copy to clipboard operation
esp32_nat_router copied to clipboard

Use as a standalone router?

Open TurboMan90 opened this issue 8 months ago • 1 comments

I'm using this as a standalone router that doesn't need access to the internet. It works great, but my phone blocks data since it's trying to route the data through the wifi network, which obviously doesn't have internet access.

Is there a way to update the code to "trick" the devices into thinking there's internet access so it maintains connection to cellular data?

Thanks!

TurboMan90 avatar Mar 10 '25 14:03 TurboMan90

It's very hard and you'd need to open a bunch of web server paths, route all requests from https://gstatic.com/generate_204 to a local server maybe via DNS or a preferred proxy, serve 204 status... And plus, the URL is different for every device. Like, Microsoft devices have https://msftconnecttest.com as their URL, while Apple would have https://captive.apple.com. It's a complex process.

JustAnEric avatar Jul 07 '25 11:07 JustAnEric