IP address is up, no luck on domain name or subdomain
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
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
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
````
??
My linode is in dallas, is there a spot better?
Chris
A new Linode would have a new IP. But I wouldn't be so eager to pitch 24 straight hours of work!
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
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
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
ifconfig
netstat -ltn
````