Click here to Skip to main content
15,885,869 members
Articles / Programming Languages / Visual Basic
Tip/Trick

Getting the External IP Address

Rate me:
Please Sign up or sign in to vote.
4.77/5 (11 votes)
3 Sep 2012CPOL 83.4K   19   4
A very simple and short way to get the external IP address

Introduction

We connect to servers that give us our external IP address and try to parse the IP from returning HTML pages. But when servers make small changes on these pages or remove them, these methods stop working properly.

Here is a method that takes the external IP address using a server which has been alive for years and returns a simple response rapidly...

C#

C#
private string getExternalIp()
{
    try
    {
        string externalIP;
        externalIP = (new WebClient()).DownloadString("http://checkip.dyndns.org/");
        externalIP = (new Regex(@"\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}"))
                     .Matches(externalIP)[0].ToString();
        return externalIP;
    }
    catch { return null; }
}

VB.NET

VB.NET
Private Function GetExternalIp() As String
    Try
        Dim ExternalIP As String
        ExternalIP = (New WebClient()).DownloadString("http://checkip.dyndns.org/")
        ExternalIP = (New Regex("\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}")) _
                     .Matches(ExternalIP)(0).ToString()
        Return ExternalIP
    Catch
        Return Nothing
    End Try
End Function

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
Turkey Turkey

Comments and Discussions

 
QuestionHow to obtain wan ip of two or more network adapters Pin
Gerry Softman20-Sep-15 4:31
professionalGerry Softman20-Sep-15 4:31 
Questionnice post Pin
sun_ak4710-Sep-15 1:21
sun_ak4710-Sep-15 1:21 
SuggestionWay without REGEX Pin
Rhodderz2-Mar-15 5:00
Rhodderz2-Mar-15 5:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.