mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-17 17:49:23 -05:00
80 lines
2.1 KiB
HTML
80 lines
2.1 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<!--
|
|
- Copyright (C) 1999, 2000 Internet Software Consortium.
|
|
-
|
|
- Permission to use, copy, modify, and distribute this software for any
|
|
- purpose with or without fee is hereby granted, provided that the above
|
|
- copyright notice and this permission notice appear in all copies.
|
|
-
|
|
- THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
- DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
- INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
- FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
- NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
- WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
-->
|
|
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>BIND acl Statement</TITLE>
|
|
</HEAD>
|
|
|
|
<BODY>
|
|
<H2>BIND Configuration File Guide--<CODE>acl</CODE> Statement</H2>
|
|
|
|
<HR>
|
|
|
|
<A NAME="Syntax"><H3>Syntax</H3></A>
|
|
|
|
<PRE>
|
|
acl <VAR>name</VAR> {
|
|
<VAR><A HREF="address_list.html">address_match_list</A></VAR>
|
|
};
|
|
</PRE>
|
|
|
|
<HR>
|
|
|
|
<A NAME="Usage"><H3>Definition and Usage</H3></A>
|
|
|
|
<P>The <CODE>acl</CODE> statement creates a named address match list.
|
|
It gets its name from a primary use of address match lists: Access
|
|
Control Lists (ACLs).</P>
|
|
|
|
<P>Note that an address match list's name must be defined with
|
|
<CODE>acl</CODE> before it can be used elsewhere; no forward
|
|
references are allowed.</P>
|
|
|
|
The following ACLs are built-in:
|
|
|
|
<DL>
|
|
<DT><CODE>any</CODE>
|
|
<DD>
|
|
Allows all hosts.
|
|
|
|
<DT><CODE>none</CODE>
|
|
<DD>
|
|
Denies all hosts.
|
|
|
|
<DT><CODE>localhost</CODE>
|
|
<DD>
|
|
Allows the IP addresses of all interfaces on the system.
|
|
|
|
<DT><CODE>localnets</CODE>
|
|
<DD>
|
|
Allows any host on a network for which the system has an interface.
|
|
</DL>
|
|
|
|
<HR>
|
|
|
|
<CENTER><P>[ <A HREF="config.html">BIND Config. File</A>
|
|
| <A HREF="http://www.vix.com/isc/bind.html">BIND Home</A>
|
|
| <A HREF="http://www.isc.org">ISC</A> ]</P></CENTER>
|
|
|
|
<HR>
|
|
<ADDRESS>
|
|
Last Updated: $Id: acl.html,v 1.3 2000/07/27 09:42:08 tale Exp $
|
|
</ADDRESS>
|
|
</BODY>
|
|
</HTML>
|