From d770c3031e6726ca9033458e0106e5b2d9fa19bf Mon Sep 17 00:00:00 2001 From: End Date: Mon, 26 Jan 2026 08:50:11 -0700 Subject: [PATCH] Feat: tailscale thru mullvad --- README.md | 2 ++ mullvad_tailscale.conf | 10 ++++++++++ nftables.conf | 1 + 3 files changed, 13 insertions(+) create mode 100644 README.md create mode 100644 mullvad_tailscale.conf create mode 120000 nftables.conf diff --git a/README.md b/README.md new file mode 100644 index 0000000..7766a09 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +tailsclae rules +sudo nft -f mullvad_tailscale.conf diff --git a/mullvad_tailscale.conf b/mullvad_tailscale.conf new file mode 100644 index 0000000..1748939 --- /dev/null +++ b/mullvad_tailscale.conf @@ -0,0 +1,10 @@ +table inet mullvad_tailscale { + chain output { + type route hook output priority 0; policy accept; + ip daddr 100.64.0.0/10 ct mark set 0x00000f41 meta mark set 0x6d6f6c65; + } +chain input { + type filter hook input priority -100; policy accept; + ip saddr 100.64.0.0/10 ct mark set 0x00000f41 meta mark set 0x6d6f6c65; + } +} diff --git a/nftables.conf b/nftables.conf new file mode 120000 index 0000000..40db8d0 --- /dev/null +++ b/nftables.conf @@ -0,0 +1 @@ +/etc/nftables.conf \ No newline at end of file