Closed (fixed)
Project:
Drupal core
Version:
7.x-dev
Component:
base system
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
28 May 2009 at 08:41 UTC
Updated:
3 Jan 2014 at 00:29 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #3
markus_petrux commentedA few more links:
http://www.ipv6day.org/
http://www.ipv6-to-standard.org/
http://bgp.potaroo.net/index-ale.html
This one is pretty interesting reading:
http://www.potaroo.net/tools/ipv4/
To quote todays report:
- "Projected IANA Unallocated Address Pool Exhaustion: 06-Sep-2011"
- "Projected RIR Unallocated Address Pool Exhaustion: 31-Aug-2012"
IPv4 exhaustion counters:
http://ipv6.he.net/statistics/ (ByeBye v4 Hurricane Electric has a series of applications, widgets and JavaScript snippets to display the estimated exhaustion time and rate of IPv4, and the growing adoption of IPv6.)
Comment #4
anarcat commentedThe lenght of an IPv6 address is 40 characters, for the record:
$ echo 0000:0000:0000:0000:0000:0000:0000:0001 | wc
1 1 40
Comment #5
anarcat commentedI started to tag issues in the queue with the "ipv6" tag. There are only two other issues right now.
Comment #6
anarcat commentedHere's a patch that fixes the ip field in the blocked list. I am certain there are other culprits, for example #523286: Cleanup IP blocking fixes the form in a similar way.
Comment #7
josephcheekactually it's 39, as your command, above, counts the newline that echo writes. here's the correct command:
$ echo -n 0000:0000:0000:0000:0000:0000:0000:0001 | wc -c
39
but if you need to store the newline or a zero terminated character or otherwise, it's safe to allow 40 characters.
Comment #8
aspilicious commentedThis is ok
Comment #9
dries commentedCommitted to CVS HEAD. Thanks.