Click here to Skip to main content
15,881,636 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
Hello.

I have an IP address in my network and I can not identify the device. Do you know any command that I can give the IP as a param and get detailes like manufacturer, model, operating system...

Thank you.


My bad is the first question I post so did not know how to formulate it.
I am working in a network of mostly windows PC's linked by rooters and switches. Tere are also Printers and some other devices (smart phone, IP cameras...).
I am making a .NET application in WPF to get informations and monitor all this devices.
My problem is that I have no good way to get info from the devices other than PC. I probably need someone who has worked with SNMP.

Best regards.
Posted
Updated 8-Jan-13 20:04pm
v2
Comments
Sergey Alexandrovich Kryukov 8-Jan-13 9:52am    
Manufacturer of what? Of IP? :-)
—SA
fjdiewornncalwe 8-Jan-13 14:09pm    
No where near enough information to help you here.

1 solution

You can install nmap on your machine and get it to inquire about your network. Info about it can be found here[^].

This tool will tell you what nodes are on your network, their MAC address and the MAC vendor. If my network is 192.168.1.*, the command I would use on my linux box is

sudo nmap -sP 192.168.1.0/24

which scans my network and reports on all nodes on it. [For the windows version, remove the 'sudo'.]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900