DX NetOps

 View Only
  • 1.  Any way to override speed in/out parameter in an automatic way?

    Posted Oct 27, 2021 05:46 AM
    Hello

    Any way to override speed in/out parameter in an automatic way?

    When we have multiple interfaces that we need to change this parameter what is the best way to do it?

    Thank you.

    BR
    Bruno Sousa


  • 2.  RE: Any way to override speed in/out parameter in an automatic way?

    Broadcom Employee
    Posted Oct 27, 2021 09:41 AM
    If you have the DA item_id of the interfaces, you can use DA rest to update SpeedIn and SpeedOut overrides.

    Per DA interface item_id
    PUT action to URL http://DAHOST:8581/rest/ports/<DA port item_id>

    Body for Set (replace SPEED with the new speed in and/or speed out values)
    <Port version="1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SpeedInOverride>SPEED</SpeedInOverride><SpeedOutOverride>SPEED</SpeedOutOverride>
    </Port>

    If needing to Clear the overrides and reset to SNMP read values:
    <Port version="1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SpeedInOverride xsi:nil="true"></SpeedInOverride><SpeedOutOverride xsi:nil="true"></SpeedOutOverride>
    </Port>


  • 3.  RE: Any way to override speed in/out parameter in an automatic way?
    Best Answer

    Broadcom Employee
    Posted Oct 27, 2021 04:00 PM
    See the Article ID: 93510 - Is it possible to override the speed of an interface via REST?
    https://knowledge.broadcom.com/external/article?articleId=93510