Reputation: 1
we have 10 computers at lab, we set-up all computers connected to LAN so we can share files, my computer serves as the main computer, i just want to get all IP address of the computers connected to main computer(that is my computer) and list them my code is
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "cmd ";
p.StartInfo.UseShellExecute = false;
p.StartInfo.Arguments = "/C net view";
p.StartInfo.RedirectStandardOutput = true;
p.Start();
String output = p.StandardOutput.ReadToEnd();
char[] delimiters = new char[] { '\n', '\\' };
string[] s = output.Split(delimiters, StringSplitOptions.RemoveEmptyEntries);
string hostName = Dns.GetHostName();
IPHostEntry IPHost = Dns.GetHostEntry(hostName);
Console.WriteLine(IPHost.HostName); // Output name of web host
IPAddress[] address = IPHost.AddressList; // get list of IP address
// Console.WriteLine("List IP {0} :", IPHost.HostName);
if (address.Length > 0)
{
for (int i = 0; i < address.Length; i++)
{
Console.WriteLine(address[i]);
}
}
p.WaitForExit();
int z = s.Length - 5;
string[] str1 = new string[z];
// int i = 0;
char[] saperator = { ' ' };
for (int j = 3; j < s.Length - 2; j++)
{
//Console.WriteLine(s[i]);
// str1[i] = (s[j].ToString()).Split(saperator)[0];
// Console.WriteLine("IP Address {0}: {1} ", i, addr[i].ToString());
}
//Console.WriteLine(output);
s = output.Split(new string[] { "\n,\\" }, StringSplitOptions.None);
//Console.WriteLine(s[i]);
//Console.WriteLine(output);
// Console.WriteLine("IP Address : {1} ", i, AddressList[i].ToString());
Console.ReadLine();
but i get my machine's ip address ,i want to 10 machine's ip address in lab.
Upvotes: 0
Views: 834
Reputation: 6901
Instead of passing the host name, pass the result of net view.
foreach (string hostName in hostNames)
{
//string hostName = Dns.GetHostName();
IPHostEntry entry = Dns.GetHostEntry(hostName);
Console.WriteLine(entry.HostName); // output name of web host
IPAddress[] addresses = entry.AddressList; // get list of IP addresses
foreach (var address in addresses)
{
Console.WriteLine(address);
}
}
Upvotes: 1