Sponsored Content
Full Discussion: DNS problem
Special Forums IP Networking DNS problem Post 44529 by Perderabo on Monday 8th of December 2003 10:53:09 AM
Old 12-08-2003
Every DNS server must be authoritative for the address 127.0.0.1 Your named.boot file should contain something like:

primary 0.0.127.in-addr.arpa db.127.0.0

And db.127.0.0 should exist and point 127.0.0.1 to localhost.

Also every box needs an /etc/host entry for 127.0.0.1.

There are other ways to achieve this result, but every host must always know that 127.0.0.1 is the loopback address.
 

10 More Discussions You Might Find Interesting

1. IP Networking

dns problem

helo all i got problem in my network i got sun 206 and i work with sendmail when i had the praimery dns of my isp i can send mail from the server but i cant send from the clinet (outlook in the network) and if i chnage it to secundery dns off my isp i can send frome the server and frome the... (2 Replies)
Discussion started by: nis
2 Replies

2. IP Networking

DNS Problem

Hello Everyone, I am working on a HP-Unix machine and I am trying to get it to use the University's DNS servers. Long story short... the resolv.conf file is ok : nameserver 149.150.51.1 nameserver 149.150.51.2 search shu.edu The hosts file is ok. And when I make the nsswitch.conf file... (1 Reply)
Discussion started by: loslappy
1 Replies

3. UNIX for Dummies Questions & Answers

DNS problem

Hi all, I have got the message of "*** Can't find server name for address 10.131.120.50: Server failed" when I typed nslookup on the DNS server I setup the /etc/named.conf and all the data files in /var/named and start the named daemon. I also mae appropriate change on the resolv.conf and... (2 Replies)
Discussion started by: stancwong
2 Replies

4. Solaris

DNS Problem

hello !!! I have some problem for Sun Solaris DNS i already configured named.boot , named.rev, named.hosts but when i start the DNS service there is an error " error cannot find named.conf " in my manual there is no named.conf configuration it said that if you configure named.boot... (3 Replies)
Discussion started by: giancarlodjabon
3 Replies

5. Shell Programming and Scripting

DNS problem

sorry guys, I had big problem solving this simple problem..:D hope expertise here can solve this problem. ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 1361 ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECTION: ;. IN... (0 Replies)
Discussion started by: unknown2205
0 Replies

6. UNIX for Advanced & Expert Users

DNS problem

Hello again I having a wired problem if use nslookup to check some changes that I made to the blackhole list.First I'll check a site that I know has access throught our sever and it would time out. Then If I'll try it 10 seconds later it would work. Isn't that wierd. But my blackhole list site... (0 Replies)
Discussion started by: aojmoj
0 Replies

7. Ubuntu

dns problem

hello. i'm running ubuntu desktop 8.04 and i use it ot host some sites (actually i'm trying ) well i'm running to websites (with the same dns,ip) site1.com work fine but site2.com give me this Hmm, site2.com isn't loading right now. The computers that run site2.com are having some trouble.... (2 Replies)
Discussion started by: mazi
2 Replies

8. Red Hat

Mail Problem. Maybe, it is a DNS Problem!

Hi, i've a redhat linux 9 upadated by redhat from 7 version to 9 version. A couple of days ago i was a problem with my mail, in other words i'm not able to get any email nor to send any email. I've a proxy configuration and i tried to set iptables in order to verify the port. The 110,255 and 995... (1 Reply)
Discussion started by: pintalgi
1 Replies

9. IP Networking

DNS problem?

I uploaded a new domain and I am having problems with the paths... Works..shop.mydomain.com/index.php?main_page=contact. Does Not Work..shop.mydomain.com/contact/. copied the entire directory from a working directory and changed the appropriate paths where necessary (as usual) so ...? ... (3 Replies)
Discussion started by: tifischer
3 Replies

10. Debian

Need help with DNS problem

I have a standalone PC running Debian 6. DNS stopped working suddenly. I haven't changed anything. Email works because it has the ip address of the mail server. Firefox can apparently fend for itself. nslookup some_url or nslookup some_ip_address returns: nslookup: parse of /etc/resolv.conf... (4 Replies)
Discussion started by: snorkack59
4 Replies
named.conf(4)						     Kernel Interfaces Manual						     named.conf(4)

NAME
named.conf - named configuration file SYNOPSIS
/etc/named.conf DESCRIPTION
This file is the default configuration (or boot) file for the named server. This configuration file replaces the named.boot file. The named daemon reads the start-up file when the named daemon starts and when receiving signal SIGHUP. The statements in the named.conf file tell the named daemon what type of server it is, which domains (or zones of authority) it has author- ity over, and where to get the data for initially setting up its database. The name server first needs to know the root name server, which is the authority server for the network. The root name server is estab- lished in the named.conf file by specifying the root server filename (named.ca) as the cache for this name server. The named.conf file consists of a sequence of statements terminated by a semi-colon (;) and comments. Comments can be specified by any of the following: A number sign (#) The C-style /* and */ characters. The C++-style // characters The types of named.conf statements are as follows: Defines a named IP address matching list for access control and other uses. Includes a file. Specifies key information for use in authentication and authorization. Specifies the information that the server logs and the des- tination of the log messages. Controls global server configuration options and sets defaults for other statements. Sets certain configu- ration options on a per-server basis. Defines a zone. The logging and options statements can occur only one time in a configuration file. Many statements contain a block of substatements, which are also terminated with a semicolon. See the BIND Configuration Guide in the Tru64 UNIX HTML Documentation Library for additional information about the description and format of each statement. For examples of various ways of using the named.conf file, see the EXAMPLES section. See named(8) for additional named.conf file directives. Note that the named daemon does not provide other hosts with the information contained in a cache file. Cache files are usually used for listing the name servers for domains higher than the local domain. These data files can have any name. However, for convenience in maintaining the named database, they are generally given names in the fol- lowing form: /etc/named.extension. The general format of named data files is described in /etc/named.*. EXAMPLES
The following examples show the various ways to use the named start-up file. The /etc/named.conf file for venus, a master name server (that which used to be called a primary name server), contains these entries: // Configuration (boot) file for master name server // zone "." { type hint; file "/etc/named.ca"; }; zone "abc.aus.osf.com" { type master; file "/etc/named.abcdata"; }; zone "xyz.aus.osf.com" { type master; file "/etc/named.xyzdata"; }; zone "201.9.192.in-addr.arpa" { type master; file "/etc/named.abcrev"; }; zone "100.114.128.in-addr.arpa" { type master; file "/etc/named.xyzrev"; }; zone "0.0.127.in-addr.arpa" { type master; file "/etc/named.local"; }; In this example, the master name server is venus and the Internet address is 192.9.201.1. The /etc/named.conf file for kronos, a slave name server (that which used to be called a secondary name server), contains these entries: // Configuration (boot) file for slave name server // zone "." { type hint; file "/etc/named.ca"; }; zone "abc.aus.osf.com" { type slave; file "192.9.201.2"; masters { 192.9.201.1; }; }; zone "xyz.aus.osf.com" { type slave; file "192.9.201.2"; masters { 192.9.201.1; }; }; zone "201.9.192.in-addr.arpa" { type slave; file "192.9.201.2"; masters { 192.9.201.1; }; }; zone "100.114.128.in-addr.arpa" { type slave; file "192.9.201.2"; masters { 192.9.201.1; }; }; zone "0.0.127.in-addr.arpa" { type master; file "/etc/named.local"; }; In this example the slave name server is kronos and the Internet address is 192.9.201.2. The /etc/named.conf file for hera, a caching-only name server contains these entries: // Configuration (boot) file for caching-only server // zone "." { type hint; file "/etc/named.ca"; }; zone "0.0.127.in-addr.arpa" { type master; file "/etc/named.local"; }; The /etc/named.conf file for titan, an IPv4 master name server that accepts secure dynamic updates from new clients, contains these entries: It is recommended that you do not enable authentication for IPv6 zones that are dynamically updated. See bind_manual_setup(7) for more information. // Configuration (boot) file for master name server // include "/etc/namedb/named.keys"; zone "." { type hint; file "/etc/named.ca"; }; zone "dyn.aus.osf.com" { type master; file "/etc/named.dyndata"; allow-update { dynnet-titan_update }; }; zone "201.9.192.in-addr.arpa" { type master; file "/etc/named.dynrev"; allow-update { dynnet-titan_update }; }; zone "0.0.127.in-addr.arpa" { type master; file "/etc/named.local"; }; The allow-update substatement in the zone statements specifies that dynamic updates to the master DNS database are successful only if they are signed with the dynnet-titan_update key. The include statement calls named.keys, a file that is read/writable only by superuser and contains the following key configuration statement: key dynnet-titan_update { algorithm hmac-md5; secret "YYnTXprDocI5qizxfT9/A8f9Ec+eq0Oo1DGXvks/Q27kTMMYKw==" }; You generate a private key for the secret substatement by using the dnskeygen command. See the Network Administration guide or bind_manual_setup(7) for more information about configuring secure dynamic updates. RELATED INFORMATION
Commands: named(8), dnskeygen(1). Files: named.star(4). Networking: bind_manual_setup(7). Network Administration delim off named.conf(4)
All times are GMT -4. The time now is 08:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy