Which method is used to get IP's of nodes on LAN?
-
How We can get information about the nodes attached on LAN programatically ven v r on server?Is there any method already present in C#? thanks in advance
-
How We can get information about the nodes attached on LAN programatically ven v r on server?Is there any method already present in C#? thanks in advance
Maybe you can read the ARP Table? If not why not read your own ip (the server) then ping the subnet to see who is alive. i.e. ping 192.168.1.2 -> 192.168.1.255 this might help on the ARP although its in C++ http://www.codeguru.com/cpp/i-n/internet/internetprotocolip/article.php/c6153/[^]
-
Maybe you can read the ARP Table? If not why not read your own ip (the server) then ping the subnet to see who is alive. i.e. ping 192.168.1.2 -> 192.168.1.255 this might help on the ARP although its in C++ http://www.codeguru.com/cpp/i-n/internet/internetprotocolip/article.php/c6153/[^]