John Siu Blog | Linux IPv6 Router How To
https://johnsiu.com/blog/linux-router01.09.2020 · I believe currently, if not using a full router/firewall distro like OpenWRT, pfSense or ClearOS, then dnsmasq with wide-dhcpv6-client is the best combination for DIY Linux router solution. Their ability of auto IPv6 prefix handling, which allow configurations without hardcoding IPv6 prefix, is especially important for location that can’t secure their own IPV6 prefix.
John Siu Blog | Linux IPv6 Router How To
johnsiu.com › blog › linux-routerSep 01, 2020 · To support IPv6 and as a router, following need to be set in /etc/sysctl.conf 1 2 3 4 5 6 net.ipv4.ip_forward=1 net.ipv4.conf.all.accept_source_route = 1 net.ipv6.conf.all.accept_source_route = 1 net.ipv6.conf.all.forwarding=1 net.ipv6.conf.enp1s0.accept_ra=2 net.ipv6.conf.enp1s0.router_solicitations=1 enp1s0 is device name of NIC 1.