diff --git a/docs/guides/network/librenms_monitoring_server.md b/docs/guides/network/librenms_monitoring_server.md
index 3f2df2155c..c1230d3a4d 100644
--- a/docs/guides/network/librenms_monitoring_server.md
+++ b/docs/guides/network/librenms_monitoring_server.md
@@ -12,42 +12,41 @@ tags:
## Introduction
-Network and systems administrators almost always need some form of monitoring. This can include graphing bandwidth usage at router end points, monitoring the status of services running on various servers, and much more. There are many monitoring options out there, but one good option with many, if not all, of the monitoring components available under one roof, is LibreNMS.
+Network and systems administrators almost always need some form of monitoring. This can include graphing bandwidth usage at router end points, monitoring the status of services running on various servers, and much more. Many monitoring options exist, but one good option with many, if not all, of the monitoring components available under one roof, is LibreNMS.
-This document is just a starting point for LibreNMS. We will point you to the project's excellent (and extensive) documentation for more options. There are many other monitoring options out there that this author has used before, Nagios and Cacti being two, but LibreNMS offers what those two projects offer individually, in one spot.
+This document is just a starting point for LibreNMS. The author will point you to the project's excellent (and extensive) documentation for more options. The author has used many other monitoring solutions, Nagios and Cacti being two, but LibreNMS offers what those two projects offer individually in one spot.
-While the installation will closely follow the [official install instructions found here](https://docs.librenms.org/Installation/Install-LibreNMS/), we have added some explanation and minor changes, which make this procedure preferable to that excellent document.
+The installation will closely follow the [official install instructions found here](https://docs.librenms.org/Installation/Install-LibreNMS/). Explanations and minor changes to that procedure, make this procedure preferable to that excellent document.
-## Prerequisites, Assumptions and Conventions
+## Prerequisites, assumptions, and conventions
-* A server or container (yes, LibreNMS will run in a container, however, if you a great deal to monitor, your best bet would be to install on stand-alone hardware) running Rocky Linux. All commands assume a fresh install of Rocky Linux.
-* Assumption: that you can run commands as root or can _sudo_ to do so
+* A server or container (yes, LibreNMS will run in a container. If you have a great deal to monitor, your best bet would be to install on stand-alone hardware) running Rocky Linux. All commands assume a fresh install of Rocky Linux.
+* Assumption: that you can run commands as root or can _sudo_ to elevate privileges
* Working knowledge of command-line tools, including text editors such as _vi_
-* We are assuming the use of SNMP v2. If you want to use SNMP v3, it is supported by LibreNMS and will work. You will need to switch up the SNMP configuration and options on your devices to match up to v3.
-* While we have included the SELinux procedure in this document, the container we use in the lab does not include it by default. For this reason, the SELinux procedure has **not** been lab tested.
-* Throughout this document, the examples use the _vi_ editor as mentioned. When the document says to save your changes and exit, this is done with `SHIFT:wq!`
+* Assumption: the use of SNMP v2. If you want to use SNMP v3, LibreNMS supports it and will work. You will need to switch up the SNMP configuration and options on your devices to match up to v3.
+* Included here is the SELinux procedure. The container the author uses in the lab does not include it by default. For this reason, the SELinux procedure has **not** been lab tested.
+* Throughout this document, the examples use the _vi_ editor. When the document says to save your changes and exit, use SHIFT+:+wq!.
* The procedure requires some troubleshooting skills, including log monitoring, web testing, and more
-## Installing Packages
+## Installing packages
-These commands should be entered as the root user. Before we begin, note that this installation procedure focuses on *httpd*, rather than *nginx*. If you prefer the latter, follow the [Librenms Install Instructions](https://docs.librenms.org/Installation/Install-LibreNMS/) and guide there.
-
-We are assuming a fresh install, so we must do a few things with the repositories before continuing. First, we need to install the EPEL repository (Extra Packages for Enterprise Linux):
+Enter these commands as the root user. Before starting, note that this installation procedure focuses on *httpd*, rather than *nginx*. If you prefer the latter, follow the [Librenms Install Instructions](https://docs.librenms.org/Installation/Install-LibreNMS/) and guide there.
+First, install the EPEL repository (Extra Packages for Enterprise Linux):
```
dnf install -y epel-release
```
-The current version of LibreNMS requires a minimum PHP version of 8.1. The default package in Rocky Linux 9.0 is PHP 8.0, so you must enable a third party repository (also in Rocky Linux 8.6) for this newer version.
+The current version of LibreNMS requires a minimum PHP version of 8.1. Rocky Linux 9.0 has PHP 8.0. Enable a third-party repository (also in Rocky Linux 8.6) for this newer version.
-We will install the REMI repository for this. The version of the repository you install will depend on the version of Rocky Linux you are running. We are assuming version 9 below, but change this accordingly for the version you are running:
+The version of the repository you install will depend on the version of Rocky Linux you are running. The assumption is version 9, but change this accordingly for the version you are running:
```
dnf install http://rpms.remirepo.net/enterprise/remi-release-9.rpm
```
-Once both the EPEL and REMI repositories are installed, it's time to install the packages we will need:
+Once both the EPEL and REMI repositories are installed, it is time to install the packages:
```
dnf install bash-completion cronie fping git httpd ImageMagick mariadb-server mtr net-snmp net-snmp-utils nmap php81-php-fpm php81-php-cli php81-php-common php81-php-curl php81-php-gd php81-php-json php81-php-mbstring php81-php-process php81-php-snmp php81-php-xml php81-php-zip php81-php-mysqlnd python3 python3-PyMySQL python3-redis python3-memcached python3-pip python3-systemd rrdtool unzip wget
@@ -55,31 +54,31 @@ dnf install bash-completion cronie fping git httpd ImageMagick mariadb-server mt
All of these packages represent some portion of the LibreNMS feature set.
-## Setting Up The librenms User
+## Setting up the 'librenms' user
-To do this, copy and paste (or type) the following:
+Copy and paste (or enter) the following:
```
useradd librenms -d /opt/librenms -M -r -s "$(which bash)"
```
-With this command, we are setting the default directory for our new user to "/opt/librenms" however the "-M" option says "don't create the directory." The reason, of course, is that we will be creating it when we install LibreNMS. The "-r" says to make this user a system account and the "-s" says to set the shell (in this case, to "bash")
+This command sets the default directory for the user to `/opt/librenms` however the `-M` option says "do not create the directory." The reason is that this happens upon LibreNMS's install. The `-r` says to make this user a system account and the `-s` says to set the shell (in this case, to "bash").
-## Download LibreNMS and Set Permissions
+## Download LibreNMS and set permissions
-The downloading is all done through git. You may be familiar with the process as it is used for many projects. First, switch over to the /opt directory:
+Git facilitates the Download. You might be familiar with the process. First, switch over to the `/opt` directory:
```
cd /opt
```
-Then clone the repository:
+Clone the repository:
```
git clone https://github.com/librenms/librenms.git
```
-Next change permissions for the directory:
+Change permissions for the directory:
```
chown -R librenms:librenms /opt/librenms
@@ -88,86 +87,86 @@ setfacl -d -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstra
setfacl -R -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/
```
-The _setfacl_ command stands for "set file access control lists" and is another way of securing directories and files.
+The `setfacl` command stands for "set file access control lists" and is another way of securing directories and files.
-## Install PHP Dependencies As librenms
+## Install PHP dependencies as `librenms`
-All of the above commands were executed as root or _sudo_, but the PHP dependencies within LibreNMS need to be installed as the librenms user. To do this, run:
+The PHP dependencies within LibreNMS need installation with the `librenms` user. To do this, run:
```
su - librenms
```
-And then enter the following:
+Enter the following:
```
./scripts/composer_wrapper.php install --no-dev
```
-Once the script is completed, exit back to root:
+Exit back to root:
```
exit
```
-### Failure Of PHP Dependency Install Workaround
+### Failure Of PHP dependency install workaround
-LibreNMS documentation says that the above procedure may fail when you are behind a proxy server. I have found that it can fail for other reasons also. For this reason, I have added a procedure for installing Composer later.
+LibreNMS documentation says that the above procedure might fail when you are behind a proxy server. It can fail for other reasons also. For this reason, a procedure for installing Composer comes later.
-## Set Timezone
+## Set timezone
-We need to ensure the correct setting for the system and PHP. You can find a list of [valid timezone settings for PHP here](https://php.net/manual/en/timezones.php). For instance, for the Central timezone, a common entry would be "America/Chicago". Let's start by editing the php.ini file:
+You need to ensure the correct setting for the system and PHP. You can find a list of [valid timezone settings for PHP here](https://php.net/manual/en/timezones.php). For instance, for the Central timezone, a common entry is "America/Chicago". Start by editing the `php.ini` file:
```
vi /etc/opt/remi/php81/php.ini
```
-Find the `date.timezone` line and modify it. Note that it is remarked out, so remove the ";" from the beginning of the line and add your timezone after the "=" sign. For our Central timezone example we will use:
+Find the `date.timezone` line and modify it. Note that it is remarked out, so remove the ";" from the beginning of the line and add your timezone after the "=" sign. For the Central timezone example use:
```
date.timezone = America/Chicago
```
-Save your changes and exit the php.ini file.
+Save your changes and exit the `php.ini` file.
-We also need to make sure that the system timezone is correct. Again, using our Central timezone as the example, we would do this with:
+You also need to ensure that the system timezone is correct. Using the Central timezone example, do this with:
```
timedatectl set-timezone America/Chicago
```
-## MariaDB Setup
+## MariaDB setup
-Before we get into the database setup required for LibreNMS, run through the [MariaDB procedure](../database/database_mariadb-server.md) and specifically the section for "Securing mariadb-server", and then come back here for these specific settings. The first thing we need to do is modify the mariadb-server.cnf file:
+Before starting the database requirements for LibreNMS, run through the [MariaDB procedure](../database/database_mariadb-server.md), specifically the section for "Securing mariadb-server", and return here for these specific settings. Change the `mariadb-server.cnf` file:
```
vi /etc/my.cnf.d/mariadb-server.cnf
```
-And add the following lines to the "[Mysqld]" section:
+Add these lines to the "[Mysqld]" section:
```
innodb_file_per_table=1
lower_case_table_names=0
```
-Then enable and restart the mariadb server:
+Then enable and restart the `mariadb` server:
```
systemctl enable mariadb
systemctl restart mariadb
```
-Now gain access to mariadb as the root user. Remember to use the password that you created when following the "Securing mariadb-server" section that you performed above:
+Access `mariadb` as the root user. Remember to use the password that you created when following the "Securing mariadb-server" section performed earlier:
```
mysql -u root -p
```
-The next thing we need to do is make some specific changes for LibreNMS. With the command below, remember to change the password "password" to something secure and document what that is in a safe spot, such as a password manager, so that you will have it later.
+Make some specific changes for LibreNMS. With the command below, remember to change the password "password" to something secure and document what that is in a safe spot.
-At the mysql prompt run:
+At the `mysql` prompt run:
```
CREATE DATABASE librenms CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
@@ -176,17 +175,17 @@ GRANT ALL PRIVILEGES ON librenms.* TO 'librenms'@'localhost';
FLUSH PRIVILEGES;
```
-Once you've done this, type "exit" to exit back out of mariadb.
+Enter "exit" to exit out of `mariadb`.
## Configure PHP-FPM
-This section is basically unchanged from the official documentation except for the path to the files. First, copy the www.conf:
+This is basically unchanged from the official documentation except for the path to the files. First, copy the `www.conf`:
```
cp /etc/opt/remi/php81/php-fpm.d/www.conf /etc/opt/remi/php81/php-fpm.d/librenms.conf
```
-Next modify the librenms.conf file:
+Change the `librenms.conf` file:
```
vi /etc/opt/remi/php81/php-fpm.d/librenms.conf
@@ -201,31 +200,27 @@ user = librenms
group = librenms
```
-And finally change the "listen" line to reflect a unique name:
+Change the "listen" line to reflect a unique name:
```
listen = /run/php-fpm-librenms.sock
```
-Save your changes and exit the file. If this is the only web service that will be running on this machine, feel free to remove the old www.conf file that we copied:
+Save your changes and exit the file. If this is the only web service that will be running on this machine, you can remove the old www.conf file you copied:
```
rm -f /etc/opt/remi/php81/php-fpm.d/www.conf
```
-## Configure Apache
-
-Normally, we would use the [Apache sites-enabled](../web/apache-sites-enabled.md) procedure to set up any web services, but in this case, we are just going with the default setup.
-
-Note that if you want to use that procedure, you simply need to place the configuration file in /etc/httpd/sites-available and then follow the procedure to link it to sites-enabled. The default document root, however, would **not** be /var/www/sub-domains/librenms/html, but instead it would be /opt/librenms/html.
+## Configure `httpd`
-Again, in this case we aren't using that procedure and just going with the default, suggested setup. To do this, start by creating this file:
+Start by creating this file:
```
vi /etc/httpd/conf.d/librenms.conf
```
-And placing the following in that file:
+Enter the following in that file:
```
@@ -250,13 +245,13 @@ And placing the following in that file:
```
-You should also remove the old default site, welcome.conf:
+You should remove the old default site, `welcome.conf`:
```
rm /etc/httpd/conf.d/welcome.conf
```
-Finally, we need to enable both _httpd_ and _php-fpm_:
+Enable `httpd` and `php-fpm`:
```
systemctl enable --now httpd
@@ -265,17 +260,17 @@ systemctl enable --now php81-php-fpm
## SELinux
-Please note that if you don't plan on using SELinux, skip this and head to the next section. This might also apply to you if you use LibreNMS on a container that does not support SELinux at the container level, or does not include it by default.
+If you do not plan to use SELinux, skip to the next section. This might also apply to you if you use LibreNMS on a container that does not support SELinux at the container level, or does not include it by default.
-To setup everything with SELinux, you'll need an additional package installed:
+To setup everything with SELinux, you will need an additional package installed:
```
dnf install policycoreutils-python-utils
```
-### Configure LibreNMS Contexts
+### Configure LibreNMS contexts
-You'll need to set the following contexts for LibreNMS to work properly with SELinux:
+You will need to set the following contexts for LibreNMS to work properly with SELinux:
```
semanage fcontext -a -t httpd_sys_content_t '/opt/librenms/html(/.*)?'
@@ -286,9 +281,9 @@ setsebool -P httpd_execmem 1
chcon -t httpd_sys_rw_content_t /opt/librenms/.env
```
-### Allow fping
+### Allow `fping`
-Create a file called `http_fping.tt` anywhere and it will be installed via a command later. The contents of this file are:
+Create a file called `http_fping.tt` anywhere. It does not matter where. Installing this happens next. The contents of this file are:
```
module http_fping 1.0;
@@ -304,7 +299,7 @@ allow httpd_t self:capability net_raw;
allow httpd_t self:rawip_socket { getopt create setopt write read };
```
-Now install the contents of this file with the following commands:
+Install this file with the following commands:
```
checkmodule -M -m -o http_fping.mod http_fping.tt
@@ -318,54 +313,54 @@ If you run into problems and you suspect it might be due to an SELinux issue, ru
audit2why < /var/log/audit/audit.log
```
-## Firewall Configuration - `firewalld`
+## `firewalld` configuration
-We will include the _firewalld_ instructions from the official documentation.
+The `firewalld` instructions follow the official documentation.
-The command to use for _firewalld_ allow rules are as follows:
+The command to use for `firewalld` allow rules are as follows:
```
firewall-cmd --zone public --add-service http --add-service https
firewall-cmd --permanent --zone public --add-service http --add-service https
```
-The author has problems with this sort of simplistic _firewalld_ rule set. This rule allows your web services to be open to the world, but is that what you want for a monitoring server?
+The author has problems with this sort of simplistic `firewalld` rule set. This rule allows your web services to be open to the world, but is that what you want for a monitoring server?
-I would say that this is usually **not** the case. If you'd like a more granular approach to using _firewalld_, take a look at [this document](../security/firewalld.md) and then make changes to your _firewalld_ rules accordingly.
+This is usually **not** the case. If you would like a more granular approach to using `firewalld`, review [this document](../security/firewalld.md) and then make changes to your `firewalld` rules accordingly.
-## Enable Symbolic Link And Tab-Autocomplete For lnms Commands
+## Enable symbolic link And tab-autocomplete For `lnms` commands
-First, we need a symbolic link on our _lnms_ command so that it can be executed from anywhere:
+First, you need a symbolic link on your `lnms` command so it is possible to run from anywhere:
```
ln -s /opt/librenms/lnms /usr/bin/lnms
```
-Next, we need to set it up for autocomplete:
+Next, set it up for autocomplete:
```
cp /opt/librenms/misc/lnms-completion.bash /etc/bash_completion.d/
```
-## Configure snmpd
+## Configure `snmpd`
-_SNMP_ stands for "Simple Network Management Protocol" and is used in many monitoring programs for pulling data. In version 2, which we are using here, it involves a "community string" which is specific for your environment.
+_SNMP_ stands for "Simple Network Management Protocol" and is in use by many monitoring programs for pulling data. In version 2, used here, it requires a "community string" which is specific for your environment.
-You'll need to assign this "community string" to your network devices that you want to monitor so that _snmpd_ (the "d" here stands for the daemon) will be able to find it. If your network has been in place for some time, you may already have a "community string" that you are using.
+Assign this "community string" to your network devices you want to monitor, so that `snmpd` (the "d" here stands for the daemon) will be able to find it. If your network has been in place for some time, you might already have a "community string" in use.
-First, copy the snmp.conf file from LibreNMS:
+Copy the `snmpd.conf` file from LibreNMS:
```
cp /opt/librenms/snmpd.conf.example /etc/snmp/snmpd.conf
```
-Next, edit this file and change the community string from "RANDOMSTRINGGOESHERE" to whatever your community string is or will be. In our example, we are changing it to "LABone":
+Edit this file and change the community string from "RANDOMSTRINGGOESHERE" to whatever your community string is or will be. In the example, this is "LABone":
```
vi /etc/snmp/snmpd.conf
```
-And change this line:
+Change this line:
```
com2sec readonly default RANDOMSTRINGGOESHERE
@@ -377,9 +372,9 @@ to
com2sec readonly default LABone
```
-Now save your changes and exit.
+Save your changes and exit.
-## Automating With A Cron Job
+## Automating with a cron job
Run the following commands to set up the cron jobs:
@@ -387,31 +382,32 @@ Run the following commands to set up the cron jobs:
cp /opt/librenms/librenms.nonroot.cron /etc/cron.d/librenms
```
-It's important that the poller has run once, even though there will be nothing to poll, before the web setup procedure is run. It saves a lot of head scratching trying to figure out what is wrong when you get poller errors in the validation section later on.
+It is important that the poller runs one time, even though there will be nothing to poll, before running the web setup procedure. It saves some head scratching trying to figure out what is wrong when you get poller errors in the validation section later on.
-The poller is run by the "librenms" user, and while it would be possible to switch to this user and run the cron files, it's really better to let the poller do it on its own, so make sure that at least 5 minutes have passed between this section and the "Web Setup" section below.
+The poller runs with the "librenms" user, and though it is possible to switch to this user and run the cron files, it is really better to let the poller do it on its own. Ensure that at least 5 minutes have passed to allow the cron to run and then continue the "Web Setup" section.
-## Log Rotation
-LibreNMS will create a large set of logs over time. You'll need to setup log rotation for this so that it doesn't eat up too much disk space. To do this, simply run this command now:
+## Log rotation
+
+LibreNMS will create a large set of logs over time. You will need to setup log rotation for this to conserve disk space. To do this, run this command:
```
cp /opt/librenms/misc/librenms.logrotate /etc/logrotate.d/librenms
```
-## Installing Composer
+## Installing composer (workaround)
-PHP Composer is required for the current installation (mentioned in the earlier procedure). If the install you ran earlier failed, you'll need to do this.
+PHP Composer is a requirement for the current installation (mentioned in the earlier procedure). If the install you ran earlier failed, you will need to do this.
-Before we start, we need to link our current version of the `php` binary to a location in the path. Since we used the REMI installation to get the correct version of PHP, it is not installed within the path.
+Before starting, you need to link your current version of the `php` binary to a location in the path. This procedure used the REMI installation to get the correct version of PHP, and it is not installed within the path.
-This is easy enough to fix with a symbolic link and will make your life much easier as you go through the remaining steps:
+This is fixable with a symbolic link and will make your life much easier as you run the remaining steps:
```
ln -s /opt/remi/php81/root/usr/bin/php /usr/bin/php
```
-Now go to the [Composer website](https://getcomposer.org/download/) and make sure that the following steps haven't changed. If not, go ahead and run these commands somewhere on the machine (the location isn't important as we will move composer when we are done):
+Go to the [Composer website](https://getcomposer.org/download/) and ensure that the following steps have not changed. Then run these commands somewhere on the machine. You will move composer when this is done:
```
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
@@ -420,116 +416,116 @@ php composer-setup.php
php -r "unlink('composer-setup.php');"
```
-Move it to a spot within our path. We are using `/usr/local/bin/` for this:
+Move it to a spot within the path. Use `/usr/local/bin/` for this:
```
mv composer.phar /usr/local/bin/composer
```
-## Web Setup
+## Web setup
-Now that we have all of the components installed and configured, our next step is to finish the installation via the web. In our lab version, we've got no hostname setup so to finish the setup, we need to go to the web server by IP address.
+With all of the components installed and configured, your next step is to finish the installation via the web. In the lab version, you have no hostname setup. To finish the setup, you need to go to the web server by IP address.
-The IP of our lab machine is 192.168.1.140, so we need to navigate to the following address in a web browser to finish the install:
+The IP of the lab machine is 192.168.1.140. Navigate to the following address in a web browser to finish the install:
`http://192.168.1.140/librenms`
-Assuming all is working correctly, you should be redirected to the pre-install checks. Assuming that these are all marked as green, then we should be able to continue.
+Assuming all is working correctly, a redirection to the pre-install checks is next. If these are all marked in green, you can continue.
![LibreNMS Prechecks](../images/librenms_prechecks.png)
-There are four buttons beneath the LibreNMS logo. The first button on the left is for the pre-checks. Our next button over is for the database. You'll need the password that you set for the database user "librenms" earlier in the process.
+Four buttons are beneath the LibreNMS logo. The first button on the left is for the pre-checks. The next button over is for the database. You will need the password that you set for the database user "librenms" earlier in the process.
-If you've been following along diligently, then you've got that saved in a safe place. Go ahead and click on the "Database" button. The "User" and "Password" should be all that is necessary to fill in here. Once you do that, click the "Check Credentials" button.
+If you have been following along, then you have that saved in a safe place. Click on the "Database" button. The "User" and "Password" are all that is necessary here. When you do that, click the "Check Credentials" button.
![LibreNMS Database](../images/librenms_configure_database.png)
-Once you click that, you can click the "Build Database" button if it comes back green.
+Click the "Build Database" button if it comes back green.
![LibreNMS Database Status](../images/librenms_configure_database_status.png)
-Once that is complete, the "Create Admin User" button will be active, so click this. You will be prompted for an admin user name. In our lab we are simply going to use "admin", and a password for that user.
+The "Create Admin User" button will be active now. Click this. A prompt for an admin user name is next. In the lab it is "admin." Create a password for this user.
-Ensure the password is secure and log it somewhere safe, such as a password manager. You'll also need to fill in the email address for the administrative user. Once all of that is completed, simply click the "Add User" button.
+Ensure the password is secure and log it somewhere safe, such as a password manager. You will also need to add the email address for the administrative user. When completed, click the "Add User" button.
![LibreNMS Administrative User](../images/librenms_administrative_user.png)
-Once you do this, you will see a screen for "Finish Install." There should only be one item left to finish the install and that is a line that asks you to "validate your install".
+You will now see a screen for "Finish Install." There will only be one item left to finish the install and that is a line that asks you to "validate your install".
-Click the link. Once you've done this and everything is successful, you'll be redirected to the login page. Login with your administrative user and password.
+Click the link. A redirect occurs to the login page. Login with your administrative user and password.
-## Adding Devices
+## Adding devices
-Again, one of our assumptions was that you are using SNMP v2. Remember that each device you add must be member of your community string. We are adding two devices as examples here. An Ubuntu workstation and a CentOS server.
+Again, one of the assumptions was that you are using SNMP v2. Remember that each device you add must be a member of your community string. Here the author uses two device examples, An Ubuntu workstation and a CentOS server.
-You will likely have managed switches, routers, and other devices to add. The author can tell you from experience that adding switches and routers is easier than adding workstations and servers, which is why we include the more complex examples.
+You will likely have managed switches, routers, and other devices to add. The author can tell you from experience that adding switches and routers is easier than adding workstations and servers.
-### Ubuntu Workstation Setup
+### Ubuntu workstation setup
-First, install _snmpd_ on the workstation while also updating packages, just to be safe:
+First, install `snmpd` on the workstation and update packages just to be safe:
```
sudo update && sudo apt-get upgrade && sudo apt-get install snmpd
```
-Next, you need to modify the snmpd.conf file:
+Next, you need to change the `snmpd.conf` file:
```
sudo vi /etc/snmpd/snmpd.conf
```
-Go ahead and find the lines that describe your workstation and change them to things that identify the workstation. These lines are shown below:
+Find the lines that describe your workstation and change them to things that identify the workstation:
```
sysLocation Desktop
sysContact Username
```
-By default, when you install snmpd on Ubuntu, it only binds to the local address. It does not listen on your machine IP address. This will not allow LibreNMS to connect to it. We need to remark out this line:
+When you install `snmpd` on Ubuntu, it only binds to the local address. It does not listen on your machine IP address. This will not allow LibreNMS to connect to it. You need to remark out this line:
```
agentaddress 127.0.0.1,[::1]
```
-And add a new line that looks like what follows here: (In this example, the IP address of our workstation is 192.168.1.122 and the UDP port we are setting is "161")
+Add a new line: (In this example, the IP address of your workstation is 192.168.1.122 and the UDP port you are setting is "161")
```
agentAddress udp:127.0.0.1:161,udp:192.168.1.122:161
```
-Next, we need to specify the read only access community string. Find the below lines and remark them out. (Note that we are showing them as remarked out below.)
+You need to specify the read-only access community string. Find the below lines and remark them out as shown:
```
#rocommunity public default -V systemonly
#rocommunity6 public default -V systemonly
```
-Next, add a new line:
+Add a line:
```
rocommunity LABone
```
-Now save your changes and exit.
+Save your changes and exit.
-Enable and start _snmpd_:
+Enable and start `snmpd`:
```
sudo systemctl enable snmpd
sudo systemctl start snmpd
```
-If you are running a firewall on your internal workstations, then you will need to modify the firewall to allow UDP traffic from the monitoring server or from the network. LibreNMS also wants to be able to "ping" your device, so make sure that icmp port 8 is allowed from the server.
+If you are running a firewall on your internal workstations, you will need to change the firewall to allow UDP traffic from the monitoring server or from the network. LibreNMS also wants to be able to "ping" your device. Ensure that ICMP port 8 from the server is not filtered.
-### CentOS or Rocky Linux Server Setup
+### CentOS or Rocky Linux server setup
-We assume you are root or that you can _sudo_ to become so. First, we need to install some packages:
+The assumption is you are root or that you can `sudo` to elevate privileges. You need to install some packages:
```
dnf install net-snmp net-snmp-utils
```
-Next, we want to create a snmpd.conf file. Rather than try to navigate through the file that is included, move this file to rename it, and create a brand new empty file:
+Create a `snmpd.conf` file. Rather than try to navigate the included file, move this file to rename it, and create a brand new empty file:
```
mv /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.orig
@@ -541,7 +537,7 @@ and
vi /etc/snmp/snmpd.conf
```
-Next copy the below into the new file:
+Copy this into the new file:
```
# Map 'LABone' community to the 'AllUser'
@@ -563,11 +559,11 @@ view AllView included .1
access AllGroup "" any noauth exact AllView none none
```
-CentOS and Rocky use a mapping convention to direct things. The above file is commented nicely so that you can learn what is happening, but doesn't include all of the clutter of the original file.
+CentOS and Rocky use a mapping convention to direct things. The shown file has comments to define what is happening, but does not include all of the clutter of the original file.
-Once you've made the changes, save them and exit the file.
+When you have made the changes, save them and exit the file.
-Now we need to enable and start _snmpd_:
+Enable and start `snmpd`:
```
systemctl enable snmpd
@@ -576,89 +572,85 @@ systemctl start snmpd
#### Firewall
-If you are running a server, then you **are** running a firewall, right? If you are running _firewalld_ (as you should be) we will assume that we are using the "trusted" zone here and we just want to allow all traffic from our monitoring server, 192.168.1.140:
+If you are running a server, then you **are** running a firewall, right? If you are running `firewalld` the assumption is that you use the "trusted" zone and you just want to allow all traffic from your monitoring server, 192.168.1.140:
```
firewall-cmd --zone=trusted --add-source=192.168.1.140 --permanent
```
-Again, we assumed the "trusted" zone here, but you may want something else, even "public". Consider your rules and their effect before adding them in.
-
-## Adding The Devices In Librenms
+If the "trusted" zone is not correct for your environment, change this to suite your needs. Consider your rules and their effect before adding them in.
-Now that our sample devices are configured to accept SNMP traffic from our LibreNMS server, the next step is adding those devices to LibreNMS. We assume you have a web interface for LibreNMS open, and that it shows you no devices and ask you to add one.
+## Adding the devices in Librenms
-So go ahead and do that. Once you click to add a device, you'll be faced with this screen:
+With your sample devices configured to accept SNMP traffic from the LibreNMS server, the next step is adding those devices to LibreNMS. With the web interface for LibreNMS open, click to add a device:
![LibreNMS Add Device](../images/librenms_add_device.png)
-Put in the information we used for our test devices. In our case, we are using the IP for the Ubuntu workstation to start, in our example that is 192.168.1.122. We will need to add the community string in the "Community" field, so enter "LABone" here.
-
-Now click the "Add Device" button. Assuming that you have done everything correctly above when adding the device, your device should be added successfully.
+Put in the information used for your test devices. Enter the IP for the Ubuntu workstation to start. In the example that is 192.168.1.122. Add the "LABone" community string in the "Community" field.
-If you run into a "failure to add" error, review the SNMP setup for the workstation or the firewall if it exists. Next we repeat the "Add Device" process for our CentOS server.
+Click the "Add Device" button. Assuming everything is correct when adding the device, your device will add successfully.
-## Getting Alerts
+If you run into a "failure to add" error, review the SNMP setup for the workstation or the firewall if it exists. Repeat the "Add Device" process for your CentOS server.
-As we said from the start, this document will only get you started with LibreNMS. There are a large number of additional configuration items, an extensive API (Application Programming Interface), an alerts system that provides a huge number of options for delivery, called "Transports", and much more.
+## Getting alerts
-We will not create any alert rules. Instead we will edit the built-in alert rule "Device Down! Due to no ICMP response" that is pre-configured out of the box. For "Transports" we will stick with "Mail", which is just email. Just know that you are not limited.
+As noted from the start, this document will only get you started with LibreNMS. A large number of additional configuration items exist, an extensive API (Application Programming Interface), an alerts system that provides a huge number of options for delivery, called "Transports", and much more.
-Mail must be working to use email for our transport. Use this [Postfix Procedure](../email/postfix_reporting.md) to get this going.
+This document does not contain any alert rules creation procedures. Instead, you will edit the built-in alert rule "Device Down! Due to no ICMP response" that is pre-configured out of the box. For "Transports" use "Mail", which is just email. Know that you are not limited by this alert type.
-Run through that procedure to configure postfix so that it will properly identify where the messages are coming from, but you can stop after the configuration process and come back here.
+Mail must be working to use email for transport. Use this [Postfix Procedure](../email/postfix_reporting.md) to get this going.
### Transports
-We need a way to send out our alerts. As noted earlier, LibreNMS supports a huge number of transports. We will do our email alert defined as "Mail" transport. To set up the transport:
+You need a way to send your alerts. As noted earlier, LibreNMS supports a huge number of transports. Email alert defined as "Mail" transport, is in use here. To set up the transport:
1. Go to the dashboard
2. Let your mouse hover over "Alerts"
3. Go down to "Alert Transports" and click on it
4. Click on the "Create alert transport" button (Note the "Create transport group" button. You can use this to have alerts go to several individuals)
-5. In the "Transport name:" field, type in "Alert By Email"
-6. In the "Transport type: field, use the drop down to select "Mail"
-7. Make sure the "Default alert:" field is set to "On"
-8. In the "Email:" field, type the email address of the administrator
+5. In the "Transport name:" field, enter "Alert By Email"
+6. In the "Transport type:" field, use the drop down to select "Mail"
+7. Ensure the "Default alert:" field is "On"
+8. In the "Email:" field, enter the email address of the administrator
-### Organizing Devices Into Groups
+### Organizing devices into groups
-The best way to set up alerts is to organize your devices logically. Currently, we have a workstation and a server in devices. While we may not normally wish combine the two, we will for this example.
+The best way to set up alerts is to organize your devices logically. Currently, you have a workstation and a server in devices. Normally you would not combine the two, as done here.
-Keep in mind that our example is also redundant, as there is an "All Devices" group that would work for this as well. To set up a device group:
+This example is also redundant, as an "All Devices" group exists that will work for this as well. To set up a device group:
1. Go to the dashboard
2. Let your mouse hover over "Devices"
3. Go down to "Manage Groups" and click on it
4. Click on the "+ New Device Group" button
-5. In the "Name" field, type "ICMP Group"
-6. In the description field type what ever you think will help describe the group
+5. In the "Name" field, enter "ICMP Group"
+6. In the description field enter what ever you think will help describe the group
7. Change the "Type" field from "Dynamic" to "Static"
-8. Add both devices to the "Select Devices" field and then just save your changes
+8. Add each device to the "Select Devices" field and save your changes
-### Setting Up The Alert Rules
+### Setting up the alert rules
Configure the alert rule next. By default, LibreNMS has several alert rules already created for you:
1. Go to the dashboard
2. Let your mouse hover over "Alerts"
3. Go down to "Alert Rules" and click on it
-4. The top active rule in the display will be "Device Down! Due to no ICMP response." Go over to the "Action" (far right column) and click on the pencil icon to edit the rule.
-5. Leave all the fields at the top as is and go down to the "Match devices, groups and locations list:" field and click inside the field
+4. The top active rule here will be "Device Down! Due to no ICMP response." Go over to the "Action" (far right column) and click on the pencil icon to edit the rule.
+5. Leave all the fields at the top with defaults. In the "Match devices, groups and locations list:" field, click inside the field.
6. Select "ICMP Group" from the list
-7. Make sure the "All devices except in list:" field is "Off"
+7. Ensure the "All devices except in list:" field is "Off"
8. Click inside the "Transports:" field and select "Mail: Alert By Email" and save your rule.
-Before saving, your rule should look something like this:
+Before saving, your rule will be:
![LibreNMS Alert Rule](../images/librenms_alert_rule.png)
-These two devices should now alert you by email if they are down and when they recover.
+These two devices will now alert you by email if they are down, and upon recovery.
## Conclusions
-LibreNMS is a powerful monitoring tool with a full set of features in one application. We have only _just_ scratched the surface on the capabilities. We haven't shown you some of the obvious screens.
+LibreNMS is a powerful monitoring tool with a full set of features in one application. This document has _just_ scratched the surface on its capabilities. Some of the simpler screens are not shown.
-For instance, as soon as you add devices, assuming that all of the SNMP properties are set correctly, you'll start to receive bandwidth, memory utilization, and CPU utilization graphs on each device. We haven't shown you the wealth of transports available besides "Mail".
+When you add devices, assuming that all of the SNMP properties are correctly set, you will start to receive bandwidth, memory utilization, and CPU utilization graphs on each device. This lab has not shown you the wealth of transports available besides "Mail".
-All of that said, we have shown you enough in this document to get a good start monitoring your environment. LibreNMS takes some time to master all of the elements. You should visit the project's [excellent documentation](https://docs.librenms.org/) for additional information.
+This document has shown you enough to get a good start monitoring your environment. LibreNMS takes some time to master all of the elements. You should visit the project's [excellent documentation](https://docs.librenms.org/) for additional information.