mirror of
https://github.com/QubesOS/qubes-doc.git
synced 2024-12-29 09:16:22 -05:00
Merge branch 'gasull-patch-3'
This commit is contained in:
commit
29813e4939
@ -56,8 +56,11 @@ Set up a ProxyVM as a VPN gateway using NetworkManager
|
||||
|
||||
```bash
|
||||
# Automatically connect to the VPN once Internet is up
|
||||
nm-online --quiet --wait-for-startup
|
||||
nmcli connection up file-vpn-conn passwd-file /rw/config/NM-system-connections/secrets/passwd-file.txt
|
||||
while ! ping -c 1 -W 1.1.1.1; do
|
||||
sleep 1
|
||||
done
|
||||
PWDFILE="/rw/config/NM-system-connections/secrets/passwd-file.txt"
|
||||
nmcli connection up file-vpn-conn passwd-file $PWDFILE
|
||||
```
|
||||
You can find the actual "file-vpn-conn" in `/rw/config/NM-system-connections/`.
|
||||
|
||||
@ -74,7 +77,7 @@ Set up a ProxyVM as a VPN gateway using NetworkManager
|
||||
Edit `/rw/config/qubes-firewall-user-script` and add these lines:
|
||||
```bash
|
||||
# Block forwarding of connections through upstream network device
|
||||
# (in case the vpn tunnel breaks):
|
||||
# (in case the vpn tunnel breaks)
|
||||
iptables -I FORWARD -o eth0 -j DROP
|
||||
iptables -I FORWARD -i eth0 -j DROP
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user