この記事では、Windows Subsystem for Linux 2 (WSL2) に割り当てられた 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 中国語 Web サイトの他の関連記事を参照してください。