PDA

View Full Version : Create Domain


CleberDantas
21st June 2007, 02:15
Hello,

I use cpanel have 6 years and i am testing ISPCONFIG.

I installed in server witch DEBIAN4.

I create 1 account witch domain aa.ap.gov.br ;

I access domain normal via http://aa.ap.gov.br

If i use www.aa.ap.gov.br i no access.

What problem?

mlz
21st June 2007, 02:32
Did you check create dns when you created the site?

CleberDantas
21st June 2007, 05:38
See:

Record

--------------------------------------------------------------------------------

IP-Adresse Hostname
MY_IP_HERE www
MY_IP_HERE internet


--------------------------------------------------------------------------------


CNAME

--------------------------------------------------------------------------------

Hostname Target
www MY_IP_HERE


--------------------------------------------------------------------------------


MX

--------------------------------------------------------------------------------

Mailserver Hostname
internet.aa.ap.gov.br
www.aa.ap.gov.br


--------------------------------------------------------------------------------


SPF
--------------------------------------------------------------------------------
Hostname
aa.ap.gov.br

till
21st June 2007, 12:30
Please remove the www cname record as you have already a A-Record for www.

Then test your bind server on the shell with:

dig @localhost www.aa.ap.gov.br

CleberDantas
22nd June 2007, 03:46
internet:~# dig @localhost www.aa.ap.gov.br

; <<>> DiG 9.3.4 <<>> @localhost www.aa.ap.gov.br
; (1 server found)
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 30456
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1

;; QUESTION SECTION:
;www.aa.ap.gov.br. IN A

;; ANSWER SECTION:
www.aa.ap.gov.br. 86400 IN A MY_IP_HERE

;; AUTHORITY SECTION:
aa.ap.gov.br. 86400 IN NS internet.aa.ap.gov.br.

;; ADDITIONAL SECTION:
internet.aa.ap.gov.br. 86400 IN A MY_IP_HERE

;; Query time: 3 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Thu Jun 21 18:38:31 2007
;; MSG SIZE rcvd: 89

internet:~#

till
22nd June 2007, 10:14
Ok, this means that your bind server si configured correctly. Either you did not tell your domain registry that your nameserver shall be authoritive for the domain or it just takes some time untill the changes in dns wre propagated (up to 48 hours).

CleberDantas
22nd June 2007, 16:50
Very thanks!