Manual - IP - Firewall - L7 - MikroTik Wiki
Manual - IP - Firewall - L7 - MikroTik Wiki
Manual - IP - Firewall - L7 - MikroTik Wiki
Contents
Applies to
Summary RouterOS: v3,
Properties v4 +
Examples
Simple L7 usage example
L7 in input chain
Youtube Matcher
Summary
layer7-protocol is a method of searching for patterns in ICMP/TCP/UDP streams.
Note: The L7 matcher is very resource intensive. Use this feature only for very specific traffic. It is
not recommended to use L7 matcher for generic traffic, such as for blocking webpages. This will
almost never work correctly and your device will exhaust it's resources, trying to catch all the
traffic. Use other features to block webpages by URL
L7 matcher collects the first 10 packets of a connection or the first 2KB of a connection and searches for the
pattern in the collected data. If the pattern is not found in the collected data, the matcher stops inspecting
further. Allocated memory is freed and the protocol is considered as unknown. You should take into account
that a lot of connections will significantly increase memory and CPU usage. To avoid this, add regular firewall
matchers to reduce amount of data passed to layer-7 filters repeatedly.
Additional requirement is that layer7 matcher must see both directions of traffic (incoming and outgoing). To
satisfy this requirement l7 rules should be set in forward chain. If rule is set in input/prerouting chain
then the same rule must be also set in output/postrouting chain, otherwise the collected data may not be
complete resulting in an incorrectly matched pattern.
Example L7 patterns compatible with RouterOS can found in l7-filter project page (http://l7-filter.sourceforg
e.net/protocols).
Warning: In some cases when layer 7 regular expression cannot be performed, RotuerOS will log
topic=firewall, warning with an error message stating the problem in the message
Property Description
name (string; Default: ) Descriptive name of l7 pattern used by configuration in firewall
rules. See example >>.
regexp (string; Default: ) POSIX compliant regular expression used to match pattern.
Examples
First, add Regexp strings to the protocols menu, to define strings you will be looking for. In this example we
will use pattern to match rdp packets.
# add l7 matcher
add action=accept chain=forward comment="" disabled=no layer7-protocol=\
rdp protocol=tcp
As you can see before l7 rule we added several regular rules that will match known traffic thus reducing
memory usage.
L7 in input chain
In this example we will try to match telnet protocol connecting to our router.
Note that we need both directions that is why we need also l7 rule in output chain that sees outgoing packets.
Youtube Matcher
Note: When user is logged in youtube will use HTTPS, meaning that L7 will not be able to match
this traffic. Only unencrypted HTTP can be matched.