Ad Widget

Collapse

Zabbix not populating all information

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lobiDA
    Junior Member
    • Jul 2016
    • 19

    #1

    Zabbix not populating all information

    Hi,

    Running Zabbix 3.0.3 on Ubuntu trusty
    Running Apache 2.4.7
    Running MySQL 14.14 Distrib 5.5.49
    Running PHP 5.5.9-1ubuntu4.17
    Using Juniper EX template (https://share.zabbix.com/network_dev...iper-ex-series) for a Juniper switch

    Having a strange issue here where I verified snmp data is being collected via snmpwalk by the server, however most data isn't populating in Zabbix. It looks like the problem here is on the Zabbix configuration side. I followed all instructions from Zabbix's 3.0 documentation, as well as other documentation, and yet I still can't get all data to populate.


    Verified snmpwalk shows the data I input on the Juniper EX device:
    ubuntu@ip-172-31-9-5:~$ snmpwalk -c digitalasset -v 2c 10.1.15.2
    iso.3.6.1.2.1.1.1.0 = STRING: "Juniper EX switch"
    iso.3.6.1.2.1.1.2.0 = OID: iso.3.6.1.4.1.2636.1.1.1.2.43
    iso.3.6.1.2.1.1.3.0 = Timeticks: (508801030) 58 days, 21:20:10.30
    iso.3.6.1.2.1.1.4.0 = STRING: "[email protected]"
    iso.3.6.1.2.1.1.5.0 = STRING: "pacman"
    iso.3.6.1.2.1.1.6.0 = STRING: "NY"
    iso.3.6.1.2.1.1.7.0 = INTEGER: 6
    iso.3.6.1.2.1.2.1.0 = INTEGER: 117
    iso.3.6.1.2.1.2.2.1.1.4 = INTEGER: 4
    iso.3.6.1.2.1.2.2.1.1.5 = INTEGER: 5
    [omitted]


    Verified Juniper SNMP config is correct:
    josephlobianco@pacman> show configuration snmp
    description "Juniper EX switch";
    location NY;
    contact "[email protected]";
    community digitalasset {
    authorization read-only;
    clients {
    172.31.9.5/32;
    }
    }
    trap-group zabbix {
    version all;
    categories {
    authentication;
    chassis;
    link;
    startup;
    }
    targets {
    172.31.9.5;
    }
    }


    Nothing interesting in snmp logs when running snmpwalk:
    Jul 13 23:01:32 ip-172-31-9-5 snmpd[4837]: /etc/snmp/snmpd.conf: line 145: Warning: Unknown token: linkUpDownNotifications.
    Jul 13 23:01:32 ip-172-31-9-5 snmpd[4837]: Turning on AgentX master support.
    Jul 13 23:01:32 ip-172-31-9-5 snmpd[4839]: NET-SNMP version 5.7.2
    Jul 14 15:32:56 ip-172-31-9-5 snmpd[4839]: Received TERM or STOP signal... shutting down...
    Jul 14 15:32:58 ip-172-31-9-5 snmpd[6152]: /etc/snmp/snmpd.conf: line 143: Warning: Unknown token: defaultMonitors.
    Jul 14 15:32:58 ip-172-31-9-5 snmpd[6152]: /etc/snmp/snmpd.conf: line 145: Warning: Unknown token: linkUpDownNotifications.
    Jul 14 15:32:58 ip-172-31-9-5 snmpd[6152]: Turning on AgentX master support.
    Jul 14 15:32:58 ip-172-31-9-5 snmpd[6154]: NET-SNMP version 5.7.2

    Nothing interesting in syslog when running snmpwalk (won't bother copying and pasting here since nothing is generated).

    Here are some pictures showing my host, but most not populated:



    ------------------------------

    ------------------------------

    ------------------------------

    ------------------------------


    Question: Why is it that I can't view all of the details of the host? For example, when I go to graphs, nothing from the Juniper host is available for viewing, even though that template has graphs.

    Thanks.
    Last edited by lobiDA; 15-07-2016, 16:46.
  • lobiDA
    Junior Member
    • Jul 2016
    • 19

    #2
    Looks like my problem is due to not loading Juniper MIBs. I'll continue working on this.

    For future people needing help: I google'd Juniper MIBs and found some, downloaded them, and placed them in the /usr/share/snmp/mibs/ folder (Ubuntu).

    I then went into /etc/snmp/snmp.conf and added under "mibs :" "mibs +ALL" minus the quotes, which according to some random documentation will "load" *all* mibs in the /usr/share/snmp/mibs/ folder.

    Clearly, I am new to snmp.

    Comment

    Working...