Changeset 4839c17


Ignore:
Timestamp:
05/30/2005 04:13:27 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:
9f271dd
Parents:
516640ed
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@4477 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
connect
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • connect/connect.xml

    r516640ed r4839c17  
    88<part id="connect" xreflabel="Connecting to a Network">
    99  <?dbhtml filename="connect.html" dir="connect"?>
    10  
     10
    1111  <title>Connecting to a Network</title>
    12  
     12
    1313  <partintro>
    1414    <para>The LFS book covers setting up networking by connecting to a LAN
     
    1717    the most popular methods in this chapter.</para>
    1818  </partintro>
    19  
    20   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dialup/dialup.xml"/> 
    21   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dhcp/dhcp.xml"/> 
    22   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="other/other.xml"/> 
     19
     20  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dialup/dialup.xml"/>
     21  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dhcp/dhcp.xml"/>
     22  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="other/other.xml"/>
    2323
    2424</part>
  • connect/dhcp/dhcp-client.xml

    r516640ed r4839c17  
    88<sect1 id="dhcp-client" xreflabel="DHCP-&dhcp-version; Client">
    99  <?dbhtml filename="dhcpclient.html"?>
    10  
     10
    1111  <sect1info>
    1212    <othername>$LastChangedBy$</othername>
    1313    <date>$Date$</date>
    1414  </sect1info>
    15  
     15
    1616  <title>DHCP-&dhcp-version; Client</title>
    17  
     17
    1818  <indexterm zone="dhcp-client">
    1919    <primary sortas="b-dhclient">dhclient</primary>
    2020  </indexterm>
    21  
     21
    2222  <para>The <application>DHCP</application> package comes with
    2323  both a client (<command>dhclient</command>) and a server program for
     
    3232  package, return here for information on how to configure the client
    3333  (<command>dhclient</command>).</para>
    34  
     34
    3535  <sect2 role="configuration">
    3636    <title>Configuring DHCP Client</title>
    37  
     37
    3838      <para id="dhclient-service">To configure <command>dhclient</command>,
    3939      you need to first install the network service script,
    40       <filename>/etc/sysconfig/network-devices/services/dhclient</filename> 
     40      <filename>/etc/sysconfig/network-devices/services/dhclient</filename>
    4141      included in the <xref linkend="intro-important-bootscripts"/> package
    4242      (as <systemitem class="username">root</systemitem>):</para>
    43      
     43
    4444      <indexterm zone="dhcp-client dhclient-service">
    4545        <primary sortas="f-dhclient">dhclient (service script)</primary>
    4646      </indexterm>
    47    
     47
    4848<screen role='root'><userinput>make install-service-dhclient</userinput></screen>
    49    
     49
    5050    <para id="dhclient-config1">Next, create the
    5151    <filename>/etc/sysconfig/network-devices/ifconfig.eth0/dhclient</filename>
     
    5353    class="username">root</systemitem> user.  Adjust as
    5454    necessary for additional interfaces:</para>
    55    
     55
    5656    <indexterm zone="dhcp-client dhclient-config1">
    5757      <primary sortas="e-etc-sysconfig-...-dhclient">/etc/sysconfig/.../dhclient</primary>
    5858    </indexterm>
    59    
     59
    6060<screen role='root'><userinput>install -v -d /etc/sysconfig/network-devices/ifconfig.eth0 &amp;&amp;
    6161cat &gt; /etc/sysconfig/network-devices/ifconfig.eth0/dhclient &lt;&lt; "EOF"
     
    6565DHCP_STOP="-q -r <replaceable>[add additional stop parameters here]</replaceable>"</literal>
    6666EOF</userinput></screen>
    67    
     67
    6868    <para>For more information on the appropriate
    69     <envar>DHCP_START</envar> and <envar>DHCP_STOP</envar> 
     69    <envar>DHCP_START</envar> and <envar>DHCP_STOP</envar>
    7070    values, examine the man page for <command>dhclient</command>.</para>
    71    
     71
    7272    <para id="dhclient-config2">Finally, you should create the
    7373    <filename>/etc/dhclient.conf</filename> file using the following commands
    74     as the <systemitem class="username">root</systemitem> user:</para> 
    75    
     74    as the <systemitem class="username">root</systemitem> user:</para>
     75
    7676    <indexterm zone="dhcp-client dhclient-config2">
    7777      <primary sortas="e-etc-dhclient.conf">/etc/dhclient.conf</primary>
    7878    </indexterm>
    79    
     79
    8080    <note>
    8181      <para>You'll need to add a second interface definition to the file if you
    8282      have more than one interface.</para>
    8383    </note>
    84    
     84
    8585<screen role='root'><userinput>cat &gt; /etc/dhclient.conf &lt;&lt; "EOF"
    8686<literal># dhclient.conf
    87    
     87
    8888interface "eth0"{
    8989prepend domain-name-servers 127.0.0.1;
     
    9494# end dhclient.conf</literal>
    9595EOF</userinput></screen>
    96    
     96
    9797  </sect2>
    9898
  • connect/dhcp/dhcp.xml

    r516640ed r4839c17  
    88<chapter id="connect-dhcp">
    99  <?dbhtml filename="dhcp.html"?>
    10  
     10
    1111  <title>DHCP Clients</title>
    12  
     12
    1313  <para>DHCP stands for Dynamic Host Configuration Protocol. It is a protocol
    1414  used by many sites to automatically provide information such as IP addresses,
     
    1616  DHCP, you will need a DHCP client in order to connect to it.
    1717  DHCP is also used by some cable modems.</para>
    18  
     18
    1919  <para>BLFS currently provides installation instructions for
    2020  two DHCP clients, <command>dhclient</command> (from the
     
    2424  <command>network</command> bootscript and the DHCP
    2525  client of your choice.</para>
    26  
    27   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dhcp-client.xml"/> 
    28   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dhcpcd.xml"/> 
     26
     27  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dhcp-client.xml"/>
     28  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dhcpcd.xml"/>
    2929
    3030</chapter>
  • connect/dhcp/dhcpcd.xml

    r516640ed r4839c17  
    1515<sect1 id="dhcpcd" xreflabel="dhcpcd-&dhcpcd-version;">
    1616  <?dbhtml filename="dhcpcd.html"?>
    17  
     17
    1818  <sect1info>
    1919    <othername>$LastChangedBy$</othername>
    2020    <date>$Date$</date>
    2121  </sect1info>
    22  
     22
    2323  <title>Dhcpcd-&dhcpcd-version;</title>
    24  
     24
    2525  <indexterm zone="dhcpcd">
    2626    <primary sortas="a-Dhcpcd">Dhcpcd</primary>
     
    3333    <command>dhcpcd</command> client. This is useful for connecting your computer
    3434    to a network which uses DHCP to assign network addresses.</para>
    35    
     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'>
     
    6363      </listitem>
    6464    </itemizedlist>
    65    
    66   </sect2>
    67  
     65
     66  </sect2>
     67
    6868  <sect2 role="installation">
    6969    <title>Installation of Dhcpcd</title>
     
    7676    --mandir=/usr/share/man &amp;&amp;
    7777make</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>
     
    9797    program into FHS compliance, but more importantly, puts
    9898    files where you expect them to be.</para>
    99    
     99
    100100    <para><parameter>--prefix=""</parameter>: There may be a good reason for
    101101    abandoning the normal BLFS convention of using
     
    109109    <filename class="directory">/usr/sbin</filename>. This command installs to
    110110    <filename class="directory">/sbin</filename>.</para>
    111    
     111
    112112    <para><parameter>--sysconfdir=/var/lib</parameter>: This command installs
    113113    configuration files in the <filename class="directory">/var/lib</filename>
    114114    directory.</para>
    115    
     115
    116116    <para><parameter>--mandir=/usr/share/man</parameter>: This command installs
    117117    the man pages to the <filename class="directory">/usr/share/man</filename>
    118118    directory.</para>
    119    
    120   </sect2>
    121  
     119
     120  </sect2>
     121
    122122  <sect2 role="configuration">
    123123    <title>Configuring Dhcpcd</title>
     
    125125    <sect3 id="dhcpcd-config">
    126126      <title>Config Files</title>
    127      
     127
    128128      <para><filename>/var/lib/dhcpc/*</filename></para>
    129      
     129
    130130      <indexterm zone="dhcpcd dhcpcd-config">
    131131        <primary sortas="e-var-lib-dhcpc">/var/lib/dhcpc/*</primary>
    132132      </indexterm>
    133    
     133
    134134    </sect3>
    135135
     
    142142      included in the <xref linkend="intro-important-bootscripts"/> package
    143143      (as user <systemitem class="username">root</systemitem>):</para>
    144      
     144
    145145      <indexterm zone="dhcpcd dhcpcd-init">
    146146        <primary sortas="f-dhcpcd">dhcpcd (service script)</primary>
     
    151151      <para id="dhcpcd-config2">Finally, as the <systemitem
    152152      class="username">root</systemitem> user create the
    153       <filename>/etc/sysconfig/network-devices/ifconfig.eth0/dhcpcd</filename> 
     153      <filename>/etc/sysconfig/network-devices/ifconfig.eth0/dhcpcd</filename>
    154154      configuration file using the following commands.  Adjust appropriately
    155155      for additional interfaces:</para>
    156      
     156
    157157      <indexterm zone="dhcpcd dhcpcd-config2">
    158158        <primary sortas="e-etc-sysconfig-dhcpcd">/etc/sysconfig/.../dhcpcd</primary>
     
    178178      <envar>DHCP_STOP</envar> values, examine the man page for
    179179      <command>dhcpcd</command>.</para>
    180      
     180
    181181      <note>
    182182        <para id="dhcpcd-config3">The default behavior of
     
    188188        <envar>DHCP_START</envar> value.</para>
    189189      </note>
    190      
     190
    191191      <indexterm zone="dhcpcd dhcpcd-config3">
    192192        <primary sortas="e-etc-resolv.conf">/etc/resolv.conf</primary>
    193193      </indexterm>
    194      
     194
    195195      <indexterm zone="dhcpcd dhcpcd-config3">
    196196        <primary sortas="e-etc-yp.conf">/etc/yp.conf</primary>
    197197      </indexterm>
    198      
     198
    199199      <indexterm zone="dhcpcd dhcpcd-config3">
    200200        <primary sortas="e-etc-ntp.conf">/etc/ntp.conf</primary>
    201201      </indexterm>
    202      
     202
    203203    </sect3>
    204    
    205   </sect2>
    206  
     204
     205  </sect2>
     206
    207207  <sect2 role="content">
    208208    <title>Contents</title>
     
    212212      <segtitle>Installed Libraries</segtitle>
    213213      <segtitle>Installed Directories</segtitle>
    214      
     214
    215215      <seglistitem>
    216216        <seg>dhcpcd</seg>
     
    219219      </seglistitem>
    220220    </segmentedlist>
    221    
     221
    222222    <variablelist>
    223223      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
    224224      <?dbfo list-presentation="list"?>
    225225      <?dbhtml list-presentation="table"?>
    226      
     226
    227227      <varlistentry id="dhcpcd-prog">
    228228        <term><command>dhcpcd</command></term>
     
    236236        </listitem>
    237237      </varlistentry>
    238    
     238
    239239    </variablelist>
    240240
  • connect/dialup/dialup.xml

    r516640ed r4839c17  
    88<chapter id="connect-dialup">
    99  <?dbhtml filename="dialup.html"?>
    10  
     10
    1111  <title>Dial-up Networking</title>
    12  
     12
    1313  <para>This chapter provides utilites for system interaction with a modem.</para>
    14  
    15   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="ppp.xml"/> 
    16   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="wvdial.xml"/> 
     14
     15  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="ppp.xml"/>
     16  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="wvdial.xml"/>
    1717
    1818</chapter>
  • connect/dialup/ppp.xml

    r516640ed r4839c17  
    1515<sect1 id="ppp" xreflabel="PPP-&ppp-version;">
    1616  <?dbhtml filename="ppp.html"?>
    17  
     17
    1818  <sect1info>
    1919    <othername>$LastChangedBy$</othername>
    2020    <date>$Date$</date>
    2121  </sect1info>
    22  
     22
    2323  <title>PPP-&ppp-version;</title>
    24  
     24
    2525  <indexterm zone="ppp">
    2626    <primary sortas="a-PPP">PPP</primary>
     
    2929  <sect2 role="package">
    3030    <title>Introduction to PPP</title>
    31    
     31
    3232    <para>The <application>PPP</application> package contains the
    33     <command>pppd</command> daemon and the <command>chat</command> 
     33    <command>pppd</command> daemon and the <command>chat</command>
    3434    program. This is used for connecting to other machines; often for connecting to
    3535    the Internet via a dial-up or PPPoE connection to an ISP.</para>
    36    
     36
    3737    <bridgehead renderas="sect3">Package Information</bridgehead>
    3838    <itemizedlist spacing="compact">
     
    5656      </listitem>
    5757    </itemizedlist>
    58    
     58
    5959    <bridgehead renderas="sect3">PPP Dependencies</bridgehead>
    60    
     60
    6161    <bridgehead renderas="sect4">Required</bridgehead>
    6262    <para><xref linkend="libpcap"/></para>
    63    
     63
    6464  </sect2>
    65  
     65
    6666  <sect2 role="installation">
    6767    <title>Installation of PPP</title>
     
    7171      compiled into the kernel or available as a kernel module.</para>
    7272    </note>
    73    
     73
    7474    <indexterm zone="ppp ppp-kernel">
    7575      <primary sortas="d-PPP-support">PPP support</primary>
    7676    </indexterm>
    77    
     77
    7878    <para>Install <application>PPP</application> by running the
    7979    following commands:</para>
     
    8383
    8484    <para>This package does not come with a test suite.</para>
    85    
     85
    8686    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    8787
    8888<screen role='root'><userinput>make install &amp;&amp;
    8989make install-etcppp</userinput></screen>
    90    
     90
    9191  </sect2>
    92  
     92
    9393  <sect2 role="commands">
    9494    <title>Command Explanations</title>
     
    9696    <para><command>make install-etcppp</command>: This command puts example
    9797    configuration files in <filename class="directory">/etc/ppp</filename>.</para>
    98    
     98
    9999  </sect2>
    100  
     100
    101101  <sect2 role="configuration">
    102102    <title>Configuring PPP</title>
     
    104104    <sect3 id="ppp-config">
    105105      <title>Config Files</title>
    106      
     106
    107107      <para><filename>/etc/ppp/*</filename></para>
    108      
     108
    109109      <indexterm zone="ppp ppp-config">
    110110        <primary sortas="e-etc-ppp-star">/etc/ppp/*</primary>
    111111      </indexterm>
    112    
     112
    113113    </sect3>
    114    
     114
    115115    <sect3>
    116116      <title>Configuration Information</title>
    117      
     117
    118118      <para>The <application>PPP</application> daemon requires very little
    119119      configuration. The main trick is scripting the connection. This can be done
    120120      either using the <command>chat</command> program which comes with
    121121      this package or by using <xref linkend="wvdial"/>.</para>
    122      
     122
    123123    </sect3>
    124    
     124
    125125  </sect2>
    126  
     126
    127127  <sect2 role="content">
    128128    <title>Contents</title>
     
    132132      <segtitle>Installed Libraries</segtitle>
    133133      <segtitle>Installed Directories</segtitle>
    134      
     134
    135135      <seglistitem>
    136136        <seg>chat, pppd, pppdump, pppoe-discovery and pppstats</seg>
     
    140140      </seglistitem>
    141141    </segmentedlist>
    142    
     142
    143143    <variablelist>
    144144      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
    145145      <?dbfo list-presentation="list"?>
    146146      <?dbhtml list-presentation="table"?>
    147      
     147
    148148      <varlistentry id="chat">
    149149        <term><command>chat</command></term>
     
    158158        </listitem>
    159159      </varlistentry>
    160      
     160
    161161      <varlistentry id="pppd">
    162162        <term><command>pppd</command></term>
     
    168168        </listitem>
    169169      </varlistentry>
    170      
     170
    171171      <varlistentry id="pppdump">
    172172        <term><command>pppdump</command></term>
     
    180180        </listitem>
    181181      </varlistentry>
    182      
     182
    183183      <varlistentry id="pppstats">
    184184        <term><command>pppstats</command></term>
     
    191191        </listitem>
    192192      </varlistentry>
    193    
     193
    194194    </variablelist>
    195195
  • connect/dialup/wvdial.xml

    r516640ed r4839c17  
    1515<sect1 id="wvdial" xreflabel="WvDial-&wvdial-version;">
    1616  <?dbhtml filename="wvdial.html"?>
    17  
     17
    1818  <sect1info>
    1919    <othername>$LastChangedBy$</othername>
    2020    <date>$Date$</date>
    2121  </sect1info>
    22  
     22
    2323  <title>WvDial-&wvdial-version;</title>
    24  
     24
    2525  <indexterm zone="wvdial">
    2626    <primary sortas="a-WvDial">WvDial</primary>
     
    2929  <sect2 role="package">
    3030    <title>Introduction to WvDial</title>
    31    
     31
    3232    <para>The <application>WvDial</application> package contains a no-nonsense,
    3333    quick and easy to use alternative to <command>chat</command> and
     
    3535    without the fuss and hassle of <command>chat</command> issues, then you'll
    3636    want this.</para>
    37    
     37
    3838    <bridgehead renderas="sect3">Package Information</bridgehead>
    3939    <itemizedlist spacing="compact">
     
    5757      </listitem>
    5858    </itemizedlist>
    59    
     59
    6060    <bridgehead renderas="sect3">WvDial Dependencies</bridgehead>
    61    
     61
    6262    <bridgehead renderas="sect4">Required</bridgehead>
    6363    <para><xref linkend="wvstreams"/> and <xref linkend="ppp"/></para>
    64    
     64
    6565  </sect2>
    66  
     66
    6767  <sect2 role="installation">
    6868    <title>Installation of WvDial</title>
     
    7272
    7373<screen><userinput>make PREFIX=/usr</userinput></screen>
    74    
     74
    7575    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    76    
     76
    7777<screen role="root"><userinput>make PREFIX=/usr install</userinput></screen>
    78    
     78
    7979  </sect2>
    80  
     80
    8181  <sect2 role="configuration">
    8282    <title>Configuring WvDial</title>
     
    8484    <sect3 id="wvdial-config">
    8585      <title>Config Files</title>
    86      
     86
    8787      <para><filename>/etc/wvdial.conf</filename> and
    8888      <filename>/etc/ppp/peers/*</filename></para>
    89      
     89
    9090      <indexterm zone="wvdial wvdial-config">
    9191        <primary sortas="e-etc-wvdial.conf">/etc/wvdial.conf</primary>
    9292      </indexterm>
    93      
     93
    9494      <indexterm zone="wvdial wvdial-config">
    9595        <primary sortas="e-etc-ppp-peers">/etc/ppp/peers/*</primary>
    9696      </indexterm>
    97    
     97
    9898    </sect3>
    99    
     99
    100100    <sect3>
    101101      <title>Configuration Information</title>
     
    111111      ISP's phone number, login name and password into the
    112112      <filename>/etc/wvdial.conf</filename> file.</para>
    113      
     113
    114114      <para>You then start <command>wvdial</command> with:</para>
    115115
     
    122122      Non-Root Dial Out HOWTO</ulink> if you want to give non-root users
    123123      access to <command>wvdial</command>.</para>
    124      
     124
    125125    </sect3>
    126    
     126
    127127  </sect2>
    128  
     128
    129129  <sect2 role="content">
    130130    <title>Contents</title>
     
    134134      <segtitle>Installed Libraries</segtitle>
    135135      <segtitle>Installed Directory</segtitle>
    136      
     136
    137137      <seglistitem>
    138138        <seg>wvdial and wvdialconf</seg>
     
    141141      </seglistitem>
    142142    </segmentedlist>
    143    
     143
    144144    <variablelist>
    145145      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
    146146      <?dbfo list-presentation="list"?>
    147147      <?dbhtml list-presentation="table"?>
    148      
     148
    149149      <varlistentry id="wvdial-prog">
    150150        <term><command>wvdial</command></term>
     
    156156        </listitem>
    157157      </varlistentry>
    158      
     158
    159159      <varlistentry id="wvdialconf">
    160160        <term><command>wvdialconf</command></term>
     
    167167        </listitem>
    168168      </varlistentry>
    169    
     169
    170170    </variablelist>
    171171
  • connect/other/other.xml

    r516640ed r4839c17  
    88<chapter id="connect-other">
    99  <?dbhtml filename="other.html"?>
    10  
     10
    1111  <title>Other Connections</title>
    12  
     12
    1313  <para>Other methods to connect to large networks are through ISDN
    1414  and PPPoE interfaces, among others. PPPoE is discussed here. 
    1515  Pages written for ISDN (or others as the need arises) are always welcome
    1616  and will be included in future books, if available.</para>
    17  
    18   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="pppoe.xml"/> 
     17
     18  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="pppoe.xml"/>
    1919
    2020</chapter>
  • connect/other/pppoe.xml

    r516640ed r4839c17  
    1515<sect1 id="pppoe" xreflabel="RP-PPPoE-&pppoe-version;">
    1616  <?dbhtml filename="pppoe.html"?>
    17  
     17
    1818  <sect1info>
    1919    <othername>$LastChangedBy$</othername>
    2020    <date>$Date$</date>
    2121  </sect1info>
    22  
     22
    2323  <title>RP-PPPoE-&pppoe-version;</title>
    24  
     24
    2525  <indexterm zone="pppoe">
    2626    <primary sortas="a-RP-PPPoE">RP-PPPoE</primary>
     
    2929  <sect2 role="package">
    3030    <title>Introduction to RP-PPPoE</title>
    31    
    32     <para>The Roaring Penguin <application>PPPoE</application> 
     31
     32    <para>The Roaring Penguin <application>PPPoE</application>
    3333    package contains both a client and a server component that works with the
    3434    client. The client allows you to connect to large networks that use the
     
    3636    runs alongside the client, allowing you to configure other clients that send
    3737    out a configuration request.</para>
    38    
     38
    3939    <bridgehead renderas="sect3">Package Information</bridgehead>
    4040    <itemizedlist spacing="compact">
     
    5858      </listitem>
    5959    </itemizedlist>
    60    
     60
    6161    <bridgehead renderas="sect3">RP-PPPoE Dependencies</bridgehead>
    62    
     62
    6363    <bridgehead renderas="sect4">Required</bridgehead>
    6464    <para><xref linkend="ppp"/> and
     
    6767    utilize <application>IPRoute2</application>: <ulink
    6868    url="&patch-root;/rp-pppoe-&pppoe-version;-iproute2-1.patch"/>)</para>
    69    
    70   </sect2>
    71  
     69
     70  </sect2>
     71
    7272  <sect2 role="installation">
    7373    <title>Installation of RP-PPPoE</title>
     
    7979      <filename>rp-pppoe-&pppoe-version;/doc/KERNEL-MODE-PPPOE</filename>.</para>
    8080    </note>
    81    
     81
    8282    <indexterm zone="pppoe pppoe-kernel">
    8383      <primary sortas="d-Kernel-mode-PPPoE">Kernel-mode PPPoE</primary>
    8484    </indexterm>
    85    
     85
    8686    <para>Fix the location of the logger executable in several ADSL scripts:</para>
    8787
     
    9696
    9797    <para>This package does not come with a test suite.</para>
    98    
     98
    9999    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    100    
     100
    101101<screen role="root"><userinput>make install</userinput></screen>
    102    
    103   </sect2>
    104  
     102
     103  </sect2>
     104
    105105  <sect2 role="commands">
    106106    <title>Command Explanations</title>
     
    111111    run the same commands, which are then immediately followed by the
    112112    <command>adsl-setup</command> script.</para>
    113    
    114   </sect2>
    115  
     113
     114  </sect2>
     115
    116116  <sect2 role="configuration">
    117117    <title>Configuring RP-PPPoE</title>
     
    119119    <sect3 id="pppoe-config">
    120120      <title>Config Files</title>
    121      
     121
    122122      <para><filename>/etc/ppp/pppoe.conf</filename>,
    123123      <filename>/etc/ppp/firewall-standalone</filename>,
     
    127127      <filename>/etc/ppp/pap-secrets</filename>,
    128128      <filename>/etc/ppp/chap-secrets</filename></para>
    129      
     129
    130130      <indexterm zone="pppoe pppoe-config">
    131131        <primary sortas="e-etc-ppp-pppoe.conf">/etc/ppp/pppoe.conf</primary>
    132132      </indexterm>
    133      
     133
    134134      <indexterm zone="pppoe pppoe-config">
    135135        <primary sortas="e-etc-ppp-firewall-standalone">/etc/ppp/firewall-standalone</primary>
    136136      </indexterm>
    137      
     137
    138138      <indexterm zone="pppoe pppoe-config">
    139139        <primary sortas="e-etc-ppp-firewall-masq">/etc/ppp/firewall-masq</primary>
    140140      </indexterm>
    141      
     141
    142142      <indexterm zone="pppoe pppoe-config">
    143143        <primary sortas="e-etc-ppp-pppoe-server-options">/etc/ppp/pppoe-server-options</primary>
    144144      </indexterm>
    145      
     145
    146146      <indexterm zone="pppoe pppoe-config">
    147147        <primary sortas="e-etc-resolv.conf">/etc/resolv.conf</primary>
    148148      </indexterm>
    149      
     149
    150150      <indexterm zone="pppoe pppoe-config">
    151151        <primary sortas="e-etc-ppp-pap-secrets">/etc/ppp/pap-secrets</primary>
    152152      </indexterm>
    153      
     153
    154154      <indexterm zone="pppoe pppoe-config">
    155155        <primary sortas="e-etc-ppp-chap-secrets">/etc/ppp/chap-secrets</primary>
    156156      </indexterm>
    157    
     157
    158158    </sect3>
    159159
     
    163163      <para>To configure <application>RP-PPPoE</application> after installation,
    164164      you should run the <command>adsl-setup</command> script.</para>
    165      
     165
    166166      <para>When configuring your connection, you will need to have your
    167167      ISP's nameserver information available, as well as your
     
    175175      <para id="pppoe-init"><emphasis>Optionally</emphasis> install the
    176176      <filename>/etc/sysconfig/network-devices/services/pppoe</filename> service
    177       script included with the <xref linkend="intro-important-bootscripts"/> 
     177      script included with the <xref linkend="intro-important-bootscripts"/>
    178178      package (as user <systemitem class="username">root</systemitem>).</para>
    179      
     179
    180180      <indexterm zone="pppoe pppoe-init">
    181181        <primary sortas="f-pppoe-service-script">pppoe (service script)</primary>
     
    187187      <filename>pppoe</filename> service script (as user <systemitem
    188188      class="username">root</systemitem>):</para>
    189      
     189
    190190      <indexterm zone="pppoe pppoe-config2">
    191191        <primary sortas="e-etc-sysconfig-pppoe">/etc/sysconfig/.../pppoe</primary>
    192192      </indexterm>
    193      
     193
    194194      <note>
    195195        <para>If you have previously configured the network interface that
     
    197197        configuration files for that interface (as user <systemitem
    198198        class="username">root</systemitem>):</para>
    199      
     199
    200200<screen role='root'><userinput>rm -v /etc/sysconfig/network-devices/ifconfig.eth0/*</userinput></screen>
    201201      </note>
     
    209209      <!-- A TYPE="[user/kernel]" will be added at a later date when kernel
    210210      mode pppoe is described here. -->
    211      
     211
    212212    </sect3>
    213    
    214   </sect2>
    215  
     213
     214  </sect2>
     215
    216216  <sect2 role="content">
    217217    <title>Contents</title>
     
    221221      <segtitle>Installed Libraries</segtitle>
    222222      <segtitle>Installed Directories</segtitle>
    223      
     223
    224224      <seglistitem>
    225225        <seg>adsl-connect, adsl-setup, adsl-start, adsl-status, adsl-stop, pppoe,
     
    229229      </seglistitem>
    230230    </segmentedlist>
    231    
     231
    232232    <variablelist>
    233233      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
    234234      <?dbfo list-presentation="list"?>
    235235      <?dbhtml list-presentation="table"?>
    236      
     236
    237237      <varlistentry id="adsl-connect">
    238238        <term><command>adsl-connect</command></term>
     
    245245        </listitem>
    246246      </varlistentry>
    247      
     247
    248248      <varlistentry id="adsl-setup">
    249249        <term><command>adsl-setup</command></term>
     
    256256        </listitem>
    257257      </varlistentry>
    258      
     258
    259259      <varlistentry id="adsl-start">
    260260        <term><command>adsl-start</command></term>
     
    267267        </listitem>
    268268      </varlistentry>
    269      
     269
    270270      <varlistentry id="adsl-status">
    271271        <term><command>adsl-status</command></term>
     
    278278        </listitem>
    279279      </varlistentry>
    280      
     280
    281281      <varlistentry id="adsl-stop">
    282282        <term><command>adsl-stop</command></term>
     
    288288        </listitem>
    289289      </varlistentry>
    290      
     290
    291291      <varlistentry id="pppoe-prog">
    292292        <term><command>pppoe</command></term>
     
    299299        </listitem>
    300300      </varlistentry>
    301      
     301
    302302      <varlistentry id="pppoe-relay">
    303303        <term><command>pppoe-relay</command></term>
     
    309309        </listitem>
    310310      </varlistentry>
    311      
     311
    312312      <varlistentry id="pppoe-server">
    313313        <term><command>pppoe-server</command></term>
     
    319319        </listitem>
    320320      </varlistentry>
    321      
     321
    322322      <varlistentry id="pppoe-sniff">
    323323        <term><command>pppoe-sniff</command></term>
     
    330330        </listitem>
    331331      </varlistentry>
    332    
     332
    333333    </variablelist>
    334334
Note: See TracChangeset for help on using the changeset viewer.