Replies: 2 comments
|
If you pass |
0 replies
|
Thank you, and I'm sorry for the silly question. https://www.dnsdist.org/reference/selectors.html?h=suffixmatchnoderule#lua-SuffixMatchNodeRule |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
When using a named SuffixMatchNode, for example:
and then:
SuffixMatchNodeRule(private_ptr)
ShowRules() currently expands the node into the complete list of suffixes:
(qname in c.f.ip6.arpa., d.f.ip6.arpa., 8.e.f.ip6.arpa., ...)This can make rule listings very long and difficult to read.
It would be useful if SuffixMatchNode could optionally retain its Lua variable/name and ShowRules() could display:
(qname in private_ptr)The full suffix list could then be available through a separate command or optional verbose output.
This would improve readability and make large dnsdist configurations much easier to manage and troubleshoot.
All reactions