Changeset 194d47b


Ignore:
Timestamp:
07/15/2023 04:55:57 PM (10 months ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
12.0, 12.1, ken/TL2024, ken/tuningfonts, lazarus, plabs/newcss, python3.11, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/xf86-video-removal
Children:
1248cb2
Parents:
0bb7c72
Message:

Archive ISC DHCP (and dhclient).

It's been succeeded by Kea for the server, and dhcpcd for the client.

Files:
6 edited
1 moved

Legend:

Unmodified
Added
Removed
  • networking/connect/connect.xml

    r0bb7c72 r194d47b  
    3737
    3838  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="dhcpcd.xml"/>
    39   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="dhcp.xml"/>
     39  <!--<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="dhcp.xml"/>-->
    4040  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="kea.xml"/>
    4141
  • networking/connect/kea.xml

    r0bb7c72 r194d47b  
    3030      The <application>ISC Kea</application> package contains the
    3131      server programs for DHCP. It is the successor of the
    32       <xref linkend="dhcp"/> server which is end-of-life since December 2022.
     32      old ISC DHCP server which is end-of-life since December 2022.
    3333    </para>
    3434
  • networking/netprogs/wpa_supplicant.xml

    r0bb7c72 r194d47b  
    382382      <para revision="sysv">
    383383        If your router/access point uses DHCP to allocate IP addresses, you
    384         can install <xref linkend="dhcp"/> client and use it to
     384        can install <xref linkend="dhcpcd" role="nodep"/> and use it to
    385385        automatically obtain network addresses. Create the
    386         <filename>/etc/sysconfig/ifconfig-<replaceable>wifi0</replaceable>
    387         </filename> by running the following command as the
    388         <systemitem class="username">root</systemitem> user:
    389       </para>
    390 
    391 <screen role="root" revision="sysv"><userinput>cat &gt; /etc/sysconfig/ifconfig.<replaceable>wifi0</replaceable> &lt;&lt; "EOF"
    392 <literal>ONBOOT="yes"
    393 IFACE="<replaceable>wlan0</replaceable>"
    394 SERVICE="wpa"
    395 
    396 # Additional arguments to wpa_supplicant
    397 WPA_ARGS=""
    398 
    399 WPA_SERVICE="dhclient"
    400 DHCP_START=""
    401 DHCP_STOP=""
    402 
    403 # Set PRINTIP="yes" to have the script print
    404 # the DHCP assigned IP address
    405 PRINTIP="no"
    406 
    407 # Set PRINTALL="yes" to print the DHCP assigned values for
    408 # IP, SM, DG, and 1st NS. This requires PRINTIP="yes".
    409 PRINTALL="no"</literal>
    410 EOF</userinput></screen>
    411 
    412       <para revision="sysv">
    413         If you prefer <xref linkend="dhcpcd"/> instead of
    414         <xref linkend="dhcp"/> client, then create the
    415386        <filename>/etc/sysconfig/ifconfig-<replaceable>wifi0</replaceable>
    416387        </filename> by running the following command as the
  • networking/netutils/networkmanager.xml

    r0bb7c72 r194d47b  
    9292    <para role="recommended">
    9393      <xref linkend="curl"/>,
    94       <!--<xref linkend="dhcpcd"/> or
    95           DHCPCD support is known to be broken with dhcpcd-9 -->
    96       <xref role="nodep" linkend="dhcp"/> (client only),
     94      <xref linkend="dhcpcd"/>
    9795      <xref linkend="gobject-introspection"/>,
    9896      <xref linkend="iptables"/>,
     
    454452        To use something other than the built-in dhcp client (recommended if
    455453        using only <command>nmcli</command>), use the following configuration
    456         (valid values include either dhclient <!--dhcpcd --> or internal):
     454        (valid values include either dhcpcd or internal):
    457455      </para>
    458456
    459457<screen role="nodump"><userinput>cat &gt; /etc/NetworkManager/conf.d/dhcp.conf &lt;&lt; "EOF"
    460458<literal>[main]
    461 dhcp=</literal><replaceable>dhclient</replaceable>
     459dhcp=</literal><replaceable>dhcpcd</replaceable>
    462460EOF</userinput></screen>
    463461
  • packages.ent

    r0bb7c72 r194d47b  
    650650<!-- Chapter 14 -->
    651651<!ENTITY dhcpcd-version               "10.0.1">
    652 <!ENTITY dhcp-version                 "4.4.3-P1">
     652<!--<!ENTITY dhcp-version                 "4.4.3-P1">-->
    653653<!ENTITY kea-dhcp-version             "2.4.0">
    654654
  • server/other/unbound.xml

    r0bb7c72 r194d47b  
    192192
    193193<screen role="root"><userinput>echo "nameserver 127.0.0.1" > /etc/resolv.conf</userinput></screen>
    194 
    195       <para>
    196         If you are using a DHCP client for connecting to a network,
    197         <filename>/etc/resolv.conf</filename> gets overwritten with values
    198         provided by DHCP server. You can override this, for example in <xref
    199         linkend="dhcp"/>, by running the following command as the <systemitem
    200         class="username">root</systemitem> user:
    201       </para>
    202 
    203 <screen role="root"><userinput>sed -i '/request /i\supersede domain-name-servers 127.0.0.1;' \
    204        /etc/dhcp/dhclient.conf</userinput></screen>
    205194
    206195      <para>
Note: See TracChangeset for help on using the changeset viewer.