4 This example shows how to handle queries and generate response packet.
7 If the python module is the first module and validator module is enabled (``module-config: "python validator iterator"``),
8 a return_msg security flag has to be set at least to 2. Leaving security flag untouched causes that the
9 response will be refused by unbound worker as unbound will consider it as non-valid response.
14 .. literalinclude:: ../../examples/resgen.py
20 Run the unbound server:
22 ``root@localhost>unbound -dv -c ./test-resgen.conf``
24 Query for a A record ending with .localdomain
26 ``dig A test.xxx.localdomain @127.0.0.1``
28 Dig produces the following output::
30 ;; global options: printcmd
32 ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 48426
33 ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
36 ;test.xxx.localdomain. IN A
39 test.xxx.localdomain. 10 IN A 127.0.0.1
42 ;; SERVER: 127.0.0.1#53(127.0.0.1)
43 ;; WHEN: Mon Jan 01 12:46:02 2009
46 As we handle (override) in python module only queries ending with "localdomain.", the unboud can still resolve host names.