Index: network =================================================================== RCS file: /cvsroot/src/etc/rc.d/network,v retrieving revision 1.85 diff -u -p -r1.85 network --- network 16 Oct 2020 15:31:04 -0000 1.85 +++ network 24 Jan 2022 09:06:09 -0000 @@ -185,9 +185,8 @@ network_start_ipv6_route() ;; autohost) - if ! checkyesno dhcpcd; then - warn "rtsol and kernel ra handling have been removed" - warn "please configure dhcpcd in its place." + if ! checkyesno dhcpcd && [ -z "$defaultroute6" ]; then + /sbin/dhcpcd -n6b ${dhcpcd_flags} fi ;; @@ -429,11 +428,6 @@ network_start_defaultroute6() defaultroute6=$(kat /etc/mygate6) fi if [ -n "$defaultroute6" ]; then - if [ "$ip6mode" = "autohost" ]; then - echo - warn \ - "ip6mode is set to 'autohost' and a v6 default route is also set." - fi /sbin/route add -inet6 default $defaultroute6 fi }