Skip to content

SNMP Installation

Starter
Professional

Before you begin, make sure you have:

  • A Bleemeo Glouton agent installed and connected to your Bleemeo account. We recommend using a dedicated agent for network device monitoring. See the installation guide if you don’t have one yet.
  • SNMP enabled on the devices you want to monitor.

The SNMP exporter needs to reach network devices on UDP port 161. Glouton needs to reach the SNMP exporter on TCP port 9116 (default). We recommend deploying both on the same server.

After you installed Glouton, install the SNMP exporter:

Terminal window
sudo apt update
sudo apt-get install snmp-exporter

The snmp-exporter package includes a pre-configured snmp.yml that works with all supported device types. No additional configuration is needed.

Define the devices you want to monitor in the Glouton configuration. You can add as many SNMP targets as needed.

Terminal window
sudo tee /etc/glouton/conf.d/99-snmp.conf > /dev/null << 'EOF'
metric:
snmp:
targets:
- initial_name: AP Wifi
target: 192.168.1.10
- initial_name: Office Printer
target: 192.168.1.20
EOF
sudo systemctl restart glouton

Replace the target values with the IP addresses of your SNMP devices and initial_name with a descriptive name for each device.

After restarting Glouton, your SNMP devices should appear in the Bleemeo console within a few minutes.

By default, Glouton connects to the SNMP exporter at http://localhost:9116. If you run the SNMP exporter on a different address or port, set metric.snmp.exporter_address accordingly.