How To Protect DNS Attacks Thanks
UDP 53 port How To Limit By SRC address
Thanks
Yes I understand I have firewall rules, that are working fine, but I need to limit DNS requests somehow.
Sometimes I see DNS does not work on my router (ROS 2.9.50), when I torch the interfaces, I see that someone from my clients attacks (DNS UDP port 53 a lot of requests). How can I solve this problem, or may be you can give any script blocking such client for a while ?
Thanks
With Regards Karapet Aznavuryan
/ip firewall filter
add chain=input action=accept dst-port=53 protocol=udp limit=2400/1m,5 comment="limited dns" disabled=no
add chain=input action=accept dst-port=53 protocol=udp comment="allowed dns" disabled=no
Chupaka
May Be You can give some examples, how to use dns limit?
I'll be very glad to see them,
Now I'm trying to limit them by the followingI need something like that, can You help me?Code: Select all/ip firewall filter add chain=input action=accept dst-port=53 protocol=udp limit=2400/1m,5 comment="limited dns" disabled=no add chain=input action=accept dst-port=53 protocol=udp comment="allowed dns" disabled=no
/ip firewall filter
add chain=input action=accept dst-port=53 protocol=udp limit=2400/1m comment="limited dns" disabled=no
add chain=input action=drop dst-port=53 protocol=udp comment="all others go to hell" disabled=no
I Registered to thank you Chupaka! It really helps me.Chupaka
May Be You can give some examples, how to use dns limit?
I'll be very glad to see them,
Now I'm trying to limit them by the followingI need something like that, can You help me?Code: Select all/ip firewall filter add chain=input action=accept dst-port=53 protocol=udp limit=2400/1m,5 comment="limited dns" disabled=no add chain=input action=accept dst-port=53 protocol=udp comment="allowed dns" disabled=no
Code: Select all/ip firewall filter add chain=input action=accept dst-port=53 protocol=udp limit=2400/1m comment="limited dns" disabled=no add chain=input action=drop dst-port=53 protocol=udp comment="all others go to hell" disabled=no