Hello. I just don't know how to force dhcp6c to start while booting.
According to
My re0 takes IPv6 only after
P.S. I use DHCPv6 in case of Prefix Delegation problems from my provider, which gives me internet through PPPoE.
Thanks as always.
According to
Code:
% cat /usr/local/etc/rc.d/dhcp6c
# dhcp6c_enable (bool): Set to NO by default.
# Set it to YES to enable dhcp6c.
# dhcp6c_interfaces (NIC list): Not defined by default.
# Set it to the network interface(s) where dhcp6c should work on.
Code:
% sed -n "/IPv6/,/END IPv6/p" /etc/rc.conf
# IPv6
ipv6_gateway_enable="YES"
dhcp6c_enable="YES"
dhcp6c_interfaces="tun0"
#ifconfig_re0_ipv6="inet6 accept_rtadv"
#rtadvd_enable="YES"
#rtadvd_interfaces="re0"
#ifconfig_re0_ipv6="inet6 accept_rtadv"
#rtsold_enable="YES"
# END IPv6
% sudo service dhcp6c start. And no errors from dmesg.P.S. I use DHCPv6 in case of Prefix Delegation problems from my provider, which gives me internet through PPPoE.
Thanks as always.