Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
633
Issues
633
List
Boards
Labels
Service Desk
Milestones
Merge Requests
105
Merge Requests
105
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
c40265eb
Commit
c40265eb
authored
Mar 30, 2001
by
Brian Wellington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
converted man pages to docbook
parent
9b6a170d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
696 additions
and
94 deletions
+696
-94
bin/check/Makefile.in
bin/check/Makefile.in
+12
-3
bin/check/named-checkconf.8
bin/check/named-checkconf.8
+31
-41
bin/check/named-checkconf.docbook
bin/check/named-checkconf.docbook
+96
-0
bin/check/named-checkconf.html
bin/check/named-checkconf.html
+179
-0
bin/check/named-checkzone.8
bin/check/named-checkzone.8
+41
-50
bin/check/named-checkzone.docbook
bin/check/named-checkzone.docbook
+127
-0
bin/check/named-checkzone.html
bin/check/named-checkzone.html
+210
-0
No files found.
bin/check/Makefile.in
View file @
c40265eb
...
...
@@ -13,7 +13,7 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: Makefile.in,v 1.1
0 2001/03/03 23:11
:32 bwelling Exp $
# $Id: Makefile.in,v 1.1
1 2001/03/30 00:08
:32 bwelling Exp $
srcdir
=
@srcdir@
VPATH
=
@srcdir@
...
...
@@ -46,6 +46,10 @@ SRCS = named-checkconf.c named-checkzone.c check-tool.c
MANPAGES
=
named-checkconf.8 named-checkzone.8
HTMLPAGES
=
named-checkconf.html named-checkzone.html
MANOBJS
=
${MANPAGES}
${HTMLPAGES}
@BIND9_MAKE_RULES@
named-checkconf
:
named-checkconf.@O@ check-tool.@O@ ${ISCDEPLIBS} ${ISCCFGDEPLIBS}
...
...
@@ -56,8 +60,10 @@ named-checkzone: named-checkzone.@O@ check-tool.@O@ ${ISCDEPLIBS} ${DNSDEPLIBS}
${LIBTOOL}
${PURIFY}
${CC}
${CFLAGS}
-o
$@
named-checkzone.@O@
\
check-tool.@O@
${DNSLIBS}
${ISCLIBS}
${LIBS}
clean distclean
::
rm
-f
${TARGETS}
doc man
::
${MANOBJS}
docclean manclean maintainer-clean
::
rm
-f
${MANOBJS}
installdirs
:
$(SHELL)
${top_srcdir}
/mkinstalldirs
${DESTDIR}${sbindir}
...
...
@@ -67,3 +73,6 @@ install:: named-checkconf named-checkzone installdirs
${LIBTOOL}
${INSTALL_PROGRAM}
named-checkconf
${DESTDIR}${sbindir}
${LIBTOOL}
${INSTALL_PROGRAM}
named-checkzone
${DESTDIR}${sbindir}
for
m
in
${MANPAGES}
;
do
${INSTALL_DATA}
$$
m
${DESTDIR}${mandir}
/man8
;
done
clean distclean
::
rm
-f
${TARGETS}
bin/check/named-checkconf.8
View file @
c40265eb
...
...
@@ -12,44 +12,34 @@
.\" 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.
.\" $Id: named-checkconf.8,v 1.4 2001/01/29 18:38:11 gson Exp $
.Dd Jun 14, 2000
.Dt NAMED-CHECKCONF 1
.Os BIND9 9
.ds vT BIND9 Programmer's Manual
.Sh NAME
.Nm named-checkconf
.Nd named configuration file syntax checking tool.
.Sh SYNOPSIS
.Nm named-checkconf
.Op Fl t Ar directory
.Ar filename
.Sh DESCRIPTION
.Pp
.Nm named-checkconf
checks the syntax, but not sematics, of the configuration file
for named.
.Pp
The options to
.Nm named-checkconf
are as follows:
.Bl -tag -width Ds
.It Ar filename
the name of the configuration file to be checked.
If not specified it defaults /etc/named.conf.
.It Fl t
chroot to
.Ar directory
so that include directives in the configuration
file are processed as if run by a similarly chrooted
named.
.El
.Sh RETURN VALUES
.Pp
.Nm named-checkconf
return a an exit status of 1 if errors were detected,
0 otherwise.
.Sh SEE ALSO
.Xr named 8 .
.TH "NAMED-CHECKCONF" "8" "June 14, 2000" "BIND9" ""
.SH NAME
named-checkconf \- named configuration file syntax checking tool
.SH SYNOPSIS
.sp
\fBnamed-checkconf\fR [ \fB-t \fIdirectory\fB\fR ] \fBfilename\fR
.SH "DESCRIPTION"
.PP
\fBnamed-checkconf\fR checks the syntax, but not
the semantics, of a named configuration file.
.SH "OPTIONS"
.TP
\fB-t \fIdirectory\fB\fR
chroot to \fIdirectory\fR so that include
directives in the configuration file are processed as if
run by a similarly chrooted named.
.TP
\fBfilename\fR
The name of the configuration file to be checked. If not
specified, it defaults to \fI/etc/named.conf\fR.
.SH "RETURN VALUES"
.PP
\fBnamed-checkconf\fR returns an exit status of 1 if
errors were detected and 0 otherwise.
.SH "SEE ALSO"
.PP
\fBnamed\fR(8),
\fIBIND 9 Administrator Reference Manual\fR.
.SH "AUTHOR"
.PP
Internet Software Consortium
bin/check/named-checkconf.docbook
0 → 100644
View file @
c40265eb
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
<refentry>
<refentryinfo>
<date>
June 14, 2000
</date>
</refentryinfo>
<refmeta>
<refentrytitle><application>
named-checkconf
</application></refentrytitle>
<manvolnum>
8
</manvolnum>
<refmiscinfo>
BIND9
</refmiscinfo>
</refmeta>
<refnamediv>
<refname><application>
named-checkconf
</application></refname>
<refpurpose>
named configuration file syntax checking tool
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>
named-checkconf
</command>
<arg><option>
-t
<replaceable
class=
"parameter"
>
directory
</replaceable></option></arg>
<arg
choice=
"req"
>
filename
</arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>
DESCRIPTION
</title>
<para>
<command>
named-checkconf
</command>
checks the syntax, but not
the semantics, of a named configuration file.
</para>
</refsect1>
<refsect1>
<title>
OPTIONS
</title>
<variablelist>
<varlistentry>
<term>
-t
<replaceable
class=
"parameter"
>
directory
</replaceable></term>
<listitem>
<para>
chroot to
<filename>
directory
</filename>
so that include
directives in the configuration file are processed as if
run by a similarly chrooted named.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
filename
</term>
<listitem>
<para>
The name of the configuration file to be checked. If not
specified, it defaults to
<filename>
/etc/named.conf
</filename>
.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>
RETURN VALUES
</title>
<para>
<command>
named-checkconf
</command>
returns an exit status of 1 if
errors were detected and 0 otherwise.
</refsect1>
<refsect1>
<title>
SEE ALSO
</title>
<para>
<citerefentry>
<refentrytitle>
named
</refentrytitle>
<manvolnum>
8
</manvolnum>
</citerefentry>
,
<citetitle>
BIND 9 Administrator Reference Manual
</citetitle>
.
</para>
</refsect1>
<refsect1>
<title>
AUTHOR
</title>
<para>
<corpauthor>
Internet Software Consortium
</corpauthor>
</para>
</refsect1>
</refentry>
<!--
- Local variables:
- mode: sgml
- End:
-->
bin/check/named-checkconf.html
0 → 100644
View file @
c40265eb
<!--
- Copyright (C) 2000, 2001 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
>
named-checkconf
</TITLE
><META
NAME=
"GENERATOR"
CONTENT=
"Modular DocBook HTML Stylesheet Version 1.61
"
></HEAD
><BODY
CLASS=
"REFENTRY"
BGCOLOR=
"#FFFFFF"
TEXT=
"#000000"
LINK=
"#0000FF"
VLINK=
"#840084"
ALINK=
"#0000FF"
><H1
><A
NAME=
"AEN1"
><SPAN
CLASS=
"APPLICATION"
>
named-checkconf
</SPAN
></A
></H1
><DIV
CLASS=
"REFNAMEDIV"
><A
NAME=
"AEN9"
></A
><H2
>
Name
</H2
><SPAN
CLASS=
"APPLICATION"
>
named-checkconf
</SPAN
>
--
named configuration file syntax checking tool
</DIV
><DIV
CLASS=
"REFSYNOPSISDIV"
><A
NAME=
"AEN13"
></A
><H2
>
Synopsis
</H2
><P
><B
CLASS=
"COMMAND"
>
named-checkconf
</B
>
[
<TT
CLASS=
"OPTION"
>
-t
<TT
CLASS=
"REPLACEABLE"
><I
>
directory
</I
></TT
></TT
>
] {filename}
</P
></DIV
><DIV
CLASS=
"REFSECT1"
><A
NAME=
"AEN20"
></A
><H2
>
DESCRIPTION
</H2
><P
>
<B
CLASS=
"COMMAND"
>
named-checkconf
</B
>
checks the syntax, but not
the semantics, of a named configuration file.
</P
></DIV
><DIV
CLASS=
"REFSECT1"
><A
NAME=
"AEN24"
></A
><H2
>
OPTIONS
</H2
><P
></P
><DIV
CLASS=
"VARIABLELIST"
><DL
><DT
>
-t
<TT
CLASS=
"REPLACEABLE"
><I
>
directory
</I
></TT
></DT
><DD
><P
>
chroot to
<TT
CLASS=
"FILENAME"
>
directory
</TT
>
so that include
directives in the configuration file are processed as if
run by a similarly chrooted named.
</P
></DD
><DT
>
filename
</DT
><DD
><P
>
The name of the configuration file to be checked. If not
specified, it defaults to
<TT
CLASS=
"FILENAME"
>
/etc/named.conf
</TT
>
.
</P
></DD
></DL
></DIV
></DIV
><DIV
CLASS=
"REFSECT1"
><A
NAME=
"AEN38"
></A
><H2
>
RETURN VALUES
</H2
><P
>
<B
CLASS=
"COMMAND"
>
named-checkconf
</B
>
returns an exit status of 1 if
errors were detected and 0 otherwise.
</P
></DIV
><DIV
CLASS=
"REFSECT1"
><A
NAME=
"AEN42"
></A
><H2
>
SEE ALSO
</H2
><P
>
<SPAN
CLASS=
"CITEREFENTRY"
><SPAN
CLASS=
"REFENTRYTITLE"
>
named
</SPAN
>
(8)
</SPAN
>
,
<I
CLASS=
"CITETITLE"
>
BIND 9 Administrator Reference Manual
</I
>
.
</P
></DIV
><DIV
CLASS=
"REFSECT1"
><A
NAME=
"AEN49"
></A
><H2
>
AUTHOR
</H2
><P
>
Internet Software Consortium
</P
></DIV
></BODY
></HTML
>
\ No newline at end of file
bin/check/named-checkzone.8
View file @
c40265eb
...
...
@@ -12,53 +12,44 @@
.\" 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.
.\" $Id: named-checkzone.8,v 1.4 2001/01/24 00:56:56 gson Exp $
.Dd Jun 13, 2000
.Dt NAMED-CHECKZONE 1
.Os BIND9 9
.ds vT BIND9 Programmer's Manual
.Sh NAME
.Nm named-checkzone
.Nd Zone validity checking tool.
.Sh SYNOPSIS
.Nm named-checkzone
.Op Fl dq
.Op Fl c Ar class
.Ar zonename
.Ar filename
.Sh DESCRIPTION
.Pp
.Nm named-checkzone
checks the syntax and integrity of a zone file.
It performs the same checks as
.Nm named
does when loading a zone. This makes
.Nm named-checkzone
useful for checking zone files before
configuring them into a name server.
.Pp
The options to
.Nm named-checkzone
are as follows:
.Bl -tag -width Ds
.It Fl d
enable debugging.
.It Fl q
quiet mode - exit code only.
.It Fl c Ar class
specify the class of the zone.
If not specified "IN" is assumed.
.It Ar zonename
the domain name of the zone being checked.
.It Ar filename
the name of the zone file.
.Sh RETURN VALUES
.Pp
.Nm named-checkzone
return a an exit status of 1 if errors were detected,
0 otherwise.
.Sh SEE ALSO
.Xr named 8 ,
.Xr RFC1035 .
.TH "NAMED-CHECKZONE" "8" "June 13, 2000" "BIND9" ""
.SH NAME
named-checkzone \- zone file validity checking tool
.SH SYNOPSIS
.sp
\fBnamed-checkzone\fR [ \fB-d\fR ] [ \fB-q\fR ] [ \fB-c \fIclass\fB\fR ] \fBzonename\fR \fBfilename\fR
.SH "DESCRIPTION"
.PP
\fBnamed-checkzone\fR checks the syntax and integrity of
a zone file. It performs the same checks as \fBnamed\fR
does when loading a zone. This makes
\fBnamed-checkzone\fR useful for checking zone
files before configuring them into a name server.
.SH "OPTIONS"
.TP
\fB-d\fR
Enable debugging.
.TP
\fB-q\fR
Quiet mode - exit code only.
.TP
\fB-c \fIclass\fB\fR
Specify the class of the zone. If not specified "IN" is assumed.
.TP
\fBzonename\fR
The domain name of the zone being checked.
.TP
\fBfilename\fR
The name of the zone file.
.SH "RETURN VALUES"
.PP
\fBnamed-checkzone\fR returns an exit status of 1 if
errors were detected and 0 otherwise.
.SH "SEE ALSO"
.PP
\fBnamed\fR(8),
\fIRFC 1035\fR,
\fIBIND 9 Administrator Reference Manual\fR.
.SH "AUTHOR"
.PP
Internet Software Consortium
bin/check/named-checkzone.docbook
0 → 100644
View file @
c40265eb
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
<refentry>
<refentryinfo>
<date>
June 13, 2000
</date>
</refentryinfo>
<refmeta>
<refentrytitle><application>
named-checkzone
</application></refentrytitle>
<manvolnum>
8
</manvolnum>
<refmiscinfo>
BIND9
</refmiscinfo>
</refmeta>
<refnamediv>
<refname><application>
named-checkzone
</application></refname>
<refpurpose>
zone file validity checking tool
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>
named-checkzone
</command>
<arg><option>
-d
</option></arg>
<arg><option>
-q
</option></arg>
<arg><option>
-c
<replaceable
class=
"parameter"
>
class
</replaceable></option></arg>
<arg
choice=
"req"
>
zonename
</arg>
<arg
choice=
"req"
>
filename
</arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>
DESCRIPTION
</title>
<para>
<command>
named-checkzone
</command>
checks the syntax and integrity of
a zone file. It performs the same checks as
<command>
named
</command>
does when loading a zone. This makes
<command>
named-checkzone
</command>
useful for checking zone
files before configuring them into a name server.
</para>
</refsect1>
<refsect1>
<title>
OPTIONS
</title>
<variablelist>
<varlistentry>
<term>
-d
</term>
<listitem>
<para>
Enable debugging.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
-q
</term>
<listitem>
<para>
Quiet mode - exit code only.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
-c
<replaceable
class=
"parameter"
>
class
</replaceable></term>
<listitem>
<para>
Specify the class of the zone. If not specified "IN" is assumed.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
zonename
</term>
<listitem>
<para>
The domain name of the zone being checked.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
filename
</term>
<listitem>
<para>
The name of the zone file.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>
RETURN VALUES
</title>
<para>
<command>
named-checkzone
</command>
returns an exit status of 1 if
errors were detected and 0 otherwise.
</refsect1>
<refsect1>
<title>
SEE ALSO
</title>
<para>
<citerefentry>
<refentrytitle>
named
</refentrytitle>
<manvolnum>
8
</manvolnum>
</citerefentry>
,
<citetitle>
RFC 1035
</citetitle>
,
<citetitle>
BIND 9 Administrator Reference Manual
</citetitle>
.
</para>
</refsect1>
<refsect1>
<title>
AUTHOR
</title>
<para>
<corpauthor>
Internet Software Consortium
</corpauthor>
</para>
</refsect1>
</refentry>
<!--
- Local variables:
- mode: sgml
- End:
-->
bin/check/named-checkzone.html
0 → 100644
View file @
c40265eb
<!--
- Copyright (C) 2000, 2001 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
>
named-checkzone
</TITLE
><META
NAME=
"GENERATOR"
CONTENT=
"Modular DocBook HTML Stylesheet Version 1.61
"
></HEAD
><BODY
CLASS=
"REFENTRY"
BGCOLOR=
"#FFFFFF"
TEXT=
"#000000"
LINK=
"#0000FF"
VLINK=
"#840084"
ALINK=
"#0000FF"