Probing interface speed and Power mode

SysOP
New here

Probing interface speed and Power mode

Greetings. We are running a network with mostly MR44s and some APs randomly goes in to "Low Power Mode". Unfortunaltly there is no SNMP Trap, syslog or Webhook for this event and we would like to be notified somehow. 

 

The interface (Wired0) sometimes also go into 100Mbit instead of 1 Gigabit. Often due to old/bad cables. Same problem here. It's hardly impossible to manually check hundreds of APs manually. 

 

I tried to walk the MIB on the accesspoint. I have so far not found any interface speed or power mode status to poll. I also looked at APIs to extract this inforamtion.

I could check for changes at interface speed in the switch. Same for power that drops to 25 watt allocated instead of 30 watt. 

2 Replies 2
alemabrahao
Kind of a big deal
Kind of a big deal

Have you checked APIs for Event type?

 

 

https://developer.cisco.com/meraki/api-latest/#!get-network-events-event-types

 

or instead, you can monitor the switch ports where the APs are connected.

I am not a Cisco Meraki employee. My suggestions are based on documentation of Meraki best practices and day-to-day experience.

Please, if this post was useful, leave your kudos and mark it as solved.
sungod
Head in the Cloud

This call may have the info you need...

 

https://developer.cisco.com/meraki/api-v1/#!get-organization-wireless-devices-ethernet-statuses

 

It is org-wide, you could set up a script to run it every hour or some other period, and check for changes.

 

array[]
  • name:string

    The name of the AP

  • serial:string

    The serial number of the AP

  • -aggregation:object

    Aggregation details object

    • speed:integer

      Link Aggregation speed

    • enabled:boolean

      Link Aggregation enabled flag

  • -network:object

    Network details object

    • id:string

      The network ID the AP is associated to

  • -power:object

    Power details object

    • mode:string

      The PoE power mode for the AP. Can be 'full' or 'low'

    • -ac:object

      AC power details object

      • isConnected:boolean

        AC power connected

    • -poe:object

      PoE power details object

      • isConnected:boolean

        PoE power connected

  • -ports:array[]

    List of port details

    • name:string

      Label of the port

    • -linkNegotiation:object

      Link negotiation details object for the port

      • speed:integer

        The speed of the port

      • duplex:string

        The duplex mode of the port. Can be 'full' or 'half'

    • -poe:object

      PoE details object for the port

      • standard:string

        The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null

Get notified when there are additional replies to this discussion.