git: 02cecc3985 - main - handbook: Update references of isc-dhcp43 to isc-dhcp44

From: Danilo G. Baio <dbaio_at_FreeBSD.org>
Date: Sat, 16 Apr 2022 14:35:19 UTC
The branch main has been updated by dbaio:

URL: https://cgit.FreeBSD.org/doc/commit/?id=02cecc39854a2942ab359882d261c8a816165bae

commit 02cecc39854a2942ab359882d261c8a816165bae
Author:     Danilo G. Baio <dbaio@FreeBSD.org>
AuthorDate: 2022-04-16 14:19:48 +0000
Commit:     Danilo G. Baio <dbaio@FreeBSD.org>
CommitDate: 2022-04-16 14:24:15 +0000

    handbook: Update references of isc-dhcp43 to isc-dhcp44
    
    Submitted by:   coffeesalt
    Pull Request:   https://github.com/freebsd/freebsd-doc/pull/63
    Pull Request:   https://github.com/freebsd/freebsd-doc/pull/64
---
 .../content/en/books/handbook/advanced-networking/_index.adoc       | 2 +-
 documentation/content/en/books/handbook/network-servers/_index.adoc | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/documentation/content/en/books/handbook/advanced-networking/_index.adoc b/documentation/content/en/books/handbook/advanced-networking/_index.adoc
index cc18f93b75..8d30e5e8a0 100644
--- a/documentation/content/en/books/handbook/advanced-networking/_index.adoc
+++ b/documentation/content/en/books/handbook/advanced-networking/_index.adoc
@@ -2651,7 +2651,7 @@ If your archives do not fit, which is usually the case for [.filename]#/var# whe
 
 The DHCP server does not need to be the same machine as the TFTP and NFS server, but it needs to be accessible in the network.
 
-DHCP is not part of the FreeBSD base system but can be installed using the package:net/isc-dhcp43-server[] port or package.
+DHCP is not part of the FreeBSD base system but can be installed using the package:net/isc-dhcp44-server[] port or package.
 
 Once installed, edit the configuration file, [.filename]#/usr/local/etc/dhcpd.conf#.
 Configure the `next-server`, `filename`, and `root-path` settings as seen in this example:
diff --git a/documentation/content/en/books/handbook/network-servers/_index.adoc b/documentation/content/en/books/handbook/network-servers/_index.adoc
index 4635cdab78..3bc99dd05b 100644
--- a/documentation/content/en/books/handbook/network-servers/_index.adoc
+++ b/documentation/content/en/books/handbook/network-servers/_index.adoc
@@ -1793,9 +1793,9 @@ The DHCP client keeps a database of valid leases in this file, which is written
 === Installing and Configuring a DHCP Server
 
 This section demonstrates how to configure a FreeBSD system to act as a DHCP server using the Internet Systems Consortium (ISC) implementation of the DHCP server.
-This implementation and its documentation can be installed using the package:net/isc-dhcp43-server[] package or port.
+This implementation and its documentation can be installed using the package:net/isc-dhcp44-server[] package or port.
 
-The installation of package:net/isc-dhcp43-server[] installs a sample configuration file.
+The installation of package:net/isc-dhcp44-server[] installs a sample configuration file.
 Copy [.filename]#/usr/local/etc/dhcpd.conf.example# to [.filename]#/usr/local/etc/dhcpd.conf# and make any edits to this new file.
 
 The configuration file is comprised of declarations for subnets and hosts which define the information that is provided to DHCP clients.
@@ -1872,7 +1872,7 @@ Refer to dhcpd.leases(5), which gives a slightly longer description.
 * [.filename]#/usr/local/sbin/dhcrelay#
 +
 This daemon is used in advanced environments where one DHCP server forwards a request from a client to another DHCP server on a separate network.
-If this functionality is required, install the package:net/isc-dhcp43-relay[] package or port.
+If this functionality is required, install the package:net/isc-dhcp44-relay[] package or port.
 The installation includes dhcrelay(8) which provides more detail.