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 명령어를 입력해서 모든 스크립트를 허용해 주세요.
감사합니다!
제가 준비한 것은 여기까지 입니다. 봐주셔서 감사합니다.
반응형
'IT(인터넷) 관련 > 서버 관련' 카테고리의 다른 글
Ubuntu에서 Nginx + Certbot 이용하여 Let's Encrypt SSL 인증서 발급받는 방법 (19) | 2022.11.19 |
---|---|
Ubuntu MariaDB 설치하고 기본 설정하기 (268) | 2022.05.21 |
무료 VPS!? 오라클 클라우드를 사용해 보자! [1] (267) | 2022.05.08 |
댓글