제목 : 18.2. 원격 사이트(도메인)와 내 컴퓨터의 IP 주소 확인(2.0)
글번호:
|
|
305
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2006/03/19 오후 11:53:00
|
조회수:
|
|
8946
|
// 원격 사이트와 내 컴퓨터의 IP 주소 확인
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
namespace CSharp_Network_Console
{
class Program
{
static void Main(string[] args)
{
Console.Write("원격 서버의 도메인명 입력: ");
string str = Console.ReadLine();
IPHostEntry host = Dns.GetHostEntry(str);
Console.Write("호스트 이름 : " + host.HostName);
Console.WriteLine("아이피 주소 리스트 : ");
for (int i = 0; i < host.AddressList.Length; i++)
{
IPAddress ip = host.AddressList[i];
Console.WriteLine("[{0}]", ip.ToString());
}
Console.WriteLine("내 IP 주소");
IPHostEntry myIP = Dns.GetHostEntry(Dns.GetHostName());
string strMyIP = myIP.AddressList[0].ToString();
Console.WriteLine(strMyIP);
}
}
}