Imagine a situation, I have PC with two lan cards, one is connected to internet another is connected to local network, how can I detect IP which is connected to internet with C# ?
|
5
|
|||||||
|
|
|
Try this:
Note that this implementation of Edit History:
|
||||||||
|
|
|
A hacky way is to fetch and scrape one of the many 'What Is My IP' type websites. |
||||||
|
|
|
I already search that, i found it in this codeplex project http://www.codeplex.com/xedus. It a none working P2P freeware but there is a class that use the right API to get the lan card witch has the internet ip |
||
|
|
|
The internet connection must be on the same IP network as the default gateway. There's really foolproof no way to tell from the IP address if you can reach the "internet" or not. Basically you can communicate with your own IP network. Everything else has to go through a gateway. So if you can't see the gateway, you're confined to the local IP network. The gateway, however, depends on other gateways, so even if you can access the gateway, you may not be able to reach some other network. This can be due to e.g. filtering or lack of routes to the desired networks. Actually, it makes little sense to talk about the internet in this sense, as you will probably never be able to reach the entire internet at any given moment. Therefore, find out what you need to be able to reach and verify connectivity for that network. |
||||||||||
|
|
|
Not 100% accurate (some ISPs don't give you public IP addresses), but you can check if the IP address is on one of the ranges reserved for private addresses. See http://en.wikipedia.org/wiki/Classful_network |
||
|
|
|
For a quick hack (that will certainly become broken with elaborate LAN configurations or IPv6), get a list of all IPs the current machine has, and strip out all IP:s that match any of the following: 10.* 127.* // <- Kudos to Brian for spotting the mistake 172.[16-31].* 192.168.* |
||||
|
|
|
Try to ping www.google.com on both interfaces. |
||||||||
|
|
|
Here is an article which could be helpful: How to Retrieve "Network Interfaces" in C#
|
||
|
|
|
|
I found a solution:
|
||||||||
|
|
|
You could simply read http://myip.dnsomatic.com/ It's a reliable service by OpenDNS, and I use it to get the external IP all the time. |
||||||||
|
|
|
I suggest this simple code since
|
||
|
|
