(ΦωΦ) Catudp's blog

The Problem

My home router started crashing frequently after running FR24 Feed.

Environment:

Why It Happens

In MAP-E / DS-Lite / CGNAT environments:

The Solution: Tailscale Exit Node on VPS

Instead of using a commercial VPN, I used my own VPS as an Exit Node.

Step 1 – Enable forwarding on VPS:

sudo nano /etc/sysctl.d/99-tailscale.conf
net.ipv6.conf.all.forwarding=1
net.ipv4.ip_forward=1
sudo sysctl --system

Step 2 – Advertise Exit Node:

sudo tailscale up --advertise-exit-node --accept-dns=false --ssh

Step 3 – Raspberry Pi:

sudo tailscale up --exit-node=<VPS-name> --accept-dns=false --ssh

Verification

curl -4 ifconfig.me

Returned: 160.xxx.xxx.xxx (VPS IP) This confirmed that outbound traffic was routed via the VPS.

Results

Before:

After:

Important Note

This may help if you use:

If your router struggles with frequent UDP sessions, moving traffic through a stable Exit Node can significantly reduce load.

I did not keep exact logs, but based on router resets and family complaints, the crash frequency was approximately 6–12 times per day.

← Back to Home