Created
October 11, 2024 11:09
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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