Community discussions

MikroTik App
 
User avatar
dlabreu
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 60
Joined: Fri May 08, 2009 10:14 am
Location: South Africa

How to by pass firewall on mikrotik.

Tue Oct 04, 2011 12:52 pm

Hi to all.

I would like to know if this is possible.

I got a device in my network that have to have full access to internet inbound and outbound.

I need to create a rule on my firewall that will do that


My network looks like that


Public ip -------------RB1100 nat ---------device on ip 10.0.0.232


How can i do that?


Thanks
 
User avatar
janisk
MikroTik Support
MikroTik Support
Posts: 6263
Joined: Tue Feb 14, 2006 9:46 am
Location: Riga, Latvia

Re: How to by pass firewall on mikrotik.

Tue Oct 04, 2011 1:05 pm

you have to add rules in /ip firewall filter that will accept all packets from/to that host.
/ip firewall filter add chain=forward src-address=<special host> action=accept
/ip firewall filter add chain=forward dst-address=<special host> action=accept
where to place them - it depends on your config. place it where you accept new connections, leaving accept related and established as first rules.