댓글 쓰기 권한이 없습니다. 로그인 하시겠습니까?
C#
2013.02.01 15:31
자신의 IP주소 확인하기
조회 수 24828 댓글 0
C#으로 자신의 IP를 확인 하는 방법입니다.
using System.Net; using System.Net.Sockets; //네임스페이스를 추가 해 줍시다.. public string Get_MyIP() { IPHostEntry host = Dns.GetHostByName(Dns.GetHostName()); string myip = host.AddressList[0].ToString(); return myip; }
return 값으로는 ip를 리턴 해주고 있습니다..근데 현재 이 소스는 닷넷 프레임워크 2.0 이상에서는 사용을 하지 않도록 권장(?) 하고 있습니다..아래 코드는 GetHostEntry를 이용하여 IP 주소를 받아 내고 있습니다.하지만 비스타 이상에서는 IPv6으로 IP주소를 출력하고 있습니다.if문을 통하여 IP주소 체계가 IPv4인 경우에만 출력하도록 해 주고 있습니다.
/// <summary> /// 클라이언트 IP 주소 얻어오기... /// </summary> public static string Client_IP { get { IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName()); string ClientIP = string.Empty; for (int i = 0; i < host.AddressList.Length; i++) { if (host.AddressList[i].AddressFamily == AddressFamily.InterNetwork) { ClientIP = host.AddressList[i].ToString(); } } return ClientIP; } }
public void GetMyIPWan() { // 외부아이피 알려주는 사이트에서 문자열 가져오기 String WanIP = new WebClient().DownloadString("http://www.whatismyip.com/automation/n09230945.asp"); Console.WriteLine("IP Address : {0} ", WanIP); }
Dreamy의 코드 스크랩내가 모으고 내가 보는
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Designed by sketchbooks.co.kr / sketchbook5 board skin
Sketchbook5, 스케치북5
Sketchbook5, 스케치북5
Sketchbook5, 스케치북5
Sketchbook5, 스케치북5