Articles of 挖

绑定反向ipv6映射,挖掘没有答案,SERVFAIL

我正在使用安装绑定9的Fedora 17,试图configuration一个DNS,我已经解决了一个问题: 绑定DNSconfiguration,dig命令不parsing名称 现在ipv4和ipv6的映射工作,也反向ipv4映射的作品,但问题是反向ipv6。 在我的named.conf文件中有这个区域: zone "3.1.0.0.0.0.0.0.0.0.0.2.ip6.arpa" IN { type master; file "reverse6.zone"; }; 这是reverse6.zone文件: $TTL 48h $ORIGIN 3.1.0.0.0.0.0.0.0.0.0.2.ip6.arpa. @ IN SOA gruppo13.labreti.it. master.gruppo13.labreti.it. ( 2013032511 1d 2h 4w 1h ) IN NS gruppo13.labreti.it. 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR gruppo13.labreti.it. 2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR dns.gruppo13.labreti.it. 8.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR www.gruppo13.labreti.it. 3.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR mail.gruppo13.labreti.it. 随着挖掘我能够find一个ip6地址,但如果我做相反的: $ dig -x AAAA […]

为什么仅在查询未caching时才返回附加的DNSlogging?

我正在尝试追踪我们将邮件发送到特定域的问题。 我们注意到,在查询MXlogging时,我们没有从nslookup / dig获得一致的结果,而且我不确定是否追查不存在的DNS问题或者是否可能是问题。 当结果没有被caching时,我从dig us.yusen-logistics.com mx结果dig us.yusen-logistics.com mx : ;; QUESTION SECTION: ;us.yusen-logistics.com. IN MX ;; ANSWER SECTION: us.yusen-logistics.com. 300 IN MX 10 smtp1.us.yusen-logistics.com. us.yusen-logistics.com. 300 IN MX 20 smtp2.us.yusen-logistics.com. ;; ADDITIONAL SECTION: grid2i.seg.att.com. 24426 IN A 209.65.176.73 grid1i.seg.att.com. 24429 IN A 209.65.160.81 grid2i.seg.att.com. 24426 IN A 209.65.176.81 grid1i.seg.att.com. 24429 IN A 209.65.160.73 grid2i.seg.att.com. […]

BIND9作为caching专用名称服务器不起作用

我通过apt-get安装BIND9,在新安装并完全更新的UBUNTU 12.04上,在VirtualBox上虚拟化。 我想用它作为一个只caching的域名服务器。 named.conf仅包含以下行: options { directory "/var/cache/bind"; dnssec-validation auto; auth-nxdomain no; listen-on-v6 {any;}; recursion yes; allow-recursion {localnets;}; allow-query-cache {localnets;}; allow-query {localnets;}; }; zone "." { type hint; file "/etc/bind/db.root"; }; zone "localhost" { type master; file "/etc/bind/db.local"; }; zone "127.in-addr.arpa" { type master; file "/etc/bind/db.127"; }; 现在,如果我使用我的名称服务器dig任何东西,查找失败, connection timed out; no servers could be […]

与域代理问题

Okey我有子域news.247dist.com,如果我挖任何这个域我得到: ; <<>> DiG 9.4.3-P3 <<>> news.247dist.com any ;; global options: printcmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 36179 ;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 2 ;; QUESTION SECTION: ;news.247dist.com. IN ANY ;; ANSWER SECTION: news.247dist.com. 259018 IN NS b.ns.broadmail.de. news.247dist.com. 259018 IN NS a.ns.broadmail.de. […]

委派区域的从属服务器上的BIND9recursion – 无法正常工作

我一直在检查BIND / DNS文档,我一直无法find明确的答案。 tl; dr – 查询委派区域的辅助名称服务器启用recusion时,logging不起作用。 而且,由定义,禁用recursion也不起作用,因为从我们的angular度来看,在区域中定义的所有内容都是NS和粘合logging。 软件堆栈:CentOS 5.4 x86上的bind-9.3.6-4用于辅助名称服务器; 在Centos 4.7 x86上为主名称服务器绑定9.2.4-30。 我将分别使用master和primary,slave和secondary作为同义词。 我们的设置如下(名称/ IP更改为保护无辜): ns.pr.example.com ==主名称服务器,10.10.0.1,192.168.0.1 ns1.pr.example.com ==辅助名称服务器,10.11.0.1,192.168.0.2 ns2.pr.example.com ==辅助名称服务器,10.11.0.2,192.168.0.3 delegated.pr.example.com ==委托的子区域 nsdelegated.pr.example.com == authoratative NS for delegated.pr.example.com子域,10.11.0.5不在我们的控制之下! 您会注意到,ns1和ns2可以通过共享networking – 192.168.0.0/24与ns.pr.example.com进行通信。 但是,ns.pr.example.com 无法与仅具有10.11.0.0/24地址的nsdelegated.pr.example.com主机通信。 192.168networking是我们的公共IP空间的替代品。 但是10.10和10.11networking是私有的,封闭的networking用于集群计算。 将ns.pr.example.com直接或通过静态路由连接到10.11networking是不可能的。 在主名称服务器ns.pr.example.com上,以下定义将与更新后的序列一起添加到区域文件中: /etc/named.conf文件: zone "pr.example.com" { type master; file [db.filename]; }; db.filename: delegated.pr.example.com. IN NS nsdelegated.pr.example.com. nsdelegated.pr.example.com. […]

DNS子域代表问题

(更新了更详细的例子) 我有我的域名:在DNS提供商1 example.com设置。提供程序1有名称服务器: ns1.dns1.com ns2.dns1.com 我想委托给subdomain.example.com权限给另一个DNS提供者,提供者2,它有名称服务器: ns1.dns2.com ns2.dns2.com 为此,提供者1的区域如下所示: example.com IN NS ns1.dns1.com example.com IN NS ns2.dns1.com example.com IN A 127.0.0.1 subdomain.example.com IN NS ns1.dns2.com subdomain.example.com IN NS ns2.dns2.com 在供应商2我设置区域: subdomain.example.com如下: subdomain.example.com IN NS ns1.dns2.com subdomain.example.com IN NS ns2.dns2.com subdomain.example.com IN A 1.1.1.1 test.subdomain.example.com IN A 1.1.1.2 考试: # i get a reply (OK here) […]

无法find解决scheme“一个或多个你的名字服务器没有返回你的任何NSlogging”onDNS网站

我在我的Linux Centos服务器上设置了DNS, 当我在这个站点上testing时,我得到以下错误: 警告:您的一个或多个名称服务器没有返回任何NSlogging。 错误:一个或多个名称服务器没有响应: 没有回应的是: 49.50.77.196 49.50.77.200 研究整个networking/堆栈交换,我知道这似乎是我的DNS Alogging,但没有正确设置,但对我的生活和2天的试验/错误我找不到什么是错的: 挖indulgense.com ; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.30.rc1.el6_6.1 <<>> indulgense.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 39107 ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECTION: ;indulgense.com. IN A ;; Query time: 5005 […]

DIG域ns无法到达

我用Debian Jessie安装了Powerdns,并且在PowerAdmin中添加了NSlogging和其他DNSlogging,当我testing添加的logging时,它没有提供服务器,我在注册器中添加了名称服务器,还在Powerdns SOAlogging和NSlogging中添加了名称服务器和Alogging这个域名的NS dig mediapal.biz NS ; <<>> DiG 9.9.5-9+deb8u6-Debian <<>> mediapal.biz NS ;; global options: +cmd ;; connection timed out; no servers could be reached

Server 2012 DNS服务器不parsing所有正向查找区域

名称parsing仅在一个站点的less数几个区域失败。 它工作正常,但最近在一个地方停了下来。 我们正在使用DNS来限制对Youtube的访问(请参见此处 ),因此我们有一个正向查找区www.youtube.com安装程序来捕获YouTube请求并将其redirect到restrict.youtube.com。 这个区域是AD集成的,并且在除了一个之外的所有站点上工作正常。 每个站点都有一个运行DNS和DCangular色的2012服务器。 域名区域的名称parsing无处不在。 这只影响一个网站的YouTube相关区域。 Nslookup的回报就是这个名字,dig的回报就是SOA。 尝试重新启动DNS并重新启动服务器。 validation该区域显示在DNSpipe理器和registry中。 validation它正在复制正确。 这里挖掘一个不工作和工作的服务器。 ; <<>> DiG 9.9.5-9+deb8u7-Raspbian <<>> www.youtube.com @notworking ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 5425 ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: […]

NXDOMAIN与.AU.COM域问题

我在澳大利亚注册了一个.au.com域名和一个域名提供商,并成功创build了一个使用该域名的Google Apps电子邮件账户(Google Apps已经确认我的MXlogging是正确的,我收到了来自.COM.AU的testing电子邮件地址以及来自GMAIL.COM地址)。 但是,使用该电子邮件地址打开Disqus和Twitter帐户后,我很难收到来自这些组织的电子邮件。 这是过去几天一直存在的问题。 当我在我的terminal上dig rs.au.com ,我收到以下信息: ; <<>> DiG 9.7.3-P3 <<>> rs.au.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 58329 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 4, ADDITIONAL: 0 ;; QUESTION SECTION: ;rs.au.com. IN A ;; ANSWER SECTION: rs.au.com. 300 IN A […]