commit d770c3031e6726ca9033458e0106e5b2d9fa19bf Author: End Date: Mon Jan 26 08:50:11 2026 -0700 Feat: tailscale thru mullvad 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