我正在尝试为powerdns编写自己的pipe-backend,但无法使其正常工作。我正在用我的后端启动pdn_server并尝试使用命令测试它:
# nslookup example.com 127.0.0.1
和
# dig @127.0.0.1 example.com
第一个问题是对后端的第一个查询带有'SOA'类型(后端abi版本2):
Q example.com IN SOA -1 127.0.0.1 0.0.0.0
我虽然'好吧,让我们从SOA开始'并尝试编写部分代码。 在调试中,我可以看到后端已启动,确实接收到查询并向pdns发送答案。但似乎出了问题,pdns没有得到它。无法弄清楚什么是问题。源代码和调试如下:
#!/usr/bin/python
from sys import stdin, stdout, stderr
data = stdin.readline()
stdout.write("OK\tCC DNS Backend\n")
stdout.flush()
stderr.write("$$$ Main loop started...\n")
while True:
line = stdin.readline().strip()
kind, qname, qclass, qtype, id, ip, mask = line.split('\t')
if kind == 'Q':
stderr.write('$$$ Got request ' + qname + '\n')
if qtype != 'SOA':
r = "DATA\t'+qname+'\t'+qtype+'\t'+qclass+'\t'+'127.0.0.1\n"
stderr.write(r)
stdout.write(r)
else:
stderr.write("$$$ Sending SOA\n")
r = "DATA\texample.com\tIN\tSOA\t86400\t1\tahu.example.com ns1.example.com 2008080300 1800 3600 604800 3600\n"
stdout.write(r)
stderr.write(r)
stdout.write("END\n")
stderr.write("END\n")
调试:
Dec 05 15:36:43 Done launching threads, ready to distribute questions
Dec 05 15:36:49 Query: 'Q example.com IN SOA -1 127.0.0.1 0.0.0.0'
$$$ Got request example.com
$$$ Sending SOA
DATA example.com IN SOA 86400 1 ahu.example.com ns1.example.com 2008080300 1800 3600 604800 3600
END
$$$ Main loop started...
Dec 05 15:36:49 Backend launched with banner: OK CC DNS Backend
$$$ Main loop started...
Dec 05 15:36:49 Backend launched with banner: OK CC DNS Backend
Dec 05 15:36:54 Query: 'Q example.com IN SOA -1 127.0.0.1 0.0.0.0'
$$$ Got request example.com
$$$ Sending SOA
DATA example.com IN SOA 86400 1 ahu.example.com ns1.example.com 2008080300 1800 3600 604800 3600
END
Dec 05 15:36:59 Query: 'Q example.com IN SOA -1 127.0.0.1 0.0.0.0'
$$$ Got request example.com
$$$ Sending SOA
DATA example.com IN SOA 86400 1 ahu.example.com ns1.example.com 2008080300 1800 3600 604800 3600
END
答案 0 :(得分:1)
问题出在python的缓冲输入输出中。 邮件列表用户给出了答案 - 更改行:
#!/usr/bin/python
到
#!/usr/bin/python -u
' - 你'禁用缓冲。