Apps/FilterAaaaApp/README.md
A DNS App for Technitium DNS Server that filters AAAA responses when an A record also exists.
IDnsApplication, IDnsPostProcessordnsApp.config contains these keys:
| Property | Type | Default | Description |
|---|---|---|---|
enableFilterAaaa | boolean | false | Enables filtering. |
defaultTtl | number | 30 | SOA TTL used for NODATA responses. |
bypassLocalZones | boolean | false | Do not modify authoritative answers. |
bypassNetworks | string[] | [] | Client networks excluded from filtering. |
bypassDomains | string[] | [] | Domain names excluded from filtering. |
filterDomains | string[] | [] | Domains eligible for filtering; empty means all domains. |
{
"enableFilterAaaa": true,
"defaultTtl": 30,
"bypassLocalZones": false,
"bypassNetworks": [],
"bypassDomains": ["ipv6.example.com"],
"filterDomains": []
}
NoError.