Ignore:
Timestamp:
05/30/2005 04:23:59 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
50b8d8b
Parents:
8d0d2eb
Message:

Removed spaces from blank lines and excess spaces from the end of XML data

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4482 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • basicnet/netprogs/tcpwrappers.xml

    r8d0d2eb rbab92281  
    1515<sect1 id="tcpwrappers" xreflabel="tcpwrappers-&tcpwrappers-version;">
    1616  <?dbhtml filename="tcpwrappers.html"?>
    17  
     17
    1818  <sect1info>
    1919    <othername>$LastChangedBy$</othername>
    2020    <date>$Date$</date>
    2121  </sect1info>
    22  
     22
    2323  <title>Tcpwrappers-&tcpwrappers-version;</title>
    24  
     24
    2525  <indexterm zone="tcpwrappers">
    2626   <primary sortas="a-Tcpwrappers">Tcpwrappers</primary>
     
    3232      <para>The <application>tcpwrappers</application> package provides daemon
    3333      wrapper programs that report the name of the client requesting network
    34       services and the requested service.</para> 
    35    
     34      services and the requested service.</para>
     35
    3636    <bridgehead renderas="sect3">Package Information</bridgehead>
    3737    <itemizedlist spacing="compact">
     
    5555      </listitem>
    5656    </itemizedlist>
    57    
     57
    5858    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    5959    <itemizedlist spacing='compact'>
     
    6464      </listitem>
    6565    </itemizedlist>
    66    
    67   </sect2>
    68  
     66
     67  </sect2>
     68
    6969  <sect2 role="installation">
    7070    <title>Installation of Tcpwrappers</title>
     
    7676sed -i -e "s,^extern char \*malloc();,/* &amp; */," scaffold.c &amp;&amp;
    7777make REAL_DAEMON_DIR=/usr/sbin STYLE=-DPROCESS_OPTIONS linux</userinput></screen>
    78    
     78
    7979    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    80    
     80
    8181<screen role="root"><userinput>make install</userinput></screen>
    82    
    83   </sect2>
    84  
     82
     83  </sect2>
     84
    8585  <sect2 role="commands">
    8686    <title>Command Explanations</title>
    87    
     87
    8888    <para><command>sed -i -e ... scaffold.c</command>: This command removes an
    8989    obsolete C declaration which causes the build to fail if using
    9090    <application>GCC-3.4.x</application>.</para>
    91    
    92   </sect2>
    93  
     91
     92  </sect2>
     93
    9494  <sect2 role="configuration">
    9595    <title>Configuring Tcpwrappers</title>
     
    9797    <sect3 id="tcpwrappers-config">
    9898      <title>Config Files</title>
    99      
     99
    100100      <para><filename>/etc/hosts.allow</filename> and
    101101      <filename>/etc/hosts.deny</filename></para>
    102      
     102
    103103      <indexterm zone="tcpwrappers tcpwrappers-config">
    104104        <primary sortas="e-etc-hosts.allow">/etc/hosts.allow</primary>
    105105      </indexterm>
    106      
     106
    107107      <indexterm zone="tcpwrappers tcpwrappers-config">
    108108        <primary sortas="e-etc-hosts.deny">/etc/hosts.deny</primary>
    109109      </indexterm>
    110      
     110
    111111      <para>File protections: the wrapper, all files used by the wrapper,
    112112      and all directories in the path leading to those files, should be
    113113      accessible but not writable for unprivileged users (mode 755 or mode
    114114      555). Do not install the wrapper set-uid.</para>
    115      
     115
    116116      <para>As the <systemitem class="username">root</systemitem> user,
    117117      perform the following edits on the
    118118      <filename>/etc/inetd.conf</filename> configuration file:</para>
    119      
     119
    120120      <indexterm zone="tcpwrappers tcpwrappers-config">
    121121        <primary sortas="e-etc-inetd.conf">/etc/inetd.conf</primary>
     
    125125
    126126      <para>becomes:</para>
    127      
     127
    128128<screen><literal>finger stream tcp nowait nobody /usr/sbin/tcpd in.fingerd</literal></screen>
    129129
     
    131131        <para>The <command>finger</command> server is used as an example here.</para>
    132132      </note>
    133      
     133
    134134      <para>Similar changes must be made if <application>xinetd</application> is
    135       used, with the emphasis being on calling <command>/usr/sbin/tcpd</command> 
     135      used, with the emphasis being on calling <command>/usr/sbin/tcpd</command>
    136136      instead of calling the service daemon directly, and passing the name of the
    137137      service daemon to <command>tcpd</command>.</para>
    138      
     138
    139139      <indexterm zone="tcpwrappers tcpwrappers-config">
    140140        <primary sortas="e-etc-xinetd.conf">/etc/xinetd.conf</primary>
    141141      </indexterm>
    142      
     142
    143143    </sect3>
    144    
    145   </sect2>
    146  
     144
     145  </sect2>
     146
    147147  <sect2 role="content">
    148148    <title>Contents</title>
     
    152152      <segtitle>Installed Library</segtitle>
    153153      <segtitle>Installed Directories</segtitle>
    154      
     154
    155155      <seglistitem>
    156156        <seg>tcpd, tcpdchk, tcpdmatch, try-from, and safe_finger</seg>
     
    159159      </seglistitem>
    160160    </segmentedlist>
    161    
     161
    162162    <variablelist>
    163163      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
    164164      <?dbfo list-presentation="list"?>
    165165      <?dbhtml list-presentation="table"?>
    166      
     166
    167167      <varlistentry id="tcpd">
    168168        <term><command>tcpd</command></term>
     
    176176        </listitem>
    177177      </varlistentry>
    178      
     178
    179179      <varlistentry id="tcpdchk">
    180180        <term><command>tcpdchk</command></term>
     
    187187        </listitem>
    188188      </varlistentry>
    189      
     189
    190190      <varlistentry id="tcpdmatch">
    191191        <term><command>tcpdmatch</command></term>
     
    198198        </listitem>
    199199      </varlistentry>
    200      
     200
    201201      <varlistentry id="try-from">
    202202        <term><command>try-from</command></term>
     
    209209        </listitem>
    210210      </varlistentry>
    211      
     211
    212212      <varlistentry id="safe_finger">
    213213        <term><command>safe_finger</command></term>
     
    220220        </listitem>
    221221      </varlistentry>
    222      
     222
    223223      <varlistentry id="libwrap">
    224224        <term><filename class='libraryfile'>libwrap.[so,a]</filename></term>
     
    232232        </listitem>
    233233      </varlistentry>
    234    
     234
    235235    </variablelist>
    236236
Note: See TracChangeset for help on using the changeset viewer.