Adminor provides native IPv6, but if you’d like to setup an IPv6 tunnel you can still do so.
Crossposted from http://www.cybermilitia.net/2013/07/22/ipv6-tunnel-on-openvz/
You can get IPv6 connectivity using a tunnel, if you don’t have native IPv6 support.
Doing this is pretty straightforward if you have a dedicated server or a KVM VPS.
However, with an OpenVZ VPS, things are a little different.
Here’s how you can get IPv6 working on a OpenVZ VPS with a tunnel – Tutorial for Debian (tested on wheezy).
- Create a tunnel at tunnelbroker.net
Hurricane Electric allows creation of up to 5 free IPv6 tunnels @ tunnelbroker.net.
Create one for your VPS.
- Enable TUN/TAP on your VPS.
It should normally be possible to do this through your control panel (e.g., SolusVM).
If not, a support ticket with your provider should get it done fairly quickly.
Be advised that toggling this option forces a reboot. So plan accordingly.
- tb-tun
tb-tun is a userspace program that utilizes TUN/TAP to build a tunnelbroker tunnel on linux.
Since we can’t do it any other way on a OpenVZ VPS.
apt-get install iproute gcc
cd /root
wget http: //tb-tun .googlecode.com /files/tb-tun_r18 . tar .gz
tar -xf tb-tun_r18. tar .gz
gcc tb_userspace.c -l pthread -o tb_userspace
|
- Create a new init script
and put in the following contents (after replacing the correct IP addresses, of course)
Remember, for the tunnel, your VPS IP is the client and the Hurricane Electric IP is the server.
#! /bin/sh
touch /var/lock/ipv6tb
case "$1" in
start)
echo "Starting ipv6tb "
setsid /root/tb_userspace tb [Server IPv4 Address] [Client IPv4 Address] sit > /dev/null 2>&1 &
sleep 3s
ifconfig tb up
ifconfig tb inet6 add [Client IPv6 Address] /64
ifconfig tb inet6 add [Routed /64 ]::1 /64
ifconfig tb mtu 1480
route -A inet6 add :: /0 dev tb
route -A inet6 del :: /0 dev venet0
;;
stop)
echo "Stopping ipv6tb"
ifconfig tb down
route -A inet6 del :: /0 dev tb
killall tb_userspace
;;
*)
echo "Usage: /etc/init.d/ipv6tb {start|stop}"
exit 1
;;
esac
exit 0
|
Make it executable, and add it to startup –
chmod 0755 /etc/init .d /ipv6tb
update-rc.d ipv6tb defaults
|
- Execute it right away –
OR simply reboot.
Test to confirm that IPv6 connectivity is working