Hi!
I’m trying to block some website.
For example now its facebook.
I made a new layer 7 Protocol with the following regexp: ^.(facebook).$
I add a new filter rule:
chain forward src.address 0.0.0.0/0 action: drop
It works almost perfectly. It block some other website to (that doesnt contains facebook). What could be the mistake?
But when i want to add some exception it doesn’t work:
I made a new rule:
chain forward src.address. 10.0.0.121 action: accept
But i still can’t browse facebook on that computer.
How can i make exceptions?
Is it possible, when i block a webpage like this, redirect the users to another webpage what i make?
Thanks for the answers!
Daniel
I have the sollution.
I didn’t choose the protocol and the port.
After i set the protocol to tcp and the port to 80 and 443 it works perfectly.
Hope this will help others.
Thanks for the help!
Daniel