You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am trying to use dnsd to return authority (SOA) record, based on the host in the question.
For example, if, the query is for host in *.sub.domain.com, and local dnsd serves domain.com, I want to redirect the client to another dnsd instance, which serves sub.domain.com.
Tried several ways, like:
type: "SOA",
data:{ 'mname': "ns1.sub.domain.com"
, 'rname': "info.domain.com"
, 'serial': 2018021005
, 'refresh': 10000
, 'retry' : 100
, 'expire' : 100
, 'ttl' : 300
},
or
res.authority.push(["ns1.sub.domain.com","info.domain.com", 2018021005 ,10000, 100, 100, 300]);
In the first case I got a valid response, but the Authority section is empty, in the second I get an error:
Error processing request:TypeError: Cannot read property 'replace' of undefined
Any help will be highly appreciated.
Best,
Kiril.
The text was updated successfully, but these errors were encountered:
Hi! Are you able to use tcpdump, wireshark, etc. to capture a query and
response for this SOA record?
Much of the test suite sends data captured from a real DNS query and
response. Then I work backwards from there.
Hello,
I am trying to use dnsd to return authority (SOA) record, based on the host in the question.
For example, if, the query is for host in *.sub.domain.com, and local dnsd serves domain.com, I want to redirect the client to another dnsd instance, which serves sub.domain.com.
Tried several ways, like:
type: "SOA",
data:{ 'mname': "ns1.sub.domain.com"
, 'rname': "info.domain.com"
, 'serial': 2018021005
, 'refresh': 10000
, 'retry' : 100
, 'expire' : 100
, 'ttl' : 300
},
or
res.authority.push(["ns1.sub.domain.com","info.domain.com", 2018021005 ,10000, 100, 100, 300]);
In the first case I got a valid response, but the Authority section is empty, in the second I get an error:
Error processing request:TypeError: Cannot read property 'replace' of undefined
Any help will be highly appreciated.
Best,
Kiril.
The text was updated successfully, but these errors were encountered: