- Add missing words;

- Use of application tags for inetd for consistency with others
  servers/daemons/softwares and since inetd is hardly seen as a simple
  command issued at the prompt.
This commit is contained in:
Marc Fonvieille 2008-07-05 13:50:14 +00:00
parent 82389e966f
commit c7283b0de1
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=32492

View file

@ -1312,14 +1312,14 @@ Enter secret pass phrase: <userinput>&lt;secret password&gt;</userinput>
install a firewall to handle network connections. While a
firewall has a wide variety of uses, there are some things
that a firewall not handle such as sending text back to the
connection originator. The <acronym>TCP</acronym> software
connection originator. The <acronym>TCP</acronym> Wrappers software
does this and much more. In the next few sections many of
the <acronym>TCP</acronym> Wrappers features will be discussed,
and, when applicable, example configuration lines will be
provided.</para>
<para>The <acronym>TCP</acronym> Wrappers software extends the
abilities of <command>inetd</command> to provide support for
abilities of <application>inetd</application> to provide support for
every server daemon under its control. Using this method it
is possible to provide logging support, return messages to
connections, permit a daemon to only accept internal connections,
@ -1336,7 +1336,7 @@ Enter secret pass phrase: <userinput>&lt;secret password&gt;</userinput>
for the system.</para>
<para>Since this is an extension to the configuration of
<command>inetd</command>, the reader is expected have
<application>inetd</application>, the reader is expected have
read the <link linkend="network-inetd">inetd configuration</link>
section.</para>
@ -1350,7 +1350,7 @@ Enter secret pass phrase: <userinput>&lt;secret password&gt;</userinput>
<title>Initial Configuration</title>
<para>The only requirement of using <acronym>TCP</acronym>
Wrappers in &os; is to ensure the <command>inetd</command>
Wrappers in &os; is to ensure the <application>inetd</application>
server is started from <filename>rc.conf</filename> with the
<option>-Ww</option> option; this is the default setting. Of
course, proper configuration of
@ -1369,7 +1369,7 @@ Enter secret pass phrase: <userinput>&lt;secret password&gt;</userinput>
are set to either be permitted or blocked depending on the
options in <filename>/etc/hosts.allow</filename>. The default
configuration in &os; is to allow a connection to every daemon
started with <command>inetd</command>. Changing this will be
started with <application>inetd</application>. Changing this will be
discussed only after the basic configuration is covered.</para>
<para>Basic configuration usually takes the form of
@ -1396,8 +1396,8 @@ Enter secret pass phrase: <userinput>&lt;secret password&gt;</userinput>
<programlisting># This line is required for POP3 connections:
qpopper : ALL : allow</programlisting>
<para>After adding this line, <command>inetd</command> will need
restarted. This can be accomplished by use of the &man.kill.1;
<para>After adding this line, <application>inetd</application> will need
to be restarted. This can be accomplished by use of the &man.kill.1;
command, or with the <parameter>restart</parameter> parameter
with <filename>/etc/rc.d/inetd</filename>.</para>
</sect2>