IP address is up, no luck on domain name or subdomain

Ok, this is strange.

When I type the IP address into my browser, I finally got the "It works!" page. (after over 24 hours of constant no sleep work).

However, I get no love from there, however. If I type my domain name www.nubodyorganics.com into the browser, nothing shows up (Page load error,Address not found). I also sat up a subdomain in my A/AAAA records and again no love coming my way - page load, address not found.

Here is my record:

> $TTL 86400

@ IN SOA ns1.linode.com. admin.nubodyorganics.com. (

2009012560

7200

7200

1209600

86400

)

@ NS ns1.linode.com.

@ NS ns2.linode.com.

@ NS ns3.linode.com.

@ NS ns4.linode.com.

@ MX 10 mail.nubodyorganics.com.

@ A 72.14.182.41

www A 72.14.182.41

mail A 72.14.182.41

vps A 72.14.182.41

Now, my thought was on the subdomain I created was all I had to do is create an entry into the record, named vps. I figured if www is a subdomain, then I would just add vps and it would work. No cname record was made. Here is my full record:

Primary DNS Email Refresh Rate Retry Rate Expire Time Default TTL Edit

ns1.linode.com admin@nubodyorganics.com Default Default Default Default Edit

NS Records

Name Server Subdomain TTL Edit Remove

ns1.linode.com nubodyorganics.com Default Edit Remove

ns2.linode.com nubodyorganics.com Default Edit Remove

ns3.linode.com nubodyorganics.com Default Edit Remove

ns4.linode.com nubodyorganics.com Default Edit Remove

Add a new NS Record

MX Records

Mail Server Preference Subdomain TTL Edit Remove

mail.nubodyorganics.com 10 Default Edit Remove

Add a new MX Record

A/AAAA Records

Host Name IP Address TTL Edit Remove

72.14.182.41 Default Edit Remove

www 72.14.182.41 Default Edit Remove

mail 72.14.182.41 Default Edit Remove

vps 72.14.182.41 Default Edit Remove

Add a new A/AAAA Record

CNAME Records

Host Name Aliases to TTL Edit Remove

Add a new CNAME Record

TXT Records

Name Value TTL Edit Remove

Add a new TXT Record

SRV Records

Service Domain Priority Weight Port Target TTL Edit Remove

My domain is registered at godaddy and I sat the nameservers there to ns1 - 4.linode.com (individually of course).

I have installed cpanel/whm on the site (but obviously you cant see it. The whm is on the subdomain vps

I did not create a separate zone for the subdomain in the dns manager.

The reverse nameserver is as follows:

Current Reverse DNS

IP Address RDNS

72.14.182.41 72.14.182.41

Any ideas at all? I am getting so frustrated that I being to miss BlueHost. I even did a google search for managed cpanel vps hosting. I really like linode and I want to get this figured out.

Could it be my hostname setting? Could it be that my domain is not associated with the ip, I sat up the dns reord using: "add a new domain zone" and the select switch was Master".

Help would be very much appreciated!!!

Thanks in advance.

Chris

13 Replies

````

telnet 72.14.182.41 80

Trying 72.14.182.41…
telnet: Unable to connect to remote host: No route to host
````

??

DNS seems to be resolving fine and I can ping your machine. It seems it is your webserver that isn't serving.

Is that a secondary IP address? I think that address is behaving as if it's not bound to your Linode.

I had 2 ips and that was going nowhere real fast so I got rid of one of them. So yes, I guess that was an addon domain, but when I deleted it from my account, it gave me an option of the ips and I just picked the first on up.

Well your problem is something to do with that. 72.14.182.41 is totally unresponsive, except to ping.

I believe it is too. Well it looks like I cancel this account and sign up again for a main ip bound to the account.

My linode is in dallas, is there a spot better?

Chris

I would just raise a support ticket about this; I'm sure it's something that can be straightened out quickly.

I shot them a ticket already about an hour ago - no response as of yet. I just tried calling, but no one answers. I wonder if I just add another linode to my account the delete the current one, if that would generate another ip or would it just give me more space?

Well, it is Sunday…

A new Linode would have a new IP. But I wouldn't be so eager to pitch 24 straight hours of work!

I know what you mean, but if that's the problem I know what to do now and can repeat what I worked on for over a day now rather quickly.

Support just shot me back an email stating that CentOS has a built in firewall that may be doing it. Said I could use system-config-securitylevel to configure it.

Don't even know where to begin with that one, except our friends over at slice host has a really good tutorial on setting up Centos 5.2 so I did the iptable adjustsments they recoomended hoping that would do the trick.

iptables -A INPUT -i lo -j ACCEPT

iptables -A INPUT -i ! lo -d 127.0.0.0/8 -j REJECT

iptables -A INPUT -m state –state ESTABLISHED,RELATED -j ACCEPT

iptables -A OUTPUT -j ACCEPT

iptables -A INPUT -p tcp --dport 80 -j ACCEPT

iptables -A INPUT -p tcp --dport 443 -j ACCEPT

iptables -A INPUT -p tcp -m state --state NEW --dport 30000 -j ACCEPT

iptables -A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT

iptables -A INPUT -j REJECT

iptables -A FORWARD -j REJECT

service iptables save

No luck, site is still not responding. I did reboot after those adjustments

Here is the iptables -L results from using above (at least part of it, cant scroll up to copy any more and -p doesn't work)

REJECT all – anywhere anywhere reject-with icmp-port-unreachable

Chain FORWARD (policy ACCEPT)

target prot opt source destination

RH-Firewall-1-INPUT all -- anywhere anywhere

REJECT all -- anywhere anywhere reject-with icmp-port-unreachable

Chain OUTPUT (policy ACCEPT)

target prot opt source destination

ACCEPT all -- anywhere anywhere

Chain RH-Firewall-1-INPUT (2 references)

target prot opt source destination

ACCEPT all -- anywhere anywhere

ACCEPT icmp -- anywhere anywhere icmp any

ACCEPT esp -- anywhere anywhere

ACCEPT ah -- anywhere anywhere

ACCEPT udp -- anywhere 224.0.0.251 udp dpt:mdns

ACCEPT udp -- anywhere anywhere udp dpt:ipp

ACCEPT tcp -- anywhere anywhere tcp dpt:ipp

ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED

ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh

REJECT all -- anywhere anywhere reject-with icmp-host-prohibited

here is more of the list

RH-Firewall-1-INPUT all – anywhere anywhere

ACCEPT all -- anywhere anywhere

REJECT all -- anywhere 127.0.0.0/8 reject-with icmp-port-unreachable

ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED

ACCEPT tcp -- anywhere anywhere tcp dpt:http

ACCEPT tcp -- anywhere anywhere tcp dpt:https

ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:30000

ACCEPT icmp -- anywhere anywhere icmp echo-request

REJECT all -- anywhere anywhere reject-with icmp-port-unreachable

Chain FORWARD (policy ACCEPT)

target prot opt source destination

RH-Firewall-1-INPUT all -- anywhere anywhere

REJECT all -- anywhere anywhere reject-with icmp-port-unreachable

Chain OUTPUT (policy ACCEPT)

target prot opt source destination

ACCEPT all -- anywhere anywhere

Chain RH-Firewall-1-INPUT (2 references)

target prot opt source destination

ACCEPT all -- anywhere anywhere

ACCEPT icmp -- anywhere anywhere icmp any

ACCEPT esp -- anywhere anywhere

ACCEPT ah -- anywhere anywhere

ACCEPT udp -- anywhere 224.0.0.251 udp dpt:mdns

ACCEPT udp -- anywhere anywhere udp dpt:ipp

ACCEPT tcp -- anywhere anywhere tcp dpt:ipp

ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED

ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh

REJECT all -- anywhere anywhere reject-with icmp-host-prohibited

Are you sure you are binding your services to that IP address? What do you get from the following commands?````

ifconfig

netstat -ltn

````

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct