Created
June 11, 2024 13:03
-
-
Save megabayt/0c62d87788f688dea35f909991e6c11a to your computer and use it in GitHub Desktop.
expose ports wsl
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
$ports = @(22004, 3000, 3001, 3002, 3003, 8081); | |
$wslAddress = bash.exe -c "ip addr show eth0 | grep -oP '(?<=inet\s)\d+(\.\d+){3}'"; | |
if ($wslAddress -match '^(\d{1,3}\.){3}\d{1,3}$') { | |
Write-Host "WSL IP address: $wslAddress" -ForegroundColor Green; | |
Write-Host "Ports: $ports" -ForegroundColor Green; | |
} | |
else { | |
Write-Host "Error: Could not find WSL IP address." -ForegroundColor Red; | |
exit; | |
} | |
$listenAddress = '0.0.0.0'; | |
foreach ($port in $ports) { | |
netsh interface portproxy delete v4tov4 listenport=$port listenaddress=$listenAddress; | |
netsh interface portproxy add v4tov4 listenport=$port listenaddress=$listenAddress connectport=$port connectaddress=$wslAddress; | |
} | |
$fireWallDisplayName = 'WSL Port Forwarding'; | |
Remove-NetFireWallRule -DisplayName $fireWallDisplayName; | |
New-NetFireWallRule -DisplayName $fireWallDisplayName -Direction Outbound -LocalPort $ports -Action Allow -Protocol TCP; | |
New-NetFireWallRule -DisplayName $fireWallDisplayName -Direction Inbound -LocalPort $ports -Action Allow -Protocol TCP; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment