1
0
mirror of https://github.com/PrivSec-dev/privsec.dev synced 2024-11-14 18:41:34 -05:00

Add missing sudo

This commit is contained in:
Tommy 2024-11-12 07:09:09 -07:00 committed by GitHub
parent fb3513b41b
commit 6ccba2a77e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -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`: For additional assurances against VPN leaks, you can optionally add these 2 lines to `/rw/config/qubes-firewall-user-script`:
```bash ```bash
nft add rule qubes custom-forward oifname eth0 counter drop sudo 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 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. This is not strictly necessary, as I have not observed any leaks with the VPN killswitch provided by the app.

View File

@ -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`: For additional assurances against VPN leaks, you can optionally add these 2 lines to `/rw/config/qubes-firewall-user-script`:
```bash ```bash
nft add rule qubes custom-forward oifname eth0 counter drop sudo 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 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. This is not strictly necessary, as I have not observed any leaks with the VPN killswitch provided by the app.