package
0.9.10
Repository: https://github.com/skrishna-unix/coredns.git
Documentation: pkg.go.dev

# README

loadbalance

loadbalance acts as a round-robin DNS loadbalancer by randomizing the order of A and AAAA records in the answer.

See Wikipedia about the pros and cons on this setup. It will take care to sort any CNAMEs before any address records, because some stub resolver implementations (like glibc) are particular about that.

Syntax

loadbalance [POLICY]
  • POLICY is how to balance, the default is "round_robin"

Examples

Load balance replies coming back from Google Public DNS:

. {
    loadbalance round_robin
    proxy . 8.8.8.8 8.8.4.4
}

# Structs

RoundRobin is plugin to rewrite responses for "load balancing".
RoundRobinResponseWriter is a response writer that shuffles A and AAAA records.