I'm trying to get a 4in6 tunnel (i.e. IPv4 traffic tunnelled across an IPv6 network) going on an RPi running Raspbian.
I've loaded the ipv6 kernel module with:
Code: Select all
sudo modprobe ipv6
Code: Select all
sudo ip -6 tunnel add tun1 mode ipip6 remote <remote address> local <local address>
Code: Select all
add tunnel ip6tnl0 failed: No such device
Some googling suggests there ought to be an ip6_tunnel and a tunnel6 module but Raspbian seems only to have the latter which I can load ok but that doesn't fix the tunnel creation error.
On a ubunutu box lsmod shows that both ip6_tunnel and tunnel6 are loaded (and the tunnel add works ok).
Can anyone point me in the right direction?
Regards,
Hugh