本文提供有關如何檢查、變更和驗證指派給 Windows Subsystem for Linux 2 (WSL2) 的 IP 位址的說明。重點是使用「ifconfig」指令取得IP 位址,編輯網路設定
要檢查WSL2 的IP 位址,請在WSL2 中開啟指令提示
IP位址將顯示在指令的輸出中。 如何更改WSL2的IP位址要更改WSL2的IP位址,您需要編輯網路設定檔。執行此操作的步驟如下:<code>ifconfig eth0</code>
[network]
開頭的行,並將以下行加入檔案:[network]
, and add the following lines to the file:<code>/etc/wsl.conf</code>
<code>[network] interface = eth0 address = 192.168.1.100 netmask = 255.255.255.0 gateway = 192.168.1.1</code>
To determine whether WSL2 has been assigned an IP address, open a command prompt in WSL2 and run the following command:
<code>wsl --shutdown</code>
If WSL2 has been assigned an IP address, the output of the command will include a line that starts with inet
<code>ip addr show eth0</code>
以上是如何查看 wsl2 的 ip 位址的詳細內容。更多資訊請關注PHP中文網其他相關文章!