2013-06-02 10:31:12 +0000 2013-06-02 10:31:12 +0000
53
53
Advertisement

マシン名をIPアドレスに変換するWindowsコマンドとその逆のコマンドは何ですか?

Advertisement

LANネットワーク内の別のマシンのIPアドレスを知りたい。

マシン名からIPアドレスを取得するWindowsのコマンドと、その逆のコマンドを教えてください。

Advertisement

回答 (2)

73
73
73
2013-06-02 10:31:12 +0000

A machine with machine name “accounting ” and ip “192.168.1.95”

IP -> Machine Name:

tracert 192.168.1.95

or

NBTSTAT -a 192.168.1.95

Machine Name -> IP

nslookup accounting

or

ping accounting
```0x1&
16
16
16
2015-10-06 12:22:57 +0000

ホスト名からipv4のIPを見つけるには、以下の方法を試してみてください。

ipv4 (192.168.1.2):

ping hostname -4

ipv6 (0000:0000:0000:0000:0000:0000:0000):

ping hostname -6
Advertisement
Advertisement