Currently my IPS provides IPv6, but I set up my firewall in the access router of my home LAN to block all IPv6 in both directions. - I don't want to have a permanent global unchanged ipv6 as in id of my traffic. - IPv6 privacy extensions would change that but then I can not reach my two devices I do want to reach from outside anymore as my access router only supports DynDNS for its own address and no NAT in IPv6
IPv6 traffic crosses the 50% mark
641–643 of 643 posts
Re: IPv6 traffic crosses the 50% mark
#642Earlier quoted context omitted.
Privacy extensions are additional addresses that are used by default for outbound connections. You still have the non-privacy address, which doesn't change; put that one into DNS. This approach prevents outbound connections from leaking the address needed to connect to your servers. On v4, it's likely that any outbound connection from your network gives the server the IP they need to do that.
My ISP changes the prefix on a regular base (and on request)
I found this was the case (with Telus) until I reconfigured the DHCPv6-PD client on my gateway, mainly to stop it from sending DHCPv6 Release messages and to have it explicitly request the prefix I was previously assigned.
OpenWRT in particular seemed to be built not to save any dhcp client state in non-volatile memory, resulting in a lot of unnecessary address and prefix churn when rebooting the router. I've had the same stable prefix for over a year now, using systemd-networkd with the following configuration (the important parts are SendRelease=no, RequestAddress= and PrefixDelegationHint=; the rest of the options are just insurance):
https://gist.github.com/dlitz/487d733140aa784559d73e4cd6f723...
Re: IPv6 traffic crosses the 50% mark
#643Earlier quoted context omitted.
Defense in depth is a thing but I agree that relying on it is not a good idea.
Defense in depth is not the point, zero trust networking is.