dvl@
Developer
This is the standard method for creating an IPv6 tunnel from HE.net:
These are the settings I use in my /etc/rc.conf:
The problem is: 98.114.44.254 isn't always my IP address. I have DHCP. Any suggestions as to how to do this properly?
Code:
ifconfig gif0 create
ifconfig gif0 tunnel 98.114.44.254 209.51.161.14
ifconfig gif0 inet6 2001:470:1f06:9ea::2 2001:470:1f06:9ea::1 prefixlen 128
route -n add -inet6 default 2001:470:1f06:9ea::1
ifconfig gif0 up
These are the settings I use in my /etc/rc.conf:
Code:
gif_interfaces="gif0"
gifconfig_gif0="98.114.44.254 209.51.161.14"
ifconfig_gif0_ipv6="inet6 2001:470:1f06:9ea::2 2001:470:1f06:9ea::1 prefixlen 128"
ipv6_defaultrouter="2001:470:1f06:9ea::1"
The problem is: 98.114.44.254 isn't always my IP address. I have DHCP. Any suggestions as to how to do this properly?