Network Management

last person joined: an hour ago 

Keep an informative eye on your network with HPE Aruba Networking network management solutions
Expand all | Collapse all

Airwave Licensing Log or Report

This thread has been viewed 0 times
  • 1.  Airwave Licensing Log or Report

    Posted Sep 25, 2014 01:16 PM

    We are running Airwave 7.7.12 and have a requirement to view history of license (Airwave, not controller) adds, changes, or deletes.  In addition to the user guide and Airhead community, I have searched through the report definitions in Airwave without success.

     

    A log file would also be acceptable if a report is not possible.

     

    Thank you in advance for your assistance!

     

    Don



  • 2.  RE: Airwave Licensing Log or Report

    EMPLOYEE
    Posted Sep 26, 2014 12:30 PM

    There's nothing directly from the UI available to accomplish this.  You'll have to get if from a database query:

    # dbc 'select * from license_history;' >> /tmp/amp_license_history.txt

     

    The time associated to the license will be in epoch time, but you can easily change that to human readable form with epoch2timestamp

     

    Example:

     

    [root@rob ~]# dbc 'select * from license_history'
    id | product_version | accepted_by | license | accepted_on
    ----+-----------------+-------------+------------------------------------------------------------------+-------------
    1 | 7.7.10 | admin | --- Begin AMP License Key --- +| 1411578638

    [root@rob ~]# epoch2timestamp 1411578638

    Wed Sep 24 13:10:38 EDT 2014

     

    From the above, I know that the admin user applied this license on 9/24 @ 1pm ET.  This table only catches licenses added (changing a license shows as a new row in that table).  It will not reflect deletes.



  • 3.  RE: Airwave Licensing Log or Report

    Posted Sep 29, 2014 10:54 AM
    this is great