Hi all, I'm hoping you can help with this. I have a Hurricane Electric IPv6 tunnel set up on my router. Unfortunately Netflix sees this as an attempt to circumvent its geoblocking. The simple solution would be to disable IPv6 on my streaming devices, but you can't do this on an Apple TV. So, I would like to block ALL IPv6 traffic from the Apple TV. Can I accomplish this with an ip6tables rule on the router? Something like:
Would this work? Is FORWARD the right chain, or maybe PREROUTING? Is br0 the right interface? Which script would I use to make it persistent?
EDIT: I think I've got it:
Could anyone tell me which script to put this in to make it persistent? And/or, if you know of a better way of doing this, I'd love to hear it!
Code:
ip6tables -A FORWARD -i br0 -m mac --mac-source [mac address] -j DROP
Would this work? Is FORWARD the right chain, or maybe PREROUTING? Is br0 the right interface? Which script would I use to make it persistent?
EDIT: I think I've got it:
Code:
ip6tables -t mangle -A PREROUTING -m mac --mac-source [mac address] -j DROP
Could anyone tell me which script to put this in to make it persistent? And/or, if you know of a better way of doing this, I'd love to hear it!
Last edited: