vote up 2 vote down star

Calling the following gives you back a list of all the IP addresses.

Dns.GetHostAddresses(Dns.GetHostName())

This sometimes, depending on machine configuration, could give you back more than one IP. So the question is, how do you determine which is the primary IP address? Do you enumerate the NICs?

flag
That could also give you a wrong answer (or no answer) if DNS isn't working at the moment when you make the call. – Andrew Medico Feb 20 at 1:21

1 Answer

vote up 9 vote down check

There's no such thing as a "primary" IP address.

The routing table determines which outward-facing IP address is used depending on the destination IP address (and by extension, the network interface, which itself can be virtual or physical).

If you want to look at the routing table, use the IP Helper API.

link|flag
+1. Use the first one in the list. Or the last. It doesn't matter. If they're in DNS, then all of them should work. If they don't work, they shouldn't be in DNS. Quad erat something-or-other :-) – paxdiablo Feb 20 at 0:58
1  
There is an order that multiple NICs are used in (in XP, Network Connections > Advanced > Advanced Settings) but this may be more in depth than the question is asking. – routeNpingme Feb 20 at 1:46

Your Answer

Get an OpenID
or

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