17

コンソール アプリケーションから自分の IP アドレスを調べようとしています。

Request.ServerVariablesコレクションやを使用して、Web アプリケーションに慣れていますRequest.UserHostAddress

コンソールアプリでこれを行うにはどうすればよいですか?

4

6 に答える 6

27

これを行う最も簡単な方法は次のとおりです。

using System;
using System.Net;


namespace ConsoleTest
{
    class Program
    {
        static void Main()
        {
            String strHostName = string.Empty;
            // Getting Ip address of local machine...
            // First get the host name of local machine.
            strHostName = Dns.GetHostName();
            Console.WriteLine("Local Machine's Host Name: " + strHostName);
            // Then using host name, get the IP address list..
            IPHostEntry ipEntry = Dns.GetHostEntry(strHostName);
            IPAddress[] addr = ipEntry.AddressList;

            for (int i = 0; i < addr.Length; i++)
            {
                Console.WriteLine("IP Address {0}: {1} ", i, addr[i].ToString());
            }
            Console.ReadLine();
        }
    }
}
于 2009-05-13T14:41:58.617 に答える
3

これを試して:

String strHostName = Dns.GetHostName();

Console.WriteLine("Host Name: " + strHostName);

// Find host by name    IPHostEntry
iphostentry = Dns.GetHostByName(strHostName);

// Enumerate IP addresses
int nIP = 0;   
foreach(IPAddress ipaddress in iphostentry.AddressList) {
   Console.WriteLine("IP #" + ++nIP + ": " + ipaddress.ToString());    
}
于 2009-05-13T14:43:27.443 に答える
2

ここでは、System.Net 名前空間が役に立ちます。特に、DNS.GetHostByName などの API です。

ただし、特定のマシンには複数の IP アドレス (複数の NIC、IPv4 および IPv6 など) がある可能性があるため、あなたが提起するほど単純な質問ではありません。

于 2009-05-13T14:43:04.137 に答える
2

IPAddress[] addresslist = Dns.GetHostAddresses(Dns.GetHostName());

于 2009-10-21T06:25:04.997 に答える
1
using System;
using System.Net;

public class DNSUtility
{
    public static int Main (string [] args)
    {

      String strHostName = new String ("");
      if (args.Length == 0)
      {
          // Getting Ip address of local machine...
          // First get the host name of local machine.
          strHostName = DNS.GetHostName ();
          Console.WriteLine ("Local Machine's Host Name: " +  strHostName);
      }
      else
      {
          strHostName = args[0];
      }

      // Then using host name, get the IP address list..
      IPHostEntry ipEntry = DNS.GetHostByName (strHostName);
      IPAddress [] addr = ipEntry.AddressList;

      for (int i = 0; i < addr.Length; i++)
      {
          Console.WriteLine ("IP Address {0}: {1} ", i, addr[i].ToString ());
      }
      return 0;
    }    
 }

ソース: http://www.codeproject.com/KB/cs/network.aspx

于 2009-05-13T14:41:00.800 に答える
1

System.Net.Dns.GetHostAddresses() がそれを行う必要があります。

于 2009-05-13T14:42:35.743 に答える