Sponsored Content
Operating Systems Linux Red Hat SOA primary name server understanding Post 302834411 by RHCE on Friday 19th of July 2013 01:30:33 AM
Old 07-19-2013
SOA primary name server understanding

The SOA in the forward zone file for a DNS server has the following kind of syntax:

@ IN SOA primary-name-server hostmaster-email (
serial-number
time-to-refresh

My query here is that does the primary name server need to be a hostname of any server.

Please revert with the reply to my query.

Regards
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

home network - can you have a primary name server, or only a caching-only name server

i'm setting up a solaris 9 box to be my home network's DNS server. actually it's up and running, but it's set as a caching-only name server. can i set it up to be the primary name server? what are the advantages if i can set it up to be a primary name server vs. a caching only name server? (3 Replies)
Discussion started by: xyyz
3 Replies

2. UNIX for Dummies Questions & Answers

Add a new host to a primary server

Hi, I need to add a new host to a primary dns. what i need to add or change? I know i dont need to do nothing in named.conf and in the /etc/hosts. Thanks (2 Replies)
Discussion started by: Lisboeta_c95
2 Replies

3. Solaris

copying from mirror to primary

Hi Anybody, I have a primary disk and mirror disk They are not synced properly. Even though i attached the mirrors. Now i want to copy one directory which is in primary to mirror disk. Is that possible ,, kindly guide me Regards Rj (5 Replies)
Discussion started by: jegaraman
5 Replies

4. Programming

logic understanding for inter client chat server

hello everyone, i am making chat server in linux using c. i have made programs in which group chat can take place between multiple clients but i am not able to understand how to make 2 particular clients chat with each other. please help!!! (1 Reply)
Discussion started by: sweetbella
1 Replies

5. AIX

change the primary dump device of a vio server

Hi how to change the primary dump device in a vio server ? $ ioslevel 2.2.0.11-FP-24 SP-01 $ oem_setup_env # sysdumpdev -l primary /dev/sysdumpnull secondary /dev/hd6 copy directory /var/adm/ras forced copy flag TRUE always allow dump TRUE dump... (1 Reply)
Discussion started by: newtoaixos
1 Replies

6. Solaris

Solaris 11 server as Primary Domain Controller

Hi, All of our servers run Solaris (currently 10, but looking to upgrade to 11). In each of our offices we have a server configured as a Primary Domain Controller via Samba to provide naming services to our Windoze users. I would like to continue with that arrangement, but I would also like... (2 Replies)
Discussion started by: wgkorb
2 Replies

7. Solaris

DNS Primary and Secondary

hi there, i using salaris 10 as my DNS server. i have 2 dns server primary and secondary. if primary dns server i edit/update, the other secondary dns server must be sync too. How can i configure if dns server (primary) can sync the secondary? (1 Reply)
Discussion started by: tappetmus
1 Replies

8. UNIX for Beginners Questions & Answers

Primary group

Is it possible user without a primary group (3 Replies)
Discussion started by: lobsang
3 Replies
ARES_PARSE_SOA_REPLY(3) 				     Library Functions Manual					   ARES_PARSE_SOA_REPLY(3)

NAME
ares_parse_soa_reply - Parse a reply to a DNS query of type SOA SYNOPSIS
#include <ares.h> int ares_parse_soa_reply(const unsigned char* abuf, int alen, struct ares_soa_reply** soa_out); DESCRIPTION
The ares_parse_soa_reply function parses the response to a query of type SOA into a struct ares_soa_reply. The parameters abuf and alen give the contents of the response. The result is stored in allocated memory and a pointer to it stored into the variable pointed to by soa_out. It is the caller's responsibility to free the resulting soa_out structure when it is no longer needed using the function ares_free_data The structure ares_soa_reply contains the following fields: struct ares_soa_reply { char *nsname; char *hostmaster; unsigned int serial; unsigned int refresh; unsigned int retry; unsigned int expire; unsigned int minttl; }; RETURN VALUES
ares_parse_soa_reply can return any of the following values: ARES_SUCCESS The response was successfully parsed. ARES_EBADRESP The response was malformatted. ARES_ENODATA The response did not contain an answer to the query. ARES_ENOMEM Memory was exhausted. AVAILABILITY
This function was first introduced in c-ares version 1.9.0. SEE ALSO
ares_query(3) ares_free_data(3) 29 May 2012 ARES_PARSE_SOA_REPLY(3)
All times are GMT -4. The time now is 04:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy