-
I made it as a public DNS, but some overseas IPs are continuously sending unnecessary requests. It would be nice to be able to deny DNS requests based on IP. |
Beta Was this translation helpful? Give feedback.
Answered by
kwitsch
Apr 22, 2023
Replies: 2 comments 4 replies
-
You could define a blacklist with a regex entry that matches every request and use it for the IP address. 🤔 Something like: blocking:
blackLists:
everything:
- |
/.*/
clientGroupsBlock:
123.123.123.123:
- everything |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
isac322
-
This sounds more like a job for your firewall IMO. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could define a blacklist with a regex entry that matches every request and use it for the IP address. 🤔
Something like: