Tudo começou com um vps do digitalocean e a seguinte documentação do ispconfig link após todo o processo de instalação, adicionei meu domínio através da interface ispconfig e atualizei os meus servidores de nomes de domínio com o criado pelo ispconfig.
Meu problema que eu não consigo encontrar uma solução para isso, quando eu tento nslookup crisubogdan.com eu recebo o seguinte erro:
root@sv:~# nslookup crisubogdan.com
;; Got SERVFAIL reply from 8.8.8.8, trying next server
Server: 8.8.4.4
Address: 8.8.4.4#53
** server can't find crisubogdan.com: SERVFAIL
E quando eu tento cavar o crisubogdan.com, recebo o seguinte erro:
root@sv:~# dig crisubogdan.com
; <<>> DiG 9.9.5-3ubuntu0.1-Ubuntu <<>> crisubogdan.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 46265
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 512
;; QUESTION SECTION:
;crisubogdan.com. IN A
;; Query time: 3028 msec
;; SERVER: 8.8.8.8#53(8.8.8.8)
;; WHEN: Mon Feb 16 14:12:45 EST 2015
;; MSG SIZE rcvd: 44
Algumas informações sobre bind:
código /etc/bind/named.conf:
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";
código /etc/bind/named.conf.options:
options {
directory "/var/cache/bind";
// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See http://www.kb.cert.org/vuls/id/800113
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
// forwarders {
// 0.0.0.0;
// };
//========================================================================
// If BIND logs error messages about the root key being expired,
// you will need to update your keys. See https://www.isc.org/bind-keys
//========================================================================
// dnssec-validation auto;
código /etc/bind/named.conf.local:
zone "crisubogdan.com" {
type master;
allow-transfer {none;};
file "/etc/bind/pri.crisubogdan.com";
};
zone "craftedfreebies.com" {
type master;
allow-transfer {none;};
file "/etc/bind/pri.craftedfreebies.com";
};
/etc/bind/named.conf.default-zones code:
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
código /etc/bind/pri.crisubogdan.com:
$TTL 3600
@ IN SOA ns1.crisubogdan.com. contact.crisubogdan.com. (
2015020808 ; serial, todays date + todays serial #
7200 ; refresh, seconds
540 ; retry, seconds
604800 ; expire, seconds
86400 ) ; minimum, seconds
;
crisubogdan.com. 3600 A 178.62.241.109
mail 3600 A 178.62.241.109
ns1.crisubogdan.com. 3600 A 178.62.241.109
ns2.crisubogdan.com. 3600 A 178.62.241.109
www 3600 A 178.62.241.109
crisubogdan.com. 3600 MX 10 mail.crisubogdan.com.
crisubogdan.com. 3600 NS ns1.crisubogdan.com.
crisubogdan.com. 3600 NS ns2.crisubogdan.com.
código /etc/resolv.conf:
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 8.8.8.8
nameserver 8.8.4.4
Eu não sei por que esses erros são cometidos e, se você puder, por favor, me ajude a terminar meus quase 8 dias de luta com o meu erro de vinculação vps.
Obrigado.