Is anyone using Zabbix with epmp?

I have a templet set up for the aps but now i'm wanting to try to discover the SMs using something like connectedstalist ip 1.3.6.1.4.1.17713.21.1.2.30.1.10(.1-?) Does anyone have a good way to discover SMs?

I’m currently trying to do the same thing, discover my ap’s and discover sm’s. There is an OID
.1.3.6.1.4.1.17713.21.3.8.2.1.0, which is wirelessInterfaceMode, that returns 1 for AP, 2 for SM and 3 for spectrum analyzer modes.

Only on 450i SM; though I’m curious to see what you’re able to come up with

we use it for 2k, 3k, PTP for a couple of them. Also, the discovery rules are great. the learning curve for discovery rules is steep though. Pasting our templates below, for zabbix 6 copy code box and paste into a .yaml file

zabbix_export:
  version: '6.0'
  date: '2022-09-20T22:12:56Z'
  groups:
    -
      uuid: 130d9e4fb0484b2092428a3e30573bd3
      name: 'Access Points'
  templates:
    -
      uuid: a948c0ff7c7a42df9cc40ca0f9b685f2
      template: 'Cambium - ePMP 2000 APs'
      name: 'Cambium - ePMP 2000 APs'
      description: 'Template to track usage on ePMP radios'
      groups:
        -
          name: 'Access Points'
      items:
        -
          uuid: 2f64a4b18df04e6c8e09d441820b0f01
          name: 'Channel Size'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.1.2.2.0
          key: Channel_Size
          delay: 1h
          units: MHz
          preprocessing:
            -
              type: MULTIPLIER
              parameters:
                - '20'
        -
          uuid: 01e2adb855614fe9b6839682146c9a0c
          name: DLAvailableFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.52.0
          key: DL_A_FrameCount
          delay: 5m
          units: Frames
          description: 'Downlink Available Frame Count'
          request_method: POST
        -
          uuid: abe63d1b0ada4c1b8748c58af67a118e
          name: DLUsedFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.54.0
          key: DL_U_FrameCount
          delay: 5m
          units: Frames
          description: 'Downlink Used Frame Count'
          request_method: POST
        -
          uuid: 7266acc2356248e0aff50b4e6d758a8d
          name: 'Radio Downlink Frame Utilization'
          type: CALCULATED
          key: Downlink_Sector_Utilization_1m
          history: 7d
          trends: 90d
          value_type: FLOAT
          units: '%'
          params: last(//Downlink_Utilization)
        -
          uuid: 2131ccb733844720bc5efbec7abaf100
          name: 'Downlink Sector Utilization avg 1 Week'
          type: CALCULATED
          key: Downlink_Sector_Utilization_avg
          delay: 24h
          units: '%'
          params: 'avg(//Downlink_Sector_Utilization_1m,1w)'
        -
          uuid: fafef92acddb43bf949c5659b3946a6b
          name: 'Downlink Sector Utilization avg 1 Month'
          type: CALCULATED
          key: Downlink_Sector_Utilization_avg_month
          delay: 1d
          units: '%'
          params: 'avg(//Downlink_Sector_Utilization_1m,30d)'
        -
          uuid: d74a546507a947bfab45316248a03e8c
          name: 'Downlink Sector Utilization Max 1 Month'
          type: CALCULATED
          key: Downlink_Sector_Utilization_Max_M
          delay: 1d
          units: '%'
          params: 'max(//Downlink_Sector_Utilization_1m,30d)'
        -
          uuid: a1775303a181499d8dccd7da2a2ec69f
          name: 'Downlink Sector Utilization Max 1 Week'
          type: CALCULATED
          key: Downlink_Sector_Utilization_Max_W
          delay: 1d
          units: '%'
          params: 'max(//Downlink_Sector_Utilization_1m,7d)'
        -
          uuid: a16cae9f420e4dbfad94664feb237f43
          name: 'Radio Downlink Utilization'
          type: CALCULATED
          key: Downlink_Utilization
          delay: 5m
          value_type: FLOAT
          units: '%'
          params: last(//DL_U_FrameCount)/last(//DL_A_FrameCount)
          description: 'Downlink Frame Utilization'
          preprocessing:
            -
              type: MULTIPLIER
              parameters:
                - '100'
          request_method: POST
        -
          uuid: 64ad8bd3a44149cca67a3d34c755dbeb
          name: 'Ethernet Traffic In'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","LAN interface 1"]'
          key: Ethernet_InBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 85f1906a73a34db7849d90f87fb2c723
          name: 'Ethernet Traffic Out'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","LAN interface 1"]'
          key: Ethernet_OutBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 8c2c7d99078c4bbdabac4b5e4e9e93eb
          name: 'Radio Frequency'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.3.8.2.18.0
          key: RadioFrequency
          delay: 1h
        -
          uuid: 6ca549dde5ae415ba274a3202b4aec27
          name: 'RF Traffic In'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","WLAN interface 1"]'
          key: Rf_InBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: ec38d3f3169d467c9a231a0a7bfd0976
          name: 'RF Traffic Out'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","WLAN interface 1"]'
          key: Rf_OutBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 5dee6beda8454df1966581ed891ee698
          name: 'Subscriber Count'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.1.2.10.0
          key: Sub_Link_Count
          delay: 5m
          units: SMs
          description: 'Subscriber Count'
          request_method: POST
        -
          uuid: d5a90db654004a0a90b655c3998b3540
          name: 'System Description'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.1.1.2.0
          key: System_Description
          delay: 1d
          history: 3d
          trends: '0'
          valuemap:
            name: 'System Description'
      valuemaps:
        -
          uuid: fd533840237e455789725a9269790c5e
          name: 'System Description'
          mappings:
            -
              value: '0'
              newvalue: '5 GHz Connectorized Radio with Sync'
            -
              value: '1'
              newvalue: '5 GHz Connectorized Radio'
            -
              value: '2'
              newvalue: '5 GHz Integrated Radio'
            -
              value: '3'
              newvalue: '2.4 GHz Connectorized Radio with Sync'
            -
              value: '4'
              newvalue: '2.4 GHz Connectorized Radio'
            -
              value: '5'
              newvalue: '2.4 GHz Integrated Radio'
            -
              value: '6'
              newvalue: '5 GHz Force 200 (ROW)'
            -
              value: '8'
              newvalue: '5 GHz Force 200 (FCC)'
            -
              value: '9'
              newvalue: '2.4 GHz Force 200'
            -
              value: '10'
              newvalue: 'ePMP 2000'
            -
              value: '11'
              newvalue: '5 GHz Force 180 (ROW)'
            -
              value: '12'
              newvalue: '5 GHz Force 180 (FCC)'
            -
              value: '13'
              newvalue: '5 GHz Force 190 Radio (ROW/ETSI)'
            -
              value: '14'
              newvalue: '5 GHz Force 190 Radio (FCC)'
            -
              value: '16'
              newvalue: '6 GHz Force 180 Radio'
            -
              value: '17'
              newvalue: '6 GHz Connectorized Radio with Sync'
            -
              value: '18'
              newvalue: '6 GHz Connectorized Radio'
            -
              value: '19'
              newvalue: '2.5 GHz Connectorized Radio with Sync'
            -
              value: '20'
              newvalue: '2.5 GHz Connectorized Radio'
            -
              value: '22'
              newvalue: '5 GHz Force 130 Radio'
            -
              value: '23'
              newvalue: '2.4 GHz Force 130 Radio'
            -
              value: '24'
              newvalue: '5 GHz Force 200L Radio'
            -
              value: '33'
              newvalue: '5 GHz PTP550 Integrated Radio'
            -
              value: '34'
              newvalue: '5 GHz PTP550 Connectorized Radio'
            -
              value: '35'
              newvalue: '5 GHz Force 300-25 Radio (FCC)'
            -
              value: '36'
              newvalue: '5 GHz Force 300-25 Radio (ROW/ETSI)'
            -
              value: '37'
              newvalue: 'ePMP3000 (FCC)'
            -
              value: '38'
              newvalue: '5 GHz Force 300-16 Radio (FCC)'
            -
              value: '39'
              newvalue: '5 GHz Force 300-16 Radio (ROW/ETSI)'
            -
              value: '40'
              newvalue: 'ePMP3000 (ROW/ETSI)'
            -
              value: '41'
              newvalue: '5 GHz PTP 550E Integrated Radio'
            -
              value: '42'
              newvalue: '5 GHz PTP 550E Connectorized Radio'
            -
              value: '43'
              newvalue: '5 GHz ePMP3000L (FCC)'
            -
              value: '44'
              newvalue: '5 GHz ePMP3000L (ROW/ETSI)'
            -
              value: '45'
              newvalue: '5 GHz Force 300 Connectorized Radio without GPS (FCC)'
            -
              value: '46'
              newvalue: '5 GHz Force 300 Connectorized Radio without GPS (ROW/ETSI)'
            -
              value: '47'
              newvalue: '5 GHz Force 300-13 Radio (FCC)'
            -
              value: '48'
              newvalue: '5 GHz Force 300-13 Radio (ROW/ETSI)'
            -
              value: '49'
              newvalue: '5 GHz Force 300-19 Radio (FCC)'
            -
              value: '50'
              newvalue: '5 GHz Force 300-19 Radio (ROW/ETSI)'
            -
              value: '51'
              newvalue: '5 GHz Force 300-19R IP67 Radio (ROW/ETSI)'
            -
              value: '52'
              newvalue: '5 GHz Force 300-19R IP67 Radio (FCC)'
            -
              value: '53'
              newvalue: '5 GHz ePMP Client MAXrP IP67 Radio (FCC)'
            -
              value: '54'
              newvalue: '5 GHz ePMP Client MAXrP IP67 Radio (ROW/ETSI)'
            -
              value: '55'
              newvalue: '5 GHz Force 300-25 Radio V2 (FCC)'
            -
              value: '58'
              newvalue: '5 GHz Force 300-25L Radio'
            -
              value: '59'
              newvalue: '5 GHz Force 300-13LC Connectorized Radio'
            -
              value: '60'
              newvalue: '5 GHz Force 300-22L Radio'
            -
              value: '61'
              newvalue: '5 GHz Force 300-13L Radio'
            -
              value: '62'
              newvalue: '5 GHz ePMP MP 3000'
            -
              type: DEFAULT
              newvalue: unknown
    -
      uuid: bd214dd3ee6145a69661afc3c6ec92e6
      template: 'Cambium - ePMP 3000 APs'
      name: 'Cambium - ePMP 3000 APs'
      description: 'Template to track usage on ePMP 3000 radios'
      groups:
        -
          name: 'Access Points'
      items:
        -
          uuid: ebfc027dcdc54717a6c26b41775ff9fb
          name: 'Channel Size'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.1.2.2.0
          key: Channel_Size
          delay: 1h
          units: MHz
          description: 'Radio Channel Size (Beamwidth)'
          preprocessing:
            -
              type: MULTIPLIER
              parameters:
                - '20'
        -
          uuid: 3480a559d9f54e599bb636dfab68b59e
          name: DLAvailableFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.52.0
          key: DL_A_FrameCount
          delay: 5m
          units: Frames
          description: 'Downlink Available Frame Count'
          request_method: POST
        -
          uuid: 517ae9bf4ce84f16b876eb2af243e81e
          name: DLUsedFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.54.0
          key: DL_U_FrameCount
          delay: 5m
          units: Frames
          description: 'Downlink Used Frame Count'
          request_method: POST
        -
          uuid: 8bc7be21f2114304b8962dcdb4088da0
          name: 'Radio Downlink Frame Utilization'
          type: CALCULATED
          key: Downlink_Sector_Utilization_1m
          delay: 1d
          history: 7d
          trends: 90d
          value_type: FLOAT
          units: '%'
          params: last(//Downlink_Utilization)
        -
          uuid: 98d6ab986fec48648d75c135d59de45c
          name: 'Downlink Sector Utilization avg 1 Week'
          type: CALCULATED
          key: Downlink_Sector_Utilization_avg
          delay: 24h
          units: '%'
          params: 'avg(//Downlink_Sector_Utilization_1m,1w)'
        -
          uuid: ddfb482080fe437299ac2fcf6c784e08
          name: 'Downlink Sector Utilization avg 1 Month'
          type: CALCULATED
          key: Downlink_Sector_Utilization_avg_month
          delay: 1d
          units: '%'
          params: 'avg(//Downlink_Sector_Utilization_1m,30d)'
        -
          uuid: a9d7694cf47a44a6ac8c76777c398e5e
          name: 'Downlink Sector Utilization Max 1 Month'
          type: CALCULATED
          key: Downlink_Sector_Utilization_Max_M
          units: '%'
          params: 'max(//Downlink_Sector_Utilization_1m,30d)'
        -
          uuid: 983a98f7bf0b4affb00e880fa6321969
          name: 'Downlink Sector Utilization Max 1 Week'
          type: CALCULATED
          key: Downlink_Sector_Utilization_Max_W
          delay: 1d
          units: '%'
          params: 'max(//Downlink_Sector_Utilization_1m,7d)'
        -
          uuid: 5a50af7278e749f7891145433f111536
          name: 'Radio Downlink Utilization'
          type: CALCULATED
          key: Downlink_Utilization
          delay: 5m
          value_type: FLOAT
          units: '%'
          params: last(//DL_U_FrameCount)/last(//DL_A_FrameCount)
          description: 'Downlink Frame Utilization'
          preprocessing:
            -
              type: MULTIPLIER
              parameters:
                - '100'
          request_method: POST
        -
          uuid: d856e246ac52419b9f8acffb5586bbbf
          name: 'Ethernet Traffic In'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","LAN interface 1"]'
          key: Ethernet_InBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: bda0949fe6d94c858de6be102406be42
          name: 'Ethernet Traffic Out'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","LAN interface 1"]'
          key: Ethernet_OutBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 0474005525d4468696fe829e5aabb59f
          name: 'Radio Frequency'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.3.8.2.18.0
          key: RadioFrequency
          delay: 1h
          description: 'Radio Broadcast Frequency'
          request_method: POST
        -
          uuid: bc71d96d57d94abebc2c07718c0a9a9f
          name: 'RF Traffic In'
          type: CALCULATED
          key: Rf_InBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          params: 'sum(last(//Rf_InBytes1),last(//Rf_InBytes2))'
          request_method: POST
        -
          uuid: a2b5cf96f5444c88845d6db6505d3944
          name: 'RF Traffic In WLAN 1'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","WLAN interface 1"]'
          key: Rf_InBytes1
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
        -
          uuid: 2b90b08d8ace49279bc49e712a30d926
          name: 'RF Traffic In WLAN 2'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","WLAN interface 2"]'
          key: Rf_InBytes2
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
        -
          uuid: bd31e87dc4014725b492a7a59048de20
          name: 'RF Traffic Out'
          type: CALCULATED
          key: Rf_OutBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          params: 'sum(last(//Rf_OutBytes1),last(//Rf_OutBytes2))'
          request_method: POST
        -
          uuid: ad531977a01f41f48221085aba513283
          name: 'RF Traffic Out WLAN 1'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","WLAN interface 1"]'
          key: Rf_OutBytes1
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
        -
          uuid: 8ab7139d95ed43f784008778dcbccfe1
          name: 'RF Traffic Out WLAN 2'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","WLAN interface 2"]'
          key: Rf_OutBytes2
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
        -
          uuid: b91ef297e2e34a5192f4b4e309b82b9c
          name: SSiD
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.1.1.11.0
          key: SSiD
          delay: 1h
          trends: '0'
          value_type: TEXT
          description: 'Radio Broadcast SSiD'
        -
          uuid: 88bd4f01f43e418587327cf28178e76d
          name: 'Subscriber Count'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.1.2.10.0
          key: Sub_Link_Count
          delay: 5m
          units: SMs
          description: 'Subscriber Count'
          request_method: POST
        -
          uuid: 281ea99727f841e0b4c3289bc9a16a45
          name: 'System Description'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.1.1.2.0
          key: System_Description
          delay: 1d
          history: 3d
          trends: '0'
          valuemap:
            name: 'System Description'
        -
          uuid: bbfd51cd6d19472dae62cece07272629
          name: ULAvailableFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.51.0
          key: UL_A_FrameCount
          delay: 5m
          units: Frames
          description: 'Uplink Available Frame Count'
          request_method: POST
        -
          uuid: e75c13b947e648b488fe7a3c71a0e174
          name: ULUsedFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.53.0
          key: UL_U_FrameCount
          delay: 5m
          units: Frames
          description: 'Uplink Used Frame Count'
          request_method: POST
      macros:
        -
          macro: '{$INTERFACE_WLAN1}'
          value: 'WLAN interface 1'
      valuemaps:
        -
          uuid: fd533840237e455789725a9269790c6e
          name: 'System Description'
          mappings:
            -
              value: '0'
              newvalue: '5 GHz Connectorized Radio with Sync'
            -
              value: '1'
              newvalue: '5 GHz Connectorized Radio'
            -
              value: '2'
              newvalue: '5 GHz Integrated Radio'
            -
              value: '3'
              newvalue: '2.4 GHz Connectorized Radio with Sync'
            -
              value: '4'
              newvalue: '2.4 GHz Connectorized Radio'
            -
              value: '5'
              newvalue: '2.4 GHz Integrated Radio'
            -
              value: '6'
              newvalue: '5 GHz Force 200 (ROW)'
            -
              value: '8'
              newvalue: '5 GHz Force 200 (FCC)'
            -
              value: '9'
              newvalue: '2.4 GHz Force 200'
            -
              value: '10'
              newvalue: 'ePMP 2000'
            -
              value: '11'
              newvalue: '5 GHz Force 180 (ROW)'
            -
              value: '12'
              newvalue: '5 GHz Force 180 (FCC)'
            -
              value: '13'
              newvalue: '5 GHz Force 190 Radio (ROW/ETSI)'
            -
              value: '14'
              newvalue: '5 GHz Force 190 Radio (FCC)'
            -
              value: '16'
              newvalue: '6 GHz Force 180 Radio'
            -
              value: '17'
              newvalue: '6 GHz Connectorized Radio with Sync'
            -
              value: '18'
              newvalue: '6 GHz Connectorized Radio'
            -
              value: '19'
              newvalue: '2.5 GHz Connectorized Radio with Sync'
            -
              value: '20'
              newvalue: '2.5 GHz Connectorized Radio'
            -
              value: '22'
              newvalue: '5 GHz Force 130 Radio'
            -
              value: '23'
              newvalue: '2.4 GHz Force 130 Radio'
            -
              value: '24'
              newvalue: '5 GHz Force 200L Radio'
            -
              value: '33'
              newvalue: '5 GHz PTP550 Integrated Radio'
            -
              value: '34'
              newvalue: '5 GHz PTP550 Connectorized Radio'
            -
              value: '35'
              newvalue: '5 GHz Force 300-25 Radio (FCC)'
            -
              value: '36'
              newvalue: '5 GHz Force 300-25 Radio (ROW/ETSI)'
            -
              value: '37'
              newvalue: 'ePMP3000 (FCC)'
            -
              value: '38'
              newvalue: '5 GHz Force 300-16 Radio (FCC)'
            -
              value: '39'
              newvalue: '5 GHz Force 300-16 Radio (ROW/ETSI)'
            -
              value: '40'
              newvalue: 'ePMP3000 (ROW/ETSI)'
            -
              value: '41'
              newvalue: '5 GHz PTP 550E Integrated Radio'
            -
              value: '42'
              newvalue: '5 GHz PTP 550E Connectorized Radio'
            -
              value: '43'
              newvalue: '5 GHz ePMP3000L (FCC)'
            -
              value: '44'
              newvalue: '5 GHz ePMP3000L (ROW/ETSI)'
            -
              value: '45'
              newvalue: '5 GHz Force 300 Connectorized Radio without GPS (FCC)'
            -
              value: '46'
              newvalue: '5 GHz Force 300 Connectorized Radio without GPS (ROW/ETSI)'
            -
              value: '47'
              newvalue: '5 GHz Force 300-13 Radio (FCC)'
            -
              value: '48'
              newvalue: '5 GHz Force 300-13 Radio (ROW/ETSI)'
            -
              value: '49'
              newvalue: '5 GHz Force 300-19 Radio (FCC)'
            -
              value: '50'
              newvalue: '5 GHz Force 300-19 Radio (ROW/ETSI)'
            -
              value: '51'
              newvalue: '5 GHz Force 300-19R IP67 Radio (ROW/ETSI)'
            -
              value: '52'
              newvalue: '5 GHz Force 300-19R IP67 Radio (FCC)'
            -
              value: '53'
              newvalue: '5 GHz ePMP Client MAXrP IP67 Radio (FCC)'
            -
              value: '54'
              newvalue: '5 GHz ePMP Client MAXrP IP67 Radio (ROW/ETSI)'
            -
              value: '55'
              newvalue: '5 GHz Force 300-25 Radio V2 (FCC)'
            -
              value: '58'
              newvalue: '5 GHz Force 300-25L Radio'
            -
              value: '59'
              newvalue: '5 GHz Force 300-13LC Connectorized Radio'
            -
              value: '60'
              newvalue: '5 GHz Force 300-22L Radio'
            -
              value: '61'
              newvalue: '5 GHz Force 300-13L Radio'
            -
              value: '62'
              newvalue: '5 GHz ePMP MP 3000'
            -
              type: DEFAULT
              newvalue: unknown
  graphs:
    -
      uuid: edbed6715c80411190273465572973e2
      name: 'Radio Utilization'
      graph_items:
        -
          drawtype: FILLED_REGION
          color: 00C800
          item:
            host: 'Cambium - ePMP 2000 APs'
            key: Downlink_Utilization
        -
          sortorder: '1'
          drawtype: BOLD_LINE
          color: 0000C8
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 2000 APs'
            key: Sub_Link_Count
    -
      uuid: 2a1de4c751314f7fb8b9ca0dfc02cada
      name: 'Radio Utilization'
      ymin_type_1: FIXED
      ymax_type_1: FIXED
      graph_items:
        -
          color: 00C800
          item:
            host: 'Cambium - ePMP 3000 APs'
            key: Downlink_Utilization
        -
          sortorder: '1'
          color: 0000C8
          item:
            host: 'Cambium - ePMP 3000 APs'
            key: Sub_Link_Count
    -
      uuid: 34370a229448433ea020cf9e64bd0c49
      name: Traffic
      graph_items:
        -
          drawtype: FILLED_REGION
          color: '009900'
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 2000 APs'
            key: Ethernet_InBytes
        -
          sortorder: '1'
          drawtype: FILLED_REGION
          color: 0000EE
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 2000 APs'
            key: Ethernet_OutBytes
        -
          sortorder: '2'
          drawtype: BOLD_LINE
          color: 99FF99
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 2000 APs'
            key: Rf_OutBytes
        -
          sortorder: '3'
          drawtype: BOLD_LINE
          color: 9999FF
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 2000 APs'
            key: Rf_InBytes
        -
          sortorder: '4'
          color: DD0000
          item:
            host: 'Cambium - ePMP 2000 APs'
            key: Sub_Link_Count
    -
      uuid: b71a7b5ea4b645879b852223137838d7
      name: Traffic
      graph_items:
        -
          drawtype: FILLED_REGION
          color: '009900'
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 3000 APs'
            key: Ethernet_InBytes
        -
          sortorder: '1'
          drawtype: FILLED_REGION
          color: 0000EE
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 3000 APs'
            key: Ethernet_OutBytes
        -
          sortorder: '2'
          drawtype: BOLD_LINE
          color: 99FF99
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 3000 APs'
            key: Rf_OutBytes
        -
          sortorder: '3'
          drawtype: BOLD_LINE
          color: 9999FF
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP 3000 APs'
            key: Rf_InBytes
        -
          sortorder: '4'
          color: DD0000
          item:
            host: 'Cambium - ePMP 3000 APs'
            key: Sub_Link_Count

1 Like
zabbix_export:
  version: '6.0'
  date: '2022-09-20T22:12:49Z'
  groups:
    -
      uuid: 4519a908954a4de4bf34d72e74fb0196
      name: 'Customer Point to Point'
  templates:
    -
      uuid: 3bd714ddbf9b4a009cf3841247072a79
      template: 'Cambium - ePMP PtoP Master'
      name: 'Cambium - ePMP PtoP Master'
      description: 'Template to track usage on ePMP radios'
      groups:
        -
          name: 'Customer Point to Point'
      items:
        -
          uuid: acf55a150725453d9445b2ba9ad8c383
          name: DLAvailableFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.52.0
          key: DL_A_FrameCount
          delay: 5m
          units: Frames
          description: 'Downlink Available Frame Count'
          request_method: POST
        -
          uuid: b615fcf0c75e431288d80d7c6474c729
          name: DLUsedFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.54.0
          key: DL_U_FrameCount
          delay: 5m
          units: Frames
          description: 'Downlink Used Frame Count'
          request_method: POST
        -
          uuid: 46448e4ef70c423199328cad079e01f6
          name: 'Radio Downlink Frame Utilization'
          type: CALCULATED
          key: Downlink_Utilization
          delay: 5m
          units: '%'
          params: '100*last(//DL_U_FrameCount)/last(//DL_A_FrameCount)'
          description: 'Downlink Frame Utilization'
          request_method: POST
        -
          uuid: 827f0db20c504a109d80e78f931e793a
          name: 'Ethernet Traffic In'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","LAN interface 1"]'
          key: Ethernet_InBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 2216c6c14efa4cac82e7bb8c484f5ec2
          name: 'Ethernet Traffic Out'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","LAN interface 1"]'
          key: Ethernet_OutBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 6ef61fae10b749b88195c9b7e20ecc84
          name: 'RF Traffic In'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","WLAN interface"]'
          key: Rf_InBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: c0bb0fb1799245d18f082e91754f7712
          name: 'RF Traffic Out'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","WLAN interface"]'
          key: Rf_OutBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 73bd116f81a24aa59b72683339391155
          name: ULAvailableFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.51.0
          key: UL_A_FrameCount
          delay: 5m
          units: Frames
          description: 'Uplink Available Frame Count'
          request_method: POST
        -
          uuid: 131a82e8d032479bb3706a1218d398f1
          name: ULUsedFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.53.0
          key: UL_U_FrameCount
          delay: 5m
          units: Frames
          description: 'Uplink Used Frame Count'
          request_method: POST
    -
      uuid: be9ca3e6d9324315a49154f0ff3319e7
      template: 'Cambium - ePMP PtoP Slave'
      name: 'Cambium - ePMP PtoP Slave'
      description: 'Template to track usage on ePMP radios'
      groups:
        -
          name: 'Customer Point to Point'
      items:
        -
          uuid: 1a5ed6ee55334706b5b86d25167a4532
          name: DLAvailableFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.52.0
          key: DL_A_FrameCount
          delay: 5m
          units: Frames
          description: 'Downlink Available Frame Count'
          request_method: POST
        -
          uuid: f45c32dfb85d425981bcc8f2bbdf0dd9
          name: DLUsedFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.54.0
          key: DL_U_FrameCount
          delay: 5m
          units: Frames
          description: 'Downlink Used Frame Count'
          request_method: POST
        -
          uuid: 57948b738d054e93b709a8d0e6d690c1
          name: 'Radio Downlink Frame Utilization'
          type: CALCULATED
          key: Downlink_Utilization
          delay: 5m
          units: '%'
          params: '100*last(//DL_U_FrameCount)/last(//DL_A_FrameCount)'
          description: 'Downlink Frame Utilization'
          request_method: POST
        -
          uuid: e4e031f7d7da47dabb2e5551f7f7e440
          name: 'Ethernet Traffic In'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","LAN interface 1"]'
          key: Ethernet_InBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 14a74bddf0d140878ff459723aae717c
          name: 'Ethernet Traffic Out'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","LAN interface 1"]'
          key: Ethernet_OutBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: a5b781252ab147439b275ebca72227e2
          name: 'RF Traffic In'
          type: SNMP_AGENT
          snmp_oid: 'ifHCInOctets["index","ifDescr","WLAN interface"]'
          key: Rf_InBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: 3677a98c391849daabc92c4237068cf1
          name: 'RF Traffic Out'
          type: SNMP_AGENT
          snmp_oid: 'ifHCOutOctets["index","ifDescr","WLAN interface"]'
          key: Rf_OutBytes
          delay: 5m
          value_type: FLOAT
          units: bps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
            -
              type: MULTIPLIER
              parameters:
                - '8'
          request_method: POST
        -
          uuid: e071953dec00451da0b0947bf53051ae
          name: ULAvailableFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.51.0
          key: UL_A_FrameCount
          delay: 5m
          units: Frames
          description: 'Uplink Available Frame Count'
          request_method: POST
        -
          uuid: f9527f5d3ed7482c9f3e76da3b5ea61d
          name: ULUsedFrame
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.4.1.17713.21.2.1.53.0
          key: UL_U_FrameCount
          delay: 5m
          units: Frames
          description: 'Uplink Used Frame Count'
          request_method: POST
  graphs:
    -
      uuid: 7a5f3fe3d5814c68a7679c16f334af9b
      name: Traffic
      graph_items:
        -
          drawtype: FILLED_REGION
          color: '009900'
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP PtoP Master'
            key: Ethernet_InBytes
        -
          sortorder: '1'
          drawtype: FILLED_REGION
          color: 0000EE
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP PtoP Master'
            key: Ethernet_OutBytes
        -
          sortorder: '2'
          drawtype: BOLD_LINE
          color: 99FF99
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP PtoP Master'
            key: Rf_OutBytes
        -
          sortorder: '3'
          drawtype: BOLD_LINE
          color: 9999FF
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP PtoP Master'
            key: Rf_InBytes
    -
      uuid: 8736e75c24c543438f966e039c7e10ba
      name: Traffic
      graph_items:
        -
          drawtype: FILLED_REGION
          color: '009900'
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP PtoP Slave'
            key: Ethernet_InBytes
        -
          sortorder: '1'
          drawtype: FILLED_REGION
          color: 0000EE
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP PtoP Slave'
            key: Ethernet_OutBytes
        -
          sortorder: '2'
          drawtype: BOLD_LINE
          color: 99FF99
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP PtoP Slave'
            key: Rf_OutBytes
        -
          sortorder: '3'
          drawtype: BOLD_LINE
          color: 9999FF
          yaxisside: RIGHT
          item:
            host: 'Cambium - ePMP PtoP Slave'
            key: Rf_InBytes
1 Like

Hi
Robert_Saunders Could you share the .xml of your configuration? I tried passing the text through yaml and when importing it gives an error. thanks

zbx_export_templates (2).txt (333.5 KB)

if you message me I may be able to help with the errors. I found a while back deleting every line that has the uuid tags sometimes fixes import issues but sometimes makes them worse. anyways attached is our cambium items templates for zabbix, this includes 450s, 450m, 450i, cmm3 and cmm4, epmp 2k and 3k as well as tpt setup, fsk ofdm and pps aps, 820s, as well as a couple other custom ones

3 Likes

Hello I was just wondering what tools and or techniques did you use in order to create these templates?

1 Like

I exported directly from my instance to make these but in the past I have used mib to zabbix tutorial found at Convert MIBs Files to Zabbix Templates - Zabbix Tutorials and mib’s found at MIB files repository or on the manufacturers website if available

2 Likes

Thank you for responding I will take some time and look at the resources you provided.

forgot to mention I use manage engine’s free mib browser to connect to the equipment and find the root i am trying to get information from. its a little hairy to get set up but once you do its a great little tool