Page 1 of 1

How to by pass firewall on mikrotik.

Posted: Tue Oct 04, 2011 12:52 pm
by dlabreu
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

Re: How to by pass firewall on mikrotik.

Posted: Tue Oct 04, 2011 1:05 pm
by janisk
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.