Already there. If you're using a unix based operating sytem you should be all set. To make sure you can look in /proc/net. You should see /proc/net/if_inet6. If it's not there, load it with modprobe ipv6. To see if your interface is configured for ipv6 run ip from iproute2 or ifconfig:
Code:
ip -6 addr show dev eth0 //eth0, eth1, eth2, etc. being your interface
or:
Code:
ifconfig
The latter would show you inet6 addr: blahblahblah.
To see if you can look up an ipv6 hostname:
Code:
host -t AAAA ipv6.whatever.com // use a sld that you know has a AAAA entry
If you need help (or setting up BIND), let me know.