vote up 1 vote down star

I'm working on an IP geolocation library that uses the first three octets of an IPv4 address to determine a user's country, city, lat, lon, etc. Works like a charm.

But it doesn't handle IPv6 addresses, and I'd like it to do so.

Is there any way to transform an IPv6 address to get the equivalent of the first three octets of an IPv4 address, or are they on an entirely different numbering scheme, requiring a completely different ipgeo mapping?

flag

67% accept rate
Can you tell me what part of the IPv6 specifications has led you to believe that there's any correspondence between IPv6 address and geographic location? – John Saunders Jul 22 at 2:13
You may want to see the following, at least with respect to Mobile IPv6: rfc-editor.org/rfc/rfc4882.txt – John Saunders Jul 22 at 2:18
Hmmmmmmmm... Well, there's nothing inherent about the IPv4 specification that implies any information about geographic location. It's a convenient coincidence (or inconvenient, if you don't want people to know what city you're in) that geolocation can be accomplished with IPv4, based only on the fact that IP address blocks tend to be allocated to regional ISPs. And actually, I wasn't asking about an inherent geolocation capability in IPv6, just for some transformation from an IPv6 address to the equivalent first-three-octets of an IPv4 address, if such a mapping exists. – benjismith Jul 22 at 3:04

2 Answers

vote up 3 vote down check

The typical IPv6 allocation is a /32 (four octets) to an Internet provider (which can be a multinational company), then /48 (six octets) to an end site (typically a client organization). You can get a starting point in the IANA list of delegated blocks.

This is only for registrations found in the databases of the RIR. Assignment to end users is typically not recorded so, my current address, 2a01:e35:8bd9:8bb0:92b:8628:5ca5:5f2b will tell you only that my provider's headquarters are in Paris (since it is a national company, the clients can be anywhere in France).

Another exception is the PI (Provider-Independent) assignements, which are typically /48.

Also, there exists many databases of geolocation for IPv4 and, to my knowledge, none for IPv6. You will have to do everything yourself.

To summary: more work than you apparently believe.

link|flag
Exactly the info I need. The solution to my problem, then, is this: do not implement geolocation for IPv6 addresses. – benjismith Jul 24 at 5:33
vote up 0 vote down

Since there does not appear to be an easy way to do this yet, perhaps we get the opportunity to do something that wasn't done in the case of IPv4 (*)

We could stop and ask ourselves whether this is a good idea.


(*) Or if it was done, it didn't work!

link|flag

Your Answer

Get an OpenID
or

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