WANIP=$(ip -4 addr show dev eth0 | awk '/inet / {print $2}' | cut -d/ -f1)
V6PREFIX=$(printf '2002:%02x%02x:%02x%02x' $(echo $WANIP | tr . ' '))
ip tunnel add tun6to4 mode sit ttl 255 remote any local $WANIP
ip link set tun6to4 mtu 1280
ip link set tun6to4 up
ip addr add $V6PREFIX:0::1/16 dev tun6to4
ip addr add $V6PREFIX:1::1/64 dev eth0
ip -6 route add 2000::/3 via ::192.88.99.1 dev tun6to4
I passed the hint forward, and it can be seen in this Rimuhosting page about IPv6.
If you have IPv6, you can access my home page via the pure-IPv6 URL http://v6.epx.com.br. The normal address has both A and AAAA addresses, so it continues to function normally (and go via IPv6 if client side is configured to prefer it).
Provided your ISP is routing the anycast address (and I bet it is; even the Brazilian ISPs are doing it) this method could be used by any entity which wants to connect to IPv6 cloud. Just remember that you need an additional service to distribute IPv6 addresses, like radvd (shown in previous posts) or DHCPv6. And you need to set up a firewall for IPv6.
I'd say that a true tunnel like Hurricane Electric's would be better for a 'serious' environment (or if you need a fixed IPv6 range and does not have a fixed IPv4). In the other hand, 6to4 does not demand any account registration. Also, as ISPs improve their own IPv6 networks and upstream connections, 6to4 may offer lower latency (as happened in Rimuhosting).