DX Unified Infrastructure Management

 View Only
  • 1.  NPC Query for InterfaceID

    Posted Aug 09, 2016 03:14 PM

    Hello all, its posible to run a query to get all InterfaceID from Netqos PC ?  ( IfName, InterfaceID )

     

    Thanks

     

    Diego MP



  • 2.  Re: NPC Query for InterfaceID
    Best Answer

    Broadcom Employee
    Posted Aug 09, 2016 06:01 PM

    netqosportal.t_interface is likely to be a good starting point...



  • 3.  Re: NPC Query for InterfaceID

    Posted Aug 09, 2016 08:54 PM

    Hi Diego. Is this the NPC product? If so you can query the table Chris mentioned:

     

    select itemid as InterfaceID,IfName from t_interface;



  • 4.  Re: NPC Query for InterfaceID

    Posted Aug 10, 2016 09:54 AM

    Thanks!

    i resolve it with this query

    \NETQOS\mysql51\bin>mysql nqrptr -t -e "select * from netqosportal.t_interface;" > t_interface_all.txt

     

    i need to group routers/interfaces with the itemID. =)

     

    Thanks

    Diego MP