Network Management

last person joined: yesterday 

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

Cannot delete or unignore device in Airwave

This thread has been viewed 1 times
  • 1.  Cannot delete or unignore device in Airwave

    Posted Sep 22, 2015 09:01 AM

    Hi,

     

    I'm trying put back in the new device list a device that was once ignored.

    In the webUI neither the delete button or unignore works, clicking on them will only show me a message about the licensing. As shown on the screenshot bellow :

     

    1-bouton.png

     

    Here's the result of clicking on one of those button :

    3-result.png

    Can anyone help ?



  • 2.  RE: Cannot delete or unignore device in Airwave

    EMPLOYEE
    Posted Sep 22, 2015 09:03 AM
    Looks like you're out of licenses. You'll need to add more or delete some existing devices. 


    Thanks, 
    Tim


  • 3.  RE: Cannot delete or unignore device in Airwave

    Posted Sep 22, 2015 09:06 AM

    I'm not out of licences, as you can see I'm at 98% of my limit, with still 31 remaining licenses.

    Adding new devices from the "New devices" list still works alright.

     

    4-licences.png



  • 4.  RE: Cannot delete or unignore device in Airwave
    Best Answer

    Posted Sep 23, 2015 02:52 PM

    For anyone looking for a fix to this problem, i got it from Aruba Support :

     

    #dbc 'update ap set state = 0 where state =3;'

     

    The corresponding command will move the all the APs in Ignored List to New Devices List.



  • 5.  RE: Cannot delete or unignore device in Airwave

    EMPLOYEE
    Posted Sep 25, 2015 01:18 PM

    That's surprising since I'm able to both unignore and delete.  What version of AirWave code are you running?  I tested on 8.0.9



  • 6.  RE: Cannot delete or unignore device in Airwave

    Posted Sep 30, 2015 09:57 AM

    I had the problem on version 8.0.9, then trying to fix it I upgraded to 8.0.9.1, still the same problem.

    It seems the problem only appear when you are using 95% or more licences.



  • 7.  RE: Cannot delete or unignore device in Airwave

    Posted Jan 04, 2016 01:40 PM

    Sorry to drum up an old topic, but I just ran into this issue this morning.  I am using 93% of my licenses.

     

    Running 8.0.9.1, I am unable to unignore or delete devices in my ignore list.

     



  • 8.  RE: Cannot delete or unignore device in Airwave

    EMPLOYEE
    Posted Jan 04, 2016 02:14 PM

    Do you happen to know how many ignored devices you have?  Did you try setting all ignored devices to new devices?

    #dbc 'select count(*) from ap where state = 3;'

    #dbc 'update ap set state = 0 where state = 3;'

     



  • 9.  RE: Cannot delete or unignore device in Airwave

    Posted Jan 04, 2016 02:17 PM

    I had 129 ignored devices.  I was able to set them all back to new using:

     

    #dbc 'update ap set state = 0 where state = 3;'



  • 10.  RE: Cannot delete or unignore device in Airwave

    Posted Sep 30, 2015 02:44 PM

    @MrWind wrote:

    For anyone looking for a fix to this problem, i got it from Aruba Support :

     

    #dbc 'update ap set state = 0 where state =3;'

     

    The corresponding command will move the all the APs in Ignored List to New Devices List.


    Mr Wind, this worked and my devices are now in the new category. Thanks!