vote up 4 vote down star
1

I want to store the data returned by $_SERVER["REMOTE_ADDR"] in PHP into a DB field, pretty simple task, really. The problem is that I can't find any proper information about the maximum length of the textual representation of an IPv6 address, which is what a webserver provides through $_SERVER["REMOTE_ADDR"].

I'm not interested in converting the textual representation into the 128 bits the address is usually encoded in, I just want to know how many characters maximum are needed to store any IPv6 address returned by $_SERVER["REMOTE_ADDR"].

flag

33% accept rate

closed as not programming related by Gilles Oct 3 '08 at 14:18

2 Answers

vote up 10 vote down check

I believe it would be:

8 * 4 + 7 = 39

8 groups of 4 digits with 7 ':' between them.

Or, if you want to take into account the IPv4 tunneling features [0000:0000:0000:0000:0000:0000:192.168.0.1],

(6 * 4 + 5) + 1 + (4 * 3 + 3) = 29 + 1 + 15 = 45

link|flag
I'm in a generous mood, but I did post my answer first. I left the question open in case someone would contradict my finding. – Gilles Oct 3 '08 at 14:20
0000:0000:0000:0000:0000:0000:127.127.127.127 As I read here: tools.ietf.org/html/rfc4291, this could be valid. And this is 45 chars. – Vili Sep 21 at 12:42
Allow me to be ther first to say: That's just a bastardised IPv4 address. But you are right. – Matthew Scharley Sep 21 at 15:17
vote up 6 vote down

Answered my own question:

IPv6 addresses are normally written as eight groups of four hexadecimal digits, where each group is separated by a colon (:).

So that's 39 characters max.

link|flag

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