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

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

Block Instagram With "Layer-7"

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

Block Instagram With "Content"

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

Block Instagram With "TLS"

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