Network Discovery tool - java [closed]
I need to write a network discovery eclipse plugin, to fetch OS details, what architecture (32/64) given a subnet or ip range, and pres开发者_Go百科ent a topology view.
Appreciate any help / pointers on how to get started.
Thanks.
I worked for startup company that implemented something like this during 4 years and was acquired by VERY big company for a lot of million USD. So, good luck!
But seriously you cannot fetch all needed data using pure java only. Some things require using native tools.
You can take a look on JPcap for passive discovery that will allow you to catch some packets from network and probably parse them to extract topology information. You can use Jsch to connect to Unix machines using SSH. Apache Commons-Net library will help you to connect to computers using telnet.
You'd probably need to use a lower level language. I don't think Java will be able to accomplish all your requirements.
精彩评论