From 6ccba2a77e44a383bbe9a4ea1e58331e246b89c8 Mon Sep 17 00:00:00 2001 From: Tommy Date: Tue, 12 Nov 2024 07:09:09 -0700 Subject: [PATCH] Add missing sudo --- content/posts/qubes/Using IVPN on Qubes OS.md | 4 ++-- content/posts/qubes/Using Mullvad VPN on Qubes OS.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/posts/qubes/Using IVPN on Qubes OS.md b/content/posts/qubes/Using IVPN on Qubes OS.md index 3417b1f..9221d57 100644 --- a/content/posts/qubes/Using IVPN on Qubes OS.md +++ b/content/posts/qubes/Using IVPN on Qubes OS.md @@ -95,8 +95,8 @@ Enable `Always-on firewall` to ensure that the killswitch stays on even when the For additional assurances against VPN leaks, you can optionally add these 2 lines to `/rw/config/qubes-firewall-user-script`: ```bash -nft add rule qubes custom-forward oifname eth0 counter drop -nft add rule ip6 qubes custom-forward oifname eth0 counter drop +sudo nft add rule qubes custom-forward oifname eth0 counter drop +sudo nft add rule ip6 qubes custom-forward oifname eth0 counter drop ``` This is not strictly necessary, as I have not observed any leaks with the VPN killswitch provided by the app. diff --git a/content/posts/qubes/Using Mullvad VPN on Qubes OS.md b/content/posts/qubes/Using Mullvad VPN on Qubes OS.md index dab6395..1d03e24 100644 --- a/content/posts/qubes/Using Mullvad VPN on Qubes OS.md +++ b/content/posts/qubes/Using Mullvad VPN on Qubes OS.md @@ -93,8 +93,8 @@ Enable `Lockdown mode` to ensure that the killswitch stays on even when the tunn For additional assurances against VPN leaks, you can optionally add these 2 lines to `/rw/config/qubes-firewall-user-script`: ```bash -nft add rule qubes custom-forward oifname eth0 counter drop -nft add rule ip6 qubes custom-forward oifname eth0 counter drop +sudo nft add rule qubes custom-forward oifname eth0 counter drop +sudo nft add rule ip6 qubes custom-forward oifname eth0 counter drop ``` This is not strictly necessary, as I have not observed any leaks with the VPN killswitch provided by the app.