BIND 9, disable recursion


 
Thread Tools Search this Thread
Operating Systems Solaris BIND 9, disable recursion
# 1  
Old 03-13-2018
BIND 9, disable recursion

Hi,

I am trying to disable the recursion on DNS server (Solaris 10). I have added the lines in the named.conf as below:

Code:
 allow-query-cache { none; };
        recursion no;


Then restarted the solaris DNS services

Code:
svcadm refresh svc:/network/dns/server:default

Still I am able to nslookup on external sites.


Are these the right steps to do it??

Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

SSL/TLS renegotiation DoS -how to disable? Is it advisable to disable?

Hi all Expertise, I have following issue to solve, SSL / TLS Renegotiation DoS (low) 222.225.12.13 Ease of Exploitation Moderate Port 443/tcp Family Miscellaneous Following is the problem description:------------------ Description The remote service encrypts traffic using TLS / SSL and... (2 Replies)
Discussion started by: manalisharmabe
2 Replies

2. Solaris

Disable RPC Bind

I would like to disable RPC bind permanently since I am not going to use rpc bind to network to any other machines. How do I do this so I can stop getting all these error messages? (3 Replies)
Discussion started by: jastanle84
3 Replies

3. Shell Programming and Scripting

script recursion

Can someone please explain me why the following script calls it self recursively: #!/bin/bash echo Called $0 while this not: #!/bin/bash echo Called $($0) Thanks (6 Replies)
Discussion started by: superpointer
6 Replies

4. Programming

C Recursion (explain)

Hi, Question: how come the output is like that? Can explain to me abit. I am learning C. Thanks! #include <stdio.h> #include <string.h> void printit(char line_of_char, int index); int main() { char line_of_char; int index = -1; strcpy(line_of_char, "This is a string."); ... (5 Replies)
Discussion started by: seede
5 Replies

5. Shell Programming and Scripting

How to disable Enable/Disable Tab Key

Hi All, I have bash script, so what is sintax script in bash for Enable and Disable Tab Key. Thanks for your help.:( Thanks, Rico (1 Reply)
Discussion started by: carnegiex
1 Replies

6. Programming

Recursion

I want to halt a tail recursive function after certain validation. I want to come out of entire recursion without unwinding phase. How can i achieve that . The coding is done in C language. (5 Replies)
Discussion started by: joshighanshyam
5 Replies

7. Shell Programming and Scripting

Help Help Help in recursion

Hello every body. I am trying to find the factorial using the following code. But it is giving the syntax error. I tried very much but in vain. Thanks in advance for helping me factorial() { if then y=`expr $1 - 1` x=$(( $1 \* factorial $y ))... (6 Replies)
Discussion started by: murtaza
6 Replies

8. UNIX for Advanced & Expert Users

allow recursion on dns server?

Hello everyone. I'm not sure if I should allow recursion on our external DNS server. I just finished configuring the server and this is the last parameter I'm pondering over. We are an internet company and we rely on customers going to our website and our website is referred to on our external... (1 Reply)
Discussion started by: xnightcrawl
1 Replies

9. Shell Programming and Scripting

recursion too deep

I am running a korn shell script which has a recursive function. The script ran for 117 iterations and ended up with the following error "recursion too deep". what should be done to avert this? Thanks in advance Swamy p.s. I am on UNIX MPRAS V4 (3 Replies)
Discussion started by: swamy455
3 Replies

10. Shell Programming and Scripting

recursion

I'm using the UNIX csh and i wish to use recursion to nav my way up (or down as it is) a given folder. My little test script is called "r" and takes a folder as argv (or $1) #!/bin/tcsh -f set allFiles = `ls -A $argv` cd $argv while ($#allFiles) if (-d... (1 Reply)
Discussion started by: gsjf
1 Replies
Login or Register to Ask a Question
nsquery(1)						      General Commands Manual							nsquery(1)

Name
       nsquery - name server query command

Syntax
       /usr/ucb/nsquery [ lookup ] [ host ] [ server ]

Description
       The command provides an interface to obtain host name and address information.

       If  you	specify  host,	the command obtains information about the specified host. If no host is specified, the command obtains information
       about the local host system.

       If you specify server, the command queries the BIND server that you specify. If you do not  specify  a  server,	the  command  queries  the
       default BIND server.

Options
       lookup  Retrieves the host name, Internet Protocol (IP) address, and aliases of the specified host.  If no host or server is specified, the
	       command obtains information about the local system from the default BIND server.

	       If you do specify the lookup option, the command obtains the information about  the  BIND  server  and  host  specified	(or  their
	       defaults).   If the system from which you issue the command is a BIND server, and you do not specify the lookup option, information
	       about only that server is retrieved.

Files
       Directory containing BIND server data file

       BIND server boot file

       Host database file containing name to address mapping for BIND primary
			   server

       Host database file containing address to name mapping for BIND primary
			   server

       Local host database file containing address to name mapping for BIND
			   server

       BIND server cache file

       BIND data file

See Also
       nslookup(1), resolver(3), resolver(5), named(8)
       Guide to the BIND/Hesiod Service

																	nsquery(1)