-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_dns.lua
46 lines (37 loc) · 1011 Bytes
/
test_dns.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env luajit
local ioloop = require('everlooping.ioloop')
ngx = require('ngx')
local resolver = require("resty.dns.resolver")
local cosocket = require('everlooping.tcppool')
function test_dns(host)
local r, err = resolver:new{
nameservers = {"8.8.8.8", {"8.8.4.4", 53} },
retrans = 5, -- 5 retransmissions on receive timeout
timeout = 2000, -- 2 sec
}
if not r then
ngx.say("failed to instantiate the resolver: ", err)
os.exit(1)
end
local answers, err = r:query(host)
if not answers then
ngx.say("failed to query the DNS server: ", err)
return
end
for i = 1, #answers do
local ans = answers[i]
ngx.say(ans.name, " ", ans.address or ans.cname,
" type:", ans.type, " class:", ans.class,
" ttl:", ans.ttl)
end
end
cosocket.register(function()
test_dns('www.google.com')
end)
cosocket.register(function()
test_dns('twitter.com')
end)
cosocket.register(function()
test_dns('tlskadklfh.com')
end)
ioloop.defaultIOLoop():start()