Hello,

I set it up as below and forward it to kometch.local of the internal domain which is the stub zone, but when reverse lookup it will be output as block.

kometch@dns02:~$ drill 192.168.122.1 -x
;; ->>HEADER<<- opcode: QUERY, rcode: NXDOMAIN, id: 43732
;; flags: qr aa rd ra ; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0 
;; QUESTION SECTION:
;; 1.122.168.192.in-addr.arpa.  IN      PTR

;; ANSWER SECTION:

;; AUTHORITY SECTION:
blocked.        900     IN      SOA     blocked. . 0 3600 900 604800 900

;; ADDITIONAL SECTION:

;; Query time: 1 msec
;; SERVER: 192.168.122.223
;; WHEN: Fri Apr 14 22:13:57 2017
;; MSG SIZE  rcvd: 86

# kresd.conf
modules = {
        'hints  > iterate', -- Hints AFTER iterate
        'policy > hints',   -- Policy AFTER hints
        'view   < rrcache',  -- View BEFORE rrcache
        predict = {
                window = 30, -- 15 minutes sampling window
                period = 24*(60/15) -- track last 6 hours
        },
        'daf',
        'stats'
}
modules.list() -- Check module call order
--stub forward 
policy.add(policy.pattern(policy.FORWARD('192.168.122.223@10053', '192.168.122.224@10053'), '\7kometch\5local'))

In this case, how should it be set?

Best regards.