Forgot your password?
typodupeerror

Comment Re:ACL the Netflix subnets (Score 1) 229

I'm blocking Netflix IPv6 subnets on my router with ICMPv6 no-route-to-host. Windows, Mac and Android clients all seem to immediately fall back to IPv4 and play as normal. It seems like a better solution than disabling IPv6 outright.

Mikrotik RouterOS syntax:

/ipv6 firewall address-list add address=2406:da00:ff00::/48 list=netflix add address=2600:1407:19::/48 list=netflix add address=2607:f8b0:4001::/48 list=netflix add address=2620:108:700f::/48 list=netflix add address=2a01:578:3::/48 list=netflix

/ipv6 firewall filter add chain=forward dst-address-list=netflix action=reject

I won't take a risk of blocking something that actually one day could change. Instead, I've changed how my DNS-resolver should react on lookups on netflix.com, by adding netflix.com as a forwarder-zone. The forwarder leads to another local resolver that filters all AAAA-pointers on lookups. So as soon as any authorized client (even if they are outside my own network) they will only receive the list of ipv4-addresses. The benefits of this is that I never need to configure a network to work without ipv6 for only one host and I can use the solution wherever I am :). I also wrote down a "note to self"-style post about this yesteday, in case of it happens again: http://tornevalls.se/blog/2016...

Slashdot Top Deals

"This isn't brain surgery; it's just television." - David Letterman

Working...