Community discussions

MikroTik App

Search found 1 match

by fctaddia
Sun May 02, 2021 2:22 am
Forum: Beginner Basics
Topic: Block all outbound ports except DNS, Http and Https
Replies: 6
Views: 14305

Re: Block all outbound ports except DNS, Http and Https

To block all ip traffic except the ones you listed ip firewall filter add chain=forward action=accept protocol=tcp src-address=10.1.0.0/24 dst-address=0.0.0.0/0 dst-port=53 add chain=forward action=accept protocol=udp src-address=10.1.0.0/24 dst-address=0.0.0.0/0 dst-port=53 add chain=forward actio...