Pergunta

Eu estou olhando para descobrir o que o meu endereço IP é de um aplicativo de console.

Estou habituado a uma aplicação web usando a recolha e / ou Request.ServerVariables Request.UserHostAddress.

Como isso pode ser feito em um aplicativo de console?

Foi útil?

Solução

A maneira mais fácil de fazer isso é o seguinte:

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();
        }
    }
}

Outras dicas

Tente isto:

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());    
}

O namespace System.Net é seu amigo aqui. Em particular, APIs, como DNS.GetHostByName.

No entanto, qualquer máquina pode ter vários endereços IP (várias placas de rede, IPv4 e IPv6 etc) por isso não é tão simples uma pergunta como você representar.

Endereço_ip [] = addresslist Dns.GetHostAddresses (Dns.GetHostName ());

System.Net.Dns.GetHostAddresses () deve fazê-lo.

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;
    }    
 }

Fonte: http://www.codeproject.com/KB/cs/network aspx

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top