Community discussions

MikroTik App
 
User avatar
butche
Trainer
Trainer
Topic Author
Posts: 430
Joined: Fri May 28, 2004 6:14 pm
Location: Missouri, USA
Contact:

Layer 7 to match http by IP

Thu Jan 27, 2011 7:18 am

I am trying to build what I thought would be a very simple layer 7 filter. Turns out, it's not so simple (or I'm just too slow). I am trying to build a filter that will match on any attempt to open a website by IP. For example, I am wanting to match http://10.10.10.10. I have tried matching based on the http header as well as URL. I know I'm missing something simple. For example this works as expected:
http.*butchevans
So does this:
host.*butchevans.com
This does not:
Host.*[0-9]*\\.[(0-9]*\\.[0-9]*\\.[0-9]*
I realize that even if the above regex DID work it would match way more than just an IP, but this is the simplest form of a regex with a very broad scope. Anyone have any ideas?
 
fewi
Forum Guru
Forum Guru
Posts: 7717
Joined: Tue Aug 11, 2009 3:19 am

Re: Layer 7 to match http by IP

Fri Jan 28, 2011 1:44 am

This appears to work in 5.0rc7, should work in earlier versions, too:
/ip firewall layer7-protocol
add name=test regexp="host:.[0-9][0-9]\?[0-9]\?\\.[0-9][0-9]\?[0-9]\?\\.[0-9][0-9]\?[0-9]\?\\.[0-9][0-9]\?[0-9]\?"
 
User avatar
butche
Trainer
Trainer
Topic Author
Posts: 430
Joined: Fri May 28, 2004 6:14 pm
Location: Missouri, USA
Contact:

Re: Layer 7 to match http by IP

Fri Jan 28, 2011 2:13 am

Thanks, fewi! I have tried MANY variations without success. I can't believe I missed this one.