Skip to content

Instantly share code, notes, and snippets.

@alimbada
Created October 11, 2024 11:09
Show Gist options
  • Save alimbada/69e19b87b0c311862eca67a39daa82e4 to your computer and use it in GitHub Desktop.
Save alimbada/69e19b87b0c311862eca67a39daa82e4 to your computer and use it in GitHub Desktop.
Add a route for WSL to connect to the Internet when connected to VPN using GlobalProtect
$wslAddress = wsl ip -4 a show eth0 | wsl grep -Po 'inet \K[0-9.]*'
# This assumes you only have one interface containing 'WSL' in its name
$ifId = (Get-NetIPInterface -InterfaceAlias "*WSL*" -AddressFamily IPv4).ifIndex
route add -p $wslAddress mask 255.255.255.255 $wslAddress metric 256 if $ifId
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment