Discuss DO I have a DNS problem, or.... in the DNS forum on Dev Shed. DO I have a DNS problem, or.... DNS forum discussing issues, servers, and configurations. The Domain Name System (DNS) is what the Internet uses to translate website names into IP addresses.
Receive the tools necessary to be the rock star of your field. Our 12-month program teaches you the evolving world of multi-channel marketing as well as the complex issues and opportunities found in the industry.
ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month! Download and Activate to enter!
Web development can be a daunting task, even for specialists. There is a lot of information to absorb and a lot of technologies to learn in order to manage a superior website. When trying to learn the ropes, developers need a reliable source to introduce new ideas that can be easily implemented. When working on large projects, even web veterans may run into a technology or an aspect of a technology that they are unfamiliar with.
Posts: 325
Time spent in forums: 3 Days 5 h 3 m 48 sec
Reputation Power: 8
DO I have a DNS problem, or....
Hi
I'm hosting a website at home on Ubuntu 11.04 using the LAMP stack, running Apache 2.2.17.
I just registered a new domain name, and wanted it to point back to my home server. I used Xname for DNS hosting. I inserted their name servers with the company I bought the domain from.
I setup a Virtual Host - here's the output from the sites enabled config file -
Code:
<VirtualHost *:80>
DocumentRoot "/var/www"
ServerName rightintoit.net
<Directory "/var/www">
allow from all Options +Indexes
</Directory>
</VirtualHost>
The site -rightintoit.net - still doesn't show in my browser. It gives a Sevrer not found error.
I'm just wondereing what I've forgotten to do - or how to troubleshoot the problem.
Posts: 6,456
Time spent in forums: 1 Month 2 Weeks 4 Days 2 h 6 m 8 sec
Reputation Power: 6144
If you ping rightintoit.net does it send the packets to your IP addresses?
Actually assuming rightintoit.net is the actual domain, I just pinged it and it didn't resolve. There is a problem with your XName configuration. Do you have an A record set up for this domain?
Posts: 24
Time spent in forums: 2 h 49 m 37 sec
Reputation Power: 0
as of this moment, it looks like that domain's name servers are ns(0-2).xname.org. However, the hostname "rightintoit.org" doesnt resolve to anything yet. You need to create a record for this host and any other hosts you want to resolve queries for.
Posts: 325
Time spent in forums: 3 Days 5 h 3 m 48 sec
Reputation Power: 8
Is there any reason I can't ping the domain from on my LAN? DNSsy shows that the domain is up, and show the http headers for the page, but from my LAN, I still get "ping request could not find host rightintoit.net".
That's despite shift refreshes.
Do I need to make changes on my Apache config to make it available from the LAN?
Posts: 6,456
Time spent in forums: 1 Month 2 Weeks 4 Days 2 h 6 m 8 sec
Reputation Power: 6144
You should be able to resolve the domain from your LAN, but depending on your router setup you might not be able to access your server via its public IP from within the LAN.
You could try doing a nslookup or tracert on the domain.
A shift refresh doesn't affect DNS.
Your Apache configuration would not affect a ping.
Posts: 24
Time spent in forums: 2 h 49 m 37 sec
Reputation Power: 0
Yeap..looks like you are good. I was also able to get to your "It Works!" page.
As E-Oreo indicated, most of the consumer based routers does not support accessing an internal resource by hitting its NAT'd/Port Forwarding public IP address.
From inside your network, you can still use DNS Lookup tools to validate that you can resolve the hostname.
What you could do if you want to access it from the internal network, is add an internal DNS zone, with an internal record pointing to the private IP of this resource, or just modify the HOSTS file (point to the internal IP) of one of your internal nodes so that you can test for internal access.