GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
COREDNS-HEADER(7) CoreDNS Plugins COREDNS-HEADER(7)

header - modifies the header for responses.

header ensures that the flags are in the desired state for responses. The modifications are made transparently for the client.

header {
    ACTION FLAGS...
    ACTION FLAGS...
}

ACTION defines the state for DNS message header flags. Actions are evaluated in the order they are defined so last one has the most precedence. Allowed values are:

set
clear

FLAGS are the DNS header flags that will be modified. Current supported flags include:

aa - Authoritative(Answer)
ra - RecursionAvailable
rd - RecursionDesired

Make sure recursive available ra flag is set in all the responses:

. {
    header {
        set ra
    }
}

Make sure "recursion available" ra and "authoritative answer" aa flags are set and "recursion desired" is cleared in all responses:

. {
    header {
        set ra aa
        clear rd
    }
}

July 2021 CoreDNS

Search for    or go to Top of page |  Section 7 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.