mirror of
https://github.com/System-End/dotfiles.git
synced 2026-04-19 15:18:19 +00:00
Feat: tailscale thru mullvad
This commit is contained in:
commit
d770c3031e
3 changed files with 13 additions and 0 deletions
2
README.md
Normal file
2
README.md
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
tailsclae rules
|
||||
sudo nft -f mullvad_tailscale.conf
|
||||
10
mullvad_tailscale.conf
Normal file
10
mullvad_tailscale.conf
Normal file
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
1
nftables.conf
Symbolic link
1
nftables.conf
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
/etc/nftables.conf
|
||||
Loading…
Add table
Reference in a new issue