How to Set Up SNMP on Fedora 40 for Monitoring with Nagios XI

Efficient monitoring of Linux servers is key to maintaining system stability and preventing costly downtime. SNMP (Simple Network Management Protocol) offers an agentless solution for monitoring both network devices and Linux servers with Nagios XI, eliminating the need for additional software agents.
In this guide, we’ll walk you through the step-by-step process of installing and configuring SNMP on Fedora 40, ensuring smooth integration with Nagios XI for seamless system monitoring and proactive issue detection.
Prerequisites
Before proceeding, ensure you have:
- A Fedora 40 system with root or sudo privileges.
- Nagios XI installed and accessible, with the SNMP Wizard enabled.
- A stable internet connection for package downloads.
Step 1: Install SNMP on Fedora 40
To install SNMP and the required libraries, run:
sudo dnf install net-snmp net-snmp-utils -y
After installation, verify the installed version:
snmpd -v
This ensures that SNMP is correctly installed on the system.
Step 2: Configure SNMP Access
SNMP v2c Configuration
To configure SNMP v2c, create a backup of the existing configuration:
sudo cp /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.bak
Now, edit the SNMP configuration file:
sudo nano /etc/snmp/snmpd.conf
Find and modify the following line to define the community string and allow access from your Nagios XI server (replace Str0ngC0mmunity
with your desired community string and 10.25.5.12
with your Nagios XI server’s IP address):
rocommunity Str0ngC0mmunity 10.25.5.12
Save the file and restart the SNMP service:
sudo systemctl restart snmpd.service
SNMP v3 Configuration (More Secure)
To configure SNMP v3, create an SNMP user with authentication and encryption:
sudo net-snmp-create-v3-user -ro -a SHA -A Str0ng@uth3ntic@ti0n -x AES -X Str0ngPriv@cy nagios
-a SHA
→ Specifies SHA for authentication (MD5 is also supported but less secure).-x AES
→ Enables AES encryption (DES is another option but less secure).
Restart the SNMP service:
sudo systemctl restart snmpd.service
Step 3: Configure Firewall Rules
If firewalld is enabled on your system, allow SNMP traffic on UDP port 161:
sudo firewall-cmd --zone=public --add-port=161/udp --permanent
sudo firewall-cmd --reload
Confirm firewall rules:
sudo firewall-cmd --list-ports
Step 4: Enable SNMP Service on Boot
To ensure SNMP starts automatically at boot, run:
sudo systemctl enable snmpd.service
Step 5: Test SNMP Communication
To test if SNMP is responding correctly, run the following commands from your Nagios XI server.
For SNMP v2c:
snmpwalk -v2c -c Str0ngC0mmunity 10.25.5.12
For SNMP v3:
snmpwalk -v3 -u nagios -l authPriv -a SHA -A Str0ng@uth3ntic@ti0n -x AES -X Str0ngPriv@cy 10.25.5.12
Expected Output (Example)
iso.3.6.1.2.1.1.1.0 = STRING: "Linux myserver 6.5.0-10.fc40.x86_64"
iso.3.6.1.2.1.1.3.0 = Timeticks: (100032) 0:16:40.32
If the command does not return data, review SNMP configuration and firewall settings.
Step 6: Add Fedora 40 Host to Nagios XI Using SNMP Wizard
1. Log in to Nagios XI.
2. Navigate to Configure > Run a configuring wizard.

3. Search for and select Linux SNMP wizard.

4. Enter the Fedora 40 server’s IP address and SNMP credentials.

5. Click Next, select the system metrics to monitor (CPU, memory, disk, network traffic, etc.).
6. Apply the configuration and verify that Nagios XI is collecting SNMP data.
Common Issues & Fixes
SNMP Service is Not Running
Check logs for errors:
sudo journalctl -u snmpd --no-pager | tail -20
Restart SNMP if necessary:
sudo systemctl restart snmpd.service
Host Appears “Down” in Nagios XI
- Check firewall rules:
sudo firewall-cmd --list-ports
- Ensure SNMP is running:
sudo systemctl status snmpd
- Verify Nagios XI configuration
Incorrect SNMP Credentials Error
- Confirm the correct community string (SNMP v2c) or authentication details (SNMP v3).
- Restart the SNMP service after changes.
Conclusion
You have successfully installed and configured SNMP on Fedora 40 for monitoring with Nagios XI. This setup provides a robust, agentless solution for tracking system performance metrics and ensuring proactive issue resolution.
For further assistance, refer to the Nagios Support Forum or the Nagios Knowledgebase.
Share:
On this page
Related Articles
- Setting Up SNMP on Arch Linux 2023 for Seamless Monitoring with Nagios XI
- Installing Nagios Cross-Platform Agent on Fedora 39 Workstation
- How to Monitor CentOS 8 with SNMP in Nagios XI
- How to Monitor Arch Linux 2023 with NCPA in Nagios XI
- Step-by-Step Guide to Monitoring Fedora 40 with NCPA in Nagios XI