Changeset a805e52


Ignore:
Timestamp:
02/10/2012 06:58:04 PM (12 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
98f9ae3
Parents:
6817850
Message:

Add a reference on maintaining a RAID system.
Minor updates to firewall script.
Fix instructions for creating dhclient version of ifconfig.eth0.

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r6817850 ra805e52  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[bdubbs] - Add a reference on maintaining a RAID system.</para>
     49        </listitem>
     50        <listitem>
     51          <para>[bdubbs] - Minor updates to firewall script. Fixes
     52          <ulink url="&blfs-ticket-root;2813">#2813</ulink>.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[bdubbs] - Fix instructions for creating dhclient version of
     56          ifconfig.eth0. Fixes <ulink url="&blfs-ticket-root;3272">#3272</ulink>.</para>
     57        </listitem>
     58        <listitem>
    4859          <para>[ken] - merge metacity-2.34.1 from Wayne, but move it into the gnome
    4960          part of the book because it can no longer be run without the gnome daemons.
  • networking/connect/dhcp-client.xml

    r6817850 ra805e52  
    4949
    5050    <para id="dhclient-config1">Next, create the
    51     <filename>/etc/sysconfig/ifconfig.eth0/dhclient</filename>
     51    <filename>/etc/sysconfig/ifconfig.eth0</filename>
    5252    configuration file with the following commands as the <systemitem
    5353    class="username">root</systemitem> user.  Adjust as
     
    5858    </indexterm>
    5959
    60 <screen role='root'><userinput>install -v -d /etc/sysconfig/ifconfig.eth0 &amp;&amp;
    61 cat &gt; /etc/sysconfig/ifconfig.eth0/dhclient &lt;&lt; "EOF"
     60<screen role='root'><userinput>cat &gt; /etc/sysconfig/ifconfig.eth0 &lt;&lt; "EOF"
    6261<literal>ONBOOT="yes"
    6362IFACE="eth0"
  • postlfs/filesystems/aboutraid.xml

    r6817850 ra805e52  
    176176   <userinput>man mdadm</userinput>.</para>
    177177
     178   <para>Additional details for monitoring RAID arrays and dealing with
     179   problems can be found at the <ulink
     180   url="https://raid.wiki.kernel.org/index.html">Linux RAID
     181   Wiki</ulink>.</para>
     182
    178183  </sect2>
    179184
  • postlfs/security/firewalling.xml

    r6817850 ra805e52  
    330330echo 0 &gt; /proc/sys/net/ipv4/conf/all/accept_redirects
    331331
    332 # Don¹t send Redirect Messages
     332# Don't send Redirect Messages
    333333echo 0 &gt; /proc/sys/net/ipv4/conf/default/send_redirects
    334334
     
    495495          <para>To log and drop invalid packets (packets
    496496          that came in after netfilter's timeout or some types of
    497           network scans):</para>
    498 
    499 <screen><literal>iptables -I INPUT -p tcp -m state --state INVALID \
     497          network scans) insert these rules at the top of the chain:</para>
     498
     499<screen><literal>iptables -I INPUT 0 -p tcp -m state --state INVALID \
    500500  -j LOG --log-prefix "FIREWALL:INVALID "
    501 iptables -I INPUT -p tcp -m state --state INVALID -j DROP</literal></screen>
     501iptables -I INPUT 1 -p tcp -m state --state INVALID -j DROP</literal></screen>
    502502
    503503        </listitem>
Note: See TracChangeset for help on using the changeset viewer.