For the last five or so years I have been using the SIXXS IPv6 tunnel. It has been good ... until about two weeks ago. That's when I noticed that my "apt-get update" command was hanging on the first line. It didn't take long to find the cause -- my IPv6 tunnel was not functioning. Using "sudo aiccu stop && sudo aiccu start" didn't help. A visit to the website revealed that my tunnel was down. They knew about it but didn't know when it would be back up. Two weeks later, earlier this morning, I did something about it. I removed aiccu and went to the Hurricane website and activated a tunnel through their service. It took all of three minutes. All I had to do was unblock the ICMP in my firewall and run the following code:
and I was in business. I didn't need to install a service.
My IPv6 connection is the default and is, like SIXXS was, seen as native.
I added the code to /etc/rc.local
Code:
ifconfig sit0 up ifconfig sit0 inet6 tunnel ::xxx.xxx.xxx.xxx (redacted) ifconfig sit1 up ifconfig sit1 inet6 add 2001:(redacted):2/64 route -A inet6 add ::/0 dev sit1
My IPv6 connection is the default and is, like SIXXS was, seen as native.
I added the code to /etc/rc.local
Comment