Click here to Skip to main content
15,886,578 members
Articles / Desktop Programming / MFC
Article

Get all IP numbers of your machine and how to pass through an authenticating proxy

Rate me:
Please Sign up or sign in to vote.
4.35/5 (22 votes)
30 Sep 2002CPOL3 min read 199.8K   4.1K   59   41
An article on how to find all IP numbers of your machine. Will also show you how to pass through an authenticating proxy server.

Sample Image - getipnr.gif

Introduction

I needed some code that would give me the IP number of my machine. Not only the number assigned to it by DHCP, either on a LAN or by my ISP when dialing up, but also my IP number as seen from the web, if my machine is behind a router/firewall.

It took a while before I figured it all out, and in the process I have seen a lot of code from others. I borrowed some code here and there, but I don't remember exactly what part, so it is hard to give credits to the authors of that code. Sorry about that. Hope I can make it up by sharing this code with you.

Relevant functions in the sample source code

The sample program does essentially two things: it reports the IP numbers as 'known' by the TCP/IP software on your own machine ('internal' IP numbers) and it reports the IP numbers of your machine as seen from the web ('external' IP numbers). Of course one of the internal numbers will be the same as the external number if there is no router/firewall between your machine and the Internet.

Internal IP numbers

Internal IP numbers are reported by function FindLocalAddress(). It calls GetIpAddrTable(), one of the IP Helper functions, which returns a block of data with this structure:

typedef struct _MIB_IPADDRTABLE
{
    DWORD dwNumEntries;
    MIB_IPADDRROW table[ANY_SIZE];
} MIB_IPADDRTABLE, *PMIB_IPADDRTABLE;

dwNumEntries contains the number of entries in 'table'.

The structure of 'table' looks like this:

typedef struct _MIB_IPADDRROW
{
    DWORD        dwAddr;
    DWORD        dwIndex;
    DWORD        dwMask;
    DWORD        dwBCastAddr;
    DWORD        dwReasmSize;
    unsigned short    unused1;
    unsigned short    wType;
} MIB_IPADDRROW, *PMIB_IPADDRROW;

dwAddr is the address we are after. FindLocalAddresses() fetches that number and converts it to a xxx.xxx.xxx.xxx string by calling function inet_ntoa().

External IP numbers

External IP numbers are reported by function FindWebAddress(). It does this by making a connection to URL 'checkip.dyndns.org'. To see why, open this URL in your browser. It returns the IP number of your machine as seen from this site. If your machine is behind a firewall/router this number will differ from the internal IP numbers found earlier. Of course in this case the IP number found will in fact be the IP number of your router/firewall.

FindWebAddress() uses the WinINet API to make a connection to 'checkip.dyndns.org' and to read and parse its HTML source to find the IP number hidden in this HTML source.

How to pass through an authenticating proxy server

FindWebAddress() also shows you how to pass through a proxy server that requires authentication. The sample program creates its CInternetSession object with option INTERNET_OPEN_TYPE_PRECONFIG. This means that if your Internet Explorer configuration contains a proxy server definition ("Tools - Internet Options - Connection tab - LAN Settings..."), the Internet connection will be made through this proxy server. In that case you will know that you have to pass through an authenticating proxy when your first attempt to connect to 'checkip.dyndns.org' fails with return code 407. The sample program will then ask you to specify a username and a password, and tries to connect to 'checkip.dyndns.org' through the proxy server.

About the author

My name is Nico Cuppen. I live in Haarlem, The Netherlands and I like programming. That's how I became a shareware author. You can find more info about me and my products on www.nicocuppen.com.

License

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


Written By
Web Developer
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questioncomo diz aqui na terrinha... Pin
ans_rock@hotmail.com15-Jun-12 14:13
ans_rock@hotmail.com15-Jun-12 14:13 
GeneralMy vote of 5 Pin
Michael Haephrati1-Feb-12 9:43
professionalMichael Haephrati1-Feb-12 9:43 
GeneralThank you Pin
3box6-May-11 6:36
3box6-May-11 6:36 
GeneralMy vote of 5 Pin
zzz7net18-Jan-11 4:59
zzz7net18-Jan-11 4:59 
Generalneed C# implementation Pin
Tauhid Shaikh24-Sep-07 2:16
Tauhid Shaikh24-Sep-07 2:16 
Generalhi Pin
pjpspeed19-Aug-07 20:39
pjpspeed19-Aug-07 20:39 
GeneralMessy Pin
Swinefeaster23-May-07 12:16
Swinefeaster23-May-07 12:16 
GeneralGetting IP Address of Local Machine Pin
paijwar6-Sep-06 4:08
paijwar6-Sep-06 4:08 
Generalerror! Pin
mahila27-Dec-05 23:32
mahila27-Dec-05 23:32 
GeneralRe: error! Pin
Nico Cuppen27-Dec-05 23:39
Nico Cuppen27-Dec-05 23:39 
GeneralRe: error! Pin
mahila28-Dec-05 23:52
mahila28-Dec-05 23:52 
GeneralRe: error! Pin
Andre Oliveira5-May-06 1:28
Andre Oliveira5-May-06 1:28 
Generalregarding checkip.dyndns.org Pin
kalicharan7-Aug-04 21:16
kalicharan7-Aug-04 21:16 
GeneralRe: regarding checkip.dyndns.org Pin
Bob Stanneveld30-Sep-04 7:16
Bob Stanneveld30-Sep-04 7:16 
GeneralNeed compiled version Pin
Ed_N16-Feb-04 1:34
Ed_N16-Feb-04 1:34 
GeneralRe: Need compiled version Pin
Nico Cuppen17-Feb-04 2:29
Nico Cuppen17-Feb-04 2:29 
Generalerrors with iphlpapi.h Pin
M00sejewce11-Feb-04 4:52
M00sejewce11-Feb-04 4:52 
GeneralRe: errors with iphlpapi.h Pin
Nico Cuppen17-Feb-04 2:32
Nico Cuppen17-Feb-04 2:32 
GeneralRe: errors with iphlpapi.h PinPopular
Duncan_Aitken16-Apr-04 1:05
Duncan_Aitken16-Apr-04 1:05 
GeneralRe: errors with iphlpapi.h Pin
Anonymous29-Jan-05 2:54
Anonymous29-Jan-05 2:54 
GeneralRe: errors with iphlpapi.h Pin
Anonymous3-Aug-04 12:18
Anonymous3-Aug-04 12:18 
GeneralRe: errors with iphlpapi.h Pin
planlos5-Aug-04 22:36
planlos5-Aug-04 22:36 
GeneralRe: errors with iphlpapi.h Pin
Anonymous30-Nov-04 9:49
Anonymous30-Nov-04 9:49 
GeneralRe: errors with iphlpapi.h Pin
Anonymous8-Dec-04 2:34
Anonymous8-Dec-04 2:34 
GeneralRe: errors with iphlpapi.h Pin
Apollo823-Sep-08 10:27
Apollo823-Sep-08 10:27 

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.