This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

NPM monitoring Gigabit interfaces as Megabit interfaces

We are moving nodes from an old NPM to a new one.  The gigabit intefaces are showing as megabit interfaces and  thus giving extremely skewed measurements.  Is ther a way to correct this without having to manually doing this on the individual interfaces one at a time.

  • You can rediscover the interfaces, but if that doesn't work, the quickest way would be a direct SQL query into the database.  One thing do to would be to create an interface custom property that could be a yes/no property called Properly_Set.  Leave all the ones that are incorrect unchecked then you can do something like this.

    Update Interfaces Set InBandwidth = 10000000, OutBandwidth = 10000000 Where Properly_Set = 'False'

    This should get the bandwidth set for you. 

    Please note that you may need another 0 for this.

    Regards,

    Matthew Harvey

    Loop1 Systems

    http://www.loop1systems.com

    Putting Knowledge Into Motion

  • Update also Interfaces.CustomBandwidth column to 1 otherwise the Bandwidths could be overwritten with polled ifSpeed.