Use the IPv6 documentation prefix as the default cidr

Don't use a cidr which might be routable, instead use the
IPv6 documentation prefix which should be dropped and
filtered by routers according to RFC 3849.

Change-Id: I5efc30ca633118a5fb517dace77aaffb49fd2013
diff --git a/tempest/config.py b/tempest/config.py
index d67d3e0..32cebc5 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -667,7 +667,7 @@
                default=28,
                help="The mask bits for project ipv4 subnets"),
     cfg.StrOpt('project_network_v6_cidr',
-               default="2003::/48",
+               default="2001:db8::/48",
                help="The cidr block to allocate project ipv6 subnets from"),
     cfg.IntOpt('project_network_v6_mask_bits',
                default=64,