Link to home
Start Free TrialLog in
Avatar of johnkan
johnkan

asked on

Assinging a default DNS record so URL's entered without the 'www' still get to the website

Hi

I am wanting to modify my DNS records for our domain so that if a person enters 'http://domain.co.au', omitting the 'www', that they still get to our web site as if they had entered 'http://www.domain.co.au'

Can anyone assist with describing the record that needs to be added to my zone file.

Thanks in advance

John
Avatar of Bennoo
Bennoo

this all depend on the DNS server
Enter a blank A record with the same IP as the www CNAME record

eg
(blank) IN A (IP)

See example below


             IN     A       10.0.1.7

server1      IN     A       10.0.1.5
server2      IN     A       10.0.1.7
dns1         IN     A       10.0.1.2
dns2         IN     A       10.0.1.3

ftp          IN     CNAME   server1
mail         IN     CNAME   server1
mail2        IN     CNAME   server2
www          IN     CNAME   server2

Bennoo
Avatar of johnkan

ASKER

Hi Bennoo

Unfortunately I don't get access to the file itself, only a web administration console in my browser.

I can't add an A record with a blank, I need to use '@' for default, '*' for wildcard, or something else.

Not sure if this helps but they call the columns in the A records

sub-domain - destination id - TTL

and in the CNAME

sub-name - fully qualified domain name - TTL

Thanks

John
Enter an @ for the A record.
Avatar of johnkan

ASKER

OK, there is already a record with the values @, ip

What should I enter for the CNAME based on these settings ?

Thanlks
ASKER CERTIFIED SOLUTION
Avatar of Bennoo
Bennoo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of johnkan

ASKER

Oh, OK.

Ive just updated the @ records IP to the IP resolved when I use www.domain name

I'm still getting the old IP address though.

So I guess once the zone transfers have completed this should work as expected.

Can you confirm that I don't need to add a CNAME record then.

Thanks

John
I think this is up to the browser.  In internet exploder, you go into Tools - internet options - advanced - click the checkbox "show friendly URLs" and in Mozilla, Edit Preferences, Navigator, Smart Browsing, check the bottom two, automatically complete and automatically add (same choices are in Firefox under Tools, Options).  This is the best you can do in the browser.

You should be aware, this feature is enabled from your SITE, not the browser.  In the administration of your site, you have the choice to make any http:// address automatically translate to the www. prefix.  If you dont know how to do this, call your ISP and ask them to walk you through it -- it is fairly simple !!!
Hi ,

I am working in a hosting company and  cname is working like a domain aliases so ithin this is your need you can use the A record for it  and  record @ is used for the mail so its also not nedd you have need A record of www and if you want to use the Mail then A record of Mail.
If you want to enter the wild entries like if someone use your domain with and without www record then you have to enter * for it . If you use * record then you are able to use any prefix of your domain its open like xyz.domain.co.au its open.

For Example:

domain.co.au               IN     A      <ip>
*                                IN     A      <ipaddress of your domain>
www                           IN     A     <ip server>

for Mail

@                              IN       A         <ip >
mail                           IN       A         <ip>
@                              IN       MX        mail.domain.co.au

The records take a few hours to update.
Just be patient
Hi,

After any changes the DNS entries its take 2-4 propagate time so after fully propagate you should able see the record

If you want to know its before the propagation use the following site.

www.dnsstuff.com 

Here enter the your under the dns lookup section
for www a record enter
domain name www.domain.co.au  select A and press enter
for NS enter domain.co.au without www and select NS then enter
you can also see the all record but enter only domain name without www or any prefix
Avatar of artofchobo
In the dns console,

Add an @ record...
that will do...

Regards,
chobo