wurlog Asked: 2010-02-26 05:02:37 +0800 CST2010-02-26 05:02:37 +0800 CST 2010-02-26 05:02:37 +0800 CST How to get netbios name from network computer? (Linux) 772 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. linux bash netbios 3 Answers Voted Best Answer Kyle Brandt 2010-02-26T05:13:35+08:002010-02-26T05:13:35+08:00 The program nbtscan can do this. In Ubuntu to install just use apt-get install nbtscan. Example usage is nbtscan 192.168.1.0/24 on a class C network. LJacob 2014-11-14T06:57:50+08:002014-11-14T06:57:50+08:00 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) Dominik 2010-02-26T05:15:12+08:002010-02-26T05:15:12+08:00 You could use nbtscan ( http://unixwiz.net/tools/nbtscan.html)
The program nbtscan can do this. In Ubuntu to install just use
apt-get install nbtscan
. Example usage isnbtscan 192.168.1.0/24
on a class C network.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)
You could use nbtscan ( http://unixwiz.net/tools/nbtscan.html)