Block Iflix with "Layer 7" or "Content" or "TLS" - MikroTik Script RouterOS

How to Block Iflix with "Layer 7" or "Content" or "TLS"

Block Iflix With "Layer-7"

/ip firewall layer7-protocol
add name=Iflix regexp="^.+(iflix.com).*\$"
/ip firewall filter
add action=drop chain=forward layer7-protocol=Iflix

Block Iflix With "Content"

/ip firewall filter
add action=drop chain=forward content="iflix.com" 
add action=drop chain=forward content=".iflix."

Block Iflix With "TLS"

/ip firewall filter
add action=drop chain=forward protocol=tcp tls-host="iflix.com"
add action=drop chain=forward protocol=tcp tls-host="*.iflix.*"
Credit: www.o-om.com