Find NetBIOS/WINS name of a IP
Become part of the top 3% of the developers by applying to Toptal https://topt.al/25cXVn
--
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 2 Looping
--
Chapters
00:00 Question
00:24 Accepted answer (Score 22)
01:29 Answer 2 (Score 6)
01:50 Answer 3 (Score 0)
02:11 Thank you
--
Full question
https://superuser.com/questions/931058/f...
Accepted answer links:
[NBTSTAT.exe - Display protocol statistics and current TCP/IP connections using NBT (NetBIOS over TCP/IP)]: http://ss64.com/nt/nbtstat.html
[An A-Z Index of the Windows CMD command line]: http://ss64.com/nt/
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows #networking #netbios
#avk47
--
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 2 Looping
--
Chapters
00:00 Question
00:24 Accepted answer (Score 22)
01:29 Answer 2 (Score 6)
01:50 Answer 3 (Score 0)
02:11 Thank you
--
Full question
https://superuser.com/questions/931058/f...
Accepted answer links:
[NBTSTAT.exe - Display protocol statistics and current TCP/IP connections using NBT (NetBIOS over TCP/IP)]: http://ss64.com/nt/nbtstat.html
[An A-Z Index of the Windows CMD command line]: http://ss64.com/nt/
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows #networking #netbios
#avk47
ACCEPTED ANSWER
Score 23
How can I find the NetBIOS/WINS name of a PC
You can use nbtstat
Example:
nbtstat -A x.x.x.x
Syntax
...
By IP address
NBTSTAT -A IP_address [options] [interval]
Key
...
-A
(Adapter status) List the remote machine's name table given its IP address
Further reading
- An A-Z Index of the Windows CMD command line is an excellent reference for all things Windows cmd line related.
ANSWER 2
Score 7
ping -a
xxx.xxx.xxx.xxx
This will try WINS
and then DNS
.
The NSLOOKUP
command does similar, but only via DNS
.
ANSWER 3
Score 1
From a Windows system :
nbtstat -A x.x.x.x
From Linux a Linux :
nmblookup -A x.x.x.x