"man resolv.conf" will document what can go in this file.
You can also view it online here:
http://linux.die.net/man/5/resolv.conf
The nameserver directive should only contain the ip address of the nameserver, not it's hostname.
If you need to name some hosts that are not in DNS, you do that in the /etc/hosts file.
my hosts file on my VPS:
[nedwidek@sv ~]$ cat /etc/hosts
127.0.0.1 localhost
68.169.43.71 sv.lighthouseitc.com sv
This is there so that it can still resolve itself if the nameservers go down. Basically network name resolution goes first to the hosts file and then to DNS if the host isn't listed there. You can see what your server is set to do by looking at /etc/nsswitch.conf at the hosts directive (the attribute files means /etc/hosts and related files).
Now resolv.conf is to direct the system how to use the DNS system for network name resolution. My VPS's /etc/resolv.conf where I'm using one of Google's nameservers to resolve hosts.
[nedwidek@sv ~]$ cat /etc/resolv.conf
domain lighthouseitc.com
nameserver 8.8.8.8
The resolv.conf from my local machine (I run my own DNS server to serve my own private network at home):
[nedwidek@yule ~]$ cat /etc/resolv.conf
# Generated by NetworkManager
domain ejnhome.net
search ejnhome.net
nameserver 192.168.101.1
The domain is just something I made up and hopefully no one ever uses (watch some joker decide to register it now). The search line basically sys that if I do "ping printer1" to treat it as if I did "ping printer1.ejnhome.net".
Ultimately I would try and find someone locally (friend or professional) who can help you. Attending a local Linux User Group (LUG) might help you find someone who is an enthusiastic amateur to give you a hand. Hopefully the real world examples help. I have 15 years of sys admin experience so sometimes I don't dumb it down far enough.
dig @109.169.46.109 ns1.888x7.comreturnsNO ANSWER. – Dmitri Chubarov Jan 20 at 19:31