> Platform: All
> OS/Version: Linux
> Tree: Mainline
> Status: NEW
> Severity: normal
> Priority: P1
> Component: IPV6
> AssignedTo:
yoshfuji@linux-ipv6.org
> ReportedBy:
tobias@linuxdingsda.de
>
>
> Latest working kernel version: --
> Earliest failing kernel version: --
> Distribution: Debian sid
> Hardware Environment: model name : Intel(R) Pentium(R) Dual CPU E2180 @
> 2.00GHz
> Software Environment:
> Problem Description:
> Linux is unable to handle more than ~4096 ipv6 addresses and usually crashes
> after a not very long time. If not, it at least gets unusable slow.
>
> Consider shared hosting environments, where you have some few thousand
> customers with a few domains each sitting on one box. You now would like to use
> ipv6 for greater fun with https and, for that, need about 6-30k addresses bound
> to the box.
>
>
> Steps to reproduce:
>
> #!/bin/bash
> COUNTER=1
> COUNTERR=1
> while [ $COUNTERR -lt 9999 ]; do
> while [ $COUNTER -lt 9999 ]; do
> ip addr add 2001::$COUNTERR:$COUNTER/64 dev eth1
> let COUNTER=COUNTER+1
> echo $CONTERR $COUNTER
> done
> let COUNTERR=COUNTER+1
> done
>