aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/en/books/handbook/network-servers/_index.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/content/en/books/handbook/network-servers/_index.adoc')
-rw-r--r--documentation/content/en/books/handbook/network-servers/_index.adoc14
1 files changed, 7 insertions, 7 deletions
diff --git a/documentation/content/en/books/handbook/network-servers/_index.adoc b/documentation/content/en/books/handbook/network-servers/_index.adoc
index dba07a8e2c..d7ac579d4f 100644
--- a/documentation/content/en/books/handbook/network-servers/_index.adoc
+++ b/documentation/content/en/books/handbook/network-servers/_index.adoc
@@ -96,14 +96,14 @@ Each line of this configuration file represents an application which can be star
By default, every line starts with a comment (`+#+`), meaning that inetd is not listening for any applications.
To configure inetd to listen for an application's connections, remove the `+#+` at the beginning of the line for that application.
-After saving your edits, configure inetd to start at system boot by editing [.filename]#/etc/rc.conf#:
+After saving the edits, configure inetd to start at system boot by editing [.filename]#/etc/rc.conf#:
[.programlisting]
....
inetd_enable="YES"
....
-To start inetd now, so that it listens for the service you configured, type:
+To start inetd now, so that it listens for the configured service, type:
[source,shell]
....
@@ -319,11 +319,11 @@ The examples can be modified to match the file systems and client names on the r
There are many options that can be used in this file, but only a few will be mentioned here.
See man:exports[5] for the full list of options.
-This example shows how to export [.filename]#/cdrom# to three hosts named _alpha_, _bravo_, and _charlie_:
+This example shows how to export [.filename]#/media# to three hosts named _alpha_, _bravo_, and _charlie_:
[.programlisting]
....
-/cdrom -ro alpha bravo charlie
+/media -ro alpha bravo charlie
....
The `-ro` flag makes the file system read-only, preventing clients from making any changes to the exported file system.
@@ -1249,7 +1249,7 @@ default:\
In this example, the system is using the DES format for password hashing.
Other possible values include `blf` for Blowfish, `md5` for MD5, `sha256` and `sha512` for SHA-256 and SHA-512 respectively.
-For more information and the up to date list of what is available on your system, consult the man:crypt[3] manpage.
+For more information and the up to date list of what is available on the system, consult the man:crypt[3] manpage.
If the format on a host needs to be edited to match the one being used in the NIS domain, the login capability database must be rebuilt after saving the change:
@@ -2618,7 +2618,7 @@ On FreeBSD, the built-in ntpd can be used to synchronize a system's clock.
ntpd is configured using man:rc.conf[5] variables and [.filename]#/etc/ntp.conf#, as detailed in the following sections.
ntpd communicates with its network peers using UDP packets.
-Any firewalls between your machine and its NTP peers must be configured to allow UDP packets in and out on port 123.
+Any firewalls between the machine and its NTP peers must be configured to allow UDP packets in and out on port 123.
==== The [.filename]#/etc/ntp.conf# file
@@ -2732,7 +2732,7 @@ The presence of any of the following keywords in [.filename]#ntp.conf# requires
* logdir
* statsdir
-To manually configure ntpd to run as user `ntpd` you must:
+To manually configure ntpd to run as user `ntpd`:
* Ensure that the `ntpd` user has access to all the files and directories specified in the configuration.
* Arrange for the `mac_ntpd` module to be loaded or compiled into the kernel. See man:mac_ntpd[4] for details.