I'm looking for a function that will give me my real IP, not my local IP. the function i currently have, returns the ip in network and sharing center which is 192.168.2.100 But if I go to whatismyip, then it gives my real IP.

How could I get this using VB.NET? thanks

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

There's no way to do this just with VB.Net. You need to find a website that will tell you (perhaps one of your own?) or you need to interface with your router.

If you have a web site that is capable of running any sort of web page applications you can create a web page that simply outputs the client's (as in the computer connecting to the page) IP address.

I have one of my own:

http://etoys.netortech.com/devpages/ip.asp

Though I can't guarantee it will always be there which is why you should make your own.

From there it's a simple matter of using a HttpWebRequest to download the content of the page.

link|improve this answer
feedback

To Combine the answers above" Create a php file and paste this in it:

<?php
echo $_SERVER['REMOTE_ADDR'];
?>

save it as curip.php and upload it to your server.

In your VB.net project create a module. Declare the imports section at the very top

Imports System.Net
Imports System.IO

And create your function:

    Public Function GetIP() As String

    Dim uri_val As New Uri("http://yourdomain.com/curip.php")
    Dim request As HttpWebRequest = HttpWebRequest.Create(uri_val)

    request.Method = WebRequestMethods.Http.Get

    Dim response As HttpWebResponse = request.GetResponse()
    Dim reader As New StreamReader(response.GetResponseStream())
    Dim myIP As String = reader.ReadToEnd()

    response.Close()

    Return myIP
End Function

Now anywhere in your code you can issue

Dim myIP = GetIP()

as use the value from there as you wish.

link|improve this answer
1  
Not familiar with php, but does the script you use depend on the HTTP headers to retrieve the IP? If so, it is possible for the user to manipulate these to specify whatever IP address they want. It may not be a huge concern, but it's something to take into consideration. – Kevin Pang Aug 14 '09 at 23:42
That's a good point. However, the only way to do so that I can think of since the vb.net app is calling the php file is the user would have to be using a proxy server. But yes, the particular case where this is used should be taken into account. – shaiss Aug 18 '09 at 16:29
feedback

I'm probably just being crotchety here, but I can't help but think that your "real" IP address is the one returned by ifconfig (ipconfig) on your local machine. 192.168.2.100 in your case. Whatever NAT translation or tunneling goes on between you and the remote endpoint shouldn't matter, and if it does, there's a good chance you're doing something that could make your application only work in your current environment.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.