본문 바로가기
IT(인터넷) 관련/서버 관련

WSL2(Windows Subsystem for Linux) 외부 접속 안 되는 문제 해결하기 (포트포워딩하기)

by 광토리 2022. 12. 30.
728x90

안녕하세요, 광토리입니다.


원인...?

localhost로는 가능한데 외부에서는 접속이 되질 않으니 무엇이 문제일까 검색을 해봤습니다.

 

WSL2로 넘어오면서 Hyper-V를 사용하는 방식으로 변경되었는데, cmd에서 ipconfig를 확인하면 알 수 있듯이 Hyper-V는 내부 IP가 분리되어 있고, 독립적으로 동작합니다. 하지만 편리성을 위해 마이크로소프트가 localhost 주소로 접속이 가능하게 조치를 한 것으로 보입니다 ㅋㅋ...

 

따라서 포트포워딩 작업으로 연결을 해줄 계획입니다.


스크립트

하지만 PC를 재부팅할 때 마다 내부 IP가 바뀌기 때문에 이를 자동으로 해주는 스크립트를 사용하려고 합니다.

$remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '"
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';

if( $found ){
  $remoteport = $matches[0];
} else{
  echo "The Script Exited, the ip address of WSL 2 cannot be found";
  exit;
}

#[Ports]
#All the ports you want to forward separated by coma
$ports=@(80,443,22);

#[Static ip]
#You can change the addr to your ip config to listen to a specific address
$addr='0.0.0.0';
$ports_a = $ports -join ",";

#Remove Firewall Exception Rules
iex "Remove-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' ";

#adding Exception Rules for inbound and outbound Rules
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Outbound -LocalPort $ports_a -Action Allow -Protocol TCP";
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Inbound -LocalPort $ports_a -Action Allow -Protocol TCP";

for( $i = 0; $i -lt $ports.length; $i++ ){
  $port = $ports[$i];
  iex "netsh interface portproxy delete v4tov4 listenport=$port listenaddress=$addr";
  iex "netsh interface portproxy add v4tov4 listenport=$port listenaddress=$addr connectport=$port connectaddress=$remoteport";
}
Invoke-Expression "netsh interface portproxy show v4tov4";

1. 메모장을 열고 해당 내용을 넣어주세요. $ports= 부분에 포트를 바꾸셔도 됩니다.

2. PowerShell 실행하기 편한 곳에 ps1 확장자로 저장해 주세요. 저는 wsl.ps1로 저장했습니다.

3. 관리자 권한으로 PowerShell을 실행한 후, .\wsl.ps1 을 쳐서 스크립트를 실행해 주시면 됩니다.

4. 실행했는데 보안 오류 가 발생할 경우 Set-ExecutionPolicyUnrestricted 명령어를 입력해서 모든 스크립트를 허용해 주세요.


감사합니다!

제가 준비한 것은 여기까지 입니다. 봐주셔서 감사합니다.

반응형

댓글