There is a known issue with WSL2 that prevents the linux guest from having any network connection when the Windows host is on a VPN.
This Powershell script is designed to specifically address this issue when using a GlobalProtect VPN client. It can be configured to run automatically on network interface change where it will reconfigure the Windows systems routes to fix WSL2 networking.
Most other solutions on the internet infolve settings the Interface Metric of the VPN interface to a really high number, essentially routing traffic from the WSL2 instance straight to the internet rather than over the VPN.
This script routes all traffic, including WSL2, via the VPN which makes it ideal for corporate environments where all traffic should use the VPN.
This script detects whether the VPN is connected and then either Adds or Removes a Host Route, dynamically populating the necessary values, for the WSL2 Guest(s):
route add <WSL2_Guest_IP> mask 255.255.255.255 metric <WSL_interface_RouteMetric> if <WSL_Interface_ID>
There are 5 configuration parameters at the start of the Powershell script that allow for user customisation of the scripts behaviour:
$vpn_interface_desc
$wsl_interface_name
$config_default_wsl_guest
$wsl_guest_list
$state_file
These are further explained as follows.
$vpn_interface_desc
is used to select the VPN client interface by matching the description
field.
You can determine this value by executing Get-NetAdapter
within Powershell and looking for
the value contained in the InterfaceDescription
property/column.
This script will accept an exact or partial match.
$wsl_interface_name
is used to select the WSL2 Interface by matching the interface name.
You can determine this value by executing Get-NetAdapter
within Powershell and looking for
the value contained in the Name
property/column.
This script expects an exact match for this parameter.
The $config_default_wsl_guest
parameter controls whether the script will attempt to configure
the default WSL2 Guest - this is useful if you only have one guest as it saves you needing to
specify its name..
Setting this parameter to 0
will disable default guest configuration. Setting it to a positive
non-zero integer will enable default guest configuration.
The $wsl_guest_list
parameter accepts an array of WSL2 Guests names. The script will iterate
through each guest in this list to determine it's IP address so that routes can be created. If
you only have a single WSL2 guest you can ommit setting this parameter (assuming you enabled
$config_default_wsl_guest).
The guest name(s) can be determined by executing wsl --list --all
from a shell.
The $state_file
parameter configures where the state file is recorded.
The state file is used to cleanup created routes when:
- The VPN interface is deactivated
- IP Addresses change
- Interface ID Changes
Please follow these steps if you would like your system to automatically execute the WSL2 VPN Configuration script each time a network connect or disconnect event occurs:
- Clone this repo to a
scripts
directory in the Users HOME (C:\Users<username>) - From the START menu, Open 'Task Scheduler' (Will need ADMIN on Windows)
- Click "Create Task" on Right Sidebar
- Set the Name to:
Update WSL2 Routing for VPN
, and ensure the 'Run with highest priveleges' checkbox is selected - Select 'Triggers' Tab
- Click 'New' at bottom of Window
- Open 'Begin the task' drop-down and Select 'On an Event'. Next we need to enter the following to trigger on the 'Connect' Event
- Log: 'Microsoft-Windows-NetworkProfile/Operational'
- Source: 'NetworkProfile'
- Event ID: '10000'
- Click 'OK'
- Click 'New' at bottom of Window
- Open 'Begin the task' drop-down and Select 'On an Event'. Next we need to enter the following to trigger on the 'Disconnect' Event
- Log: 'Microsoft-Windows-NetworkProfile/Operational'
- Source: 'NetworkProfile'
- Event ID: '10001'
- Select 'Actions' Tab
- Click 'New'
- Configure Action:
- Action: 'Start a Program'
- Program/script: 'Powershell.exe'
- Add arguments: '-ExecutionPolicy Bypass -File %HOMEPATH%\scripts\configure-wsl-networking.ps1'
- Click 'OK'
- Select 'Conditions' Tab
- Uncheck box:
- Power -> Start the task only if the computer is on AC Power
- Click 'OK'