lazydns

ACL (Query Access Control List) Plugin

The acl plugin controls access to the DNS server based on the client’s IP address. It evaluates an ordered list of IP network rules and either allows the query to continue or returns a REFUSED response.

Behavior

Configuration

Example:

plugins:
  - tag: query_acl
    type: query_acl
    config:
      default: deny
      rules:
        - network: 192.168.0.0/16
          action: allow
        - network: 10.0.0.0/8
          action: allow

Notes:

Implementation details

Troubleshooting