5

I want to scan my network periodically and get the Ip, mac, OS and netbios name.

So far I got everything done with a bashscript that runs nmap, but the netbiosname is still a problem.

wurlog
  • 193
  • 1
  • 3
  • 17

3 Answers3

10

The program nbtscan can do this. In Ubuntu to install just use apt-get install nbtscan. Example usage is nbtscan 192.168.1.20

Kyle Brandt
  • 81,077
  • 70
  • 299
  • 442
6

more specifically, nbtscan -v 192.168.1.0/24, This will scan the whole c class, if your node is part of the broadcast address network. (192.168.1.0)

LJacob
  • 61
  • 1
  • 1
1

You could use nbtscan ( http://unixwiz.net/tools/nbtscan.html)

Dominik
  • 2,178
  • 13
  • 9