이 문서에서는 WSL2(Linux용 Windows 하위 시스템 2)에 할당된 IP 주소를 확인, 변경 및 확인하는 방법에 대한 지침을 제공합니다. 초점은 "ifconfig" 명령을 사용하여 IP 주소를 얻고 네트워크 구성을 편집하는 것입니다
WSL2의 IP 주소를 확인하려면 WSL2에서 명령 프롬프트를 열고 다음 명령을 실행하세요.
<code>ifconfig eth0</code>
IP 주소가 명령 출력에 표시됩니다.
WSL2의 IP 주소를 변경하려면 네트워크 구성 파일을 편집해야 합니다. 이를 수행하는 단계는 다음과 같습니다.
<code>/etc/wsl.conf</code>
[network]
로 시작하는 줄을 찾아 파일에 다음 줄을 추가하세요.[network]
, and add the following lines to the file:<code>[network] interface = eth0 address = 192.168.1.100 netmask = 255.255.255.0 gateway = 192.168.1.1</code>
<code>wsl --shutdown</code>
To determine whether WSL2 has been assigned an IP address, open a command prompt in WSL2 and run the following command:
<code>ip addr show eth0</code>
If WSL2 has been assigned an IP address, the output of the command will include a line that starts with inet
위 내용은 wsl2의 IP 주소를 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!