Ad Widget

Collapse

Frequency in a map

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • arut55
    Member
    • Mar 2013
    • 41

    #1

    Frequency in a map

    Hello.
    I have a task - show frequencies for each device in our WiFi network in a zabbix map.
    I Know that SNMP - is a solution)) But all our devices is Ubiquity and they not save frequency in snmp table.
    I Have written script and added it to zabbix_agentd.conf..
    now with command zabbix_agentd -t "wifi.freq[192.168.10.11]" I'm getting frequency... but I cant collect data by items (zabbix agent active)..
    what can I do?
  • steveboyson
    Senior Member
    • Jul 2013
    • 582

    #2
    If you can query it via zabbix_agentd, you definetely can query it from within zabbix.

    Just create a host with "192.168.10.11" as IP address in zabbix, install the zabbix_agentd on that client, place your script somewhere there and create a "UserParameter=<your-alias>[*],<your-script> $1 in that agent's zabbix_agentd.conf.

    Comment

    • arut55
      Member
      • Mar 2013
      • 41

      #3
      Originally posted by steveboyson
      If you can query it via zabbix_agentd, you definetely can query it from within zabbix.

      Just create a host with "192.168.10.11" as IP address in zabbix, install the zabbix_agentd on that client, place your script somewhere there and create a "UserParameter=<your-alias>[*],<your-script> $1 in that agent's zabbix_agentd.conf.
      I Cant install zabbix_agent on Access Points.
      Zabbix agent installed in the zabbix server and trough zabbix agent i'm calling script who get information from access point

      Comment

      • steveboyson
        Senior Member
        • Jul 2013
        • 582

        #4
        Then:
        - create "dummy" hosts with the IP address of your access points
        - hook in the item as type "external item" and your script as "key". The item will then be executed on the zabbix server.
        First parameter should be {HOST.CONN} which sends the IP address of your configured host to you script.
        - finish.

        Comment

        Working...