such as this
abcRandom1.examlle.com -> abc*.example.com
abcRandom2.examlle.com -> abc*.example.com
like a Regular match rules.
The RegexRule could help you here:
addAction(RegexRule("abc.*\\.example\\.com"), DropAction())
The RegexRule could help you here:
```lua
addAction(RegexRule("abc.*\.example\.com"), DropAction())> ```
now i konw i must use dnsdist.
addAction(RegexRule("abc.*\\.example\\.com"), SpoofAction(172.16.254.5)
thanks a lot
Most helpful comment
The RegexRule could help you here: