bind9 allows you to configure DNS round-robin to multiple different IPs like:
server A 10.10.10.1
server A 10.10.10.2And it'll return 50%/50% approximate.
However, I need it to return, for example, 1/4 of the queries with 10.10.10.1 and 3/4 with 10.10.10.2. I tried to do something like that but this does not work:
server A 10.10.10.1
server A 10.10.10.2
server A 10.10.10.2
server A 10.10.10.2...as it returns 50%/50% of each IP.
How can I achieve that?
I use Debian 10 and Bind 9.11.5
2 Reset to default