Tuesday, May 7, 2024
 Popular · Latest · Hot · Upcoming
16
rated 0 times [  16] [ 0]  / answers: 1 / hits: 15560  / 1 Year ago, sat, april 15, 2023, 2:35:41

I am trying to set up a Hurricane IPv6 tunnel on my Ubuntu 11.10 computer. I have set up my /etc/network/interfaces file as stated on https://wiki.ubuntu.com/IPv6#Get_connected_with_Hurricane_Electric.



My /etc/network/interfaces file is the following:



auto lo
iface lo inet loopback

auto he-ipv6
iface he-ipv6 inet6 v4tunnel
endpoint 209.51.161.14
address 2001:470:1f06:6::2/64
netmask 64
up ip -6 route add default dev he-ipv6
down ip -6 route del default dev he-ipv6


When I try to start IPv6 by running sudo ifup he-ipv6, I receive the following:



add tunnel sit0 failed: No buffer space available
Failed to bring up he-ipv6.


I have double checked that the data I entered from Hurricane is correct. What is causing this problem, and how can I fix it?


More From » networking

 Answers
1

Problem 1: the /64 on the end of the address parameter is incorrect. That's what the netmask parameter is for; you should delete the /64 on the end of address.



However, the error you're seeing is what you'd expect if there was already a tunnel configured with the name "he-ipv6". At a guess, you've already run ifup he-ipv6, and it's got as far as creating the tunnel before falling over with an error due to the trailing /64. Try doing



sudo ip tun del he-ipv6


to delete the half-configured tunnel before trying again.


[#40054] Monday, April 17, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eighethod

Total Points: 358
Total Questions: 112
Total Answers: 119

Location: Cayman Islands
Member since Fri, Mar 4, 2022
2 Years ago
eighethod questions
;