Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 03:35 AM
09-19-2005 03:35 AM
DNS
Thanks
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 03:40 AM
09-19-2005 03:40 AM
Re: DNS
It should have entries like this
domain yourdomain.name
name server x.x.x.x (Ip Address of DNS server)
name server x.x.x.x ( Secodary DNS server )
You /etc/nsswtich.conf file should like this for DNS resolution
hosts: files [NOTFOUND=continue UNAVAIL=continue] dns [NOTFOUND=return UNAVAIL=continue TRYAGAIN=return]
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 03:44 AM
09-19-2005 03:44 AM
Re: DNS
Are the nameservers specified correctly and use the nslookup command whether you can resolve from the DNS servers specified.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 03:49 AM
09-19-2005 03:49 AM
Re: DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 04:00 AM
09-19-2005 04:00 AM
Re: DNS
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 04:01 AM
09-19-2005 04:01 AM
Re: DNS
if you are not the administrator of dns servers, check with the people who perform this function to see if they took the dns servers down or changed the ip addresses of DNS Servers without telling people like you. If you are working in a predominantly windows centric environment, Active driectory tied dns, may change transparent to windows users but have dire consequences for other types of servers.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 04:02 AM
09-19-2005 04:02 AM
Re: DNS
cat /etc/nsswitch.conf
cat /etc/resolv.conf
cat /etc/hosts
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 04:26 AM
09-19-2005 04:26 AM
Re: DNS
nameserver 192.99.99.163
#domain jmg
#nameserver 10.220.1.10
#nameserver 10.220.2.10
nsswitch.conf
#hosts: dns [NOTFOUND=continue] files
hosts: files [NOTFOUND=continue] dns
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 04:29 AM
09-19-2005 04:29 AM
Re: DNS
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 04:35 AM
09-19-2005 04:35 AM
Re: DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 04:40 AM
09-19-2005 04:40 AM
Re: DNS
(if your server's fully qulaified domain name is myserver.lab.mycompany.com")
domain lab.mycompany.com
this may help you get past the sendmail problem.
after doing this, make an nslookup query to another remote server in your company. How long does it take you to get the response back ? almost immediately or is there some sort of a delay ?
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2005 04:55 AM
09-19-2005 04:55 AM
Re: DNS
Start by changing the default /etc/nsswitch.conf so that the resolver will look in /etc/hosts on the server first. Change this line:
hosts: dns [NOTFOUND=return] nis [NOTFOUND=return] files
to
files [NOTFOUND=continue UNAVAIL=continue] dns [NOTFOUND=return UNAVAIL=continue TRYAGAIN=return]
To see if the PC is not in the DNS server, login and type: nslookup 12.34.56.78
where 12.34.56.78 is the IP address of your PC. If you get no hostname in return (ie, can't find ... Non-existent domain) then the problem is with the DNS server--it is not connected to your DHCP server and the assigned IP addresses from DHCP have no hostnames.
To get rid of the delays, fix your DNS server (they probably deleted all the reverse lookup records, thus causing the problem), or get all of the po9ssible DHCP addresses in your company, assign them arbitrary names like dummy1234, dummy1235, etc, and put that list into all your /etc/hosts files (after changing /etc/nsswitch.conf).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2005 06:37 AM
09-20-2005 06:37 AM
Re: DNS
I would like to thank you all for the generous responses!!
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2005 08:31 AM
09-20-2005 08:31 AM
Re: DNS
Bill Hassell, sysadmin