Menu

Network Interface Speed - 10 GB ??

2013-09-05
2013-09-06
  • Eric Balestié

    Eric Balestié - 2013-09-05

    Hi

    I can't fill a value greater than 1000 in the "Speed Network Interface" Form.
    Unfortunately, I have a lot of network interfaces 10 GB and I would like to indicate in iTOP.

    Is it possible to consider this?

    Thanks

    EB

     
  • Alexander K.

    Alexander K. - 2013-09-06

    Hi Eric,

    as workaround you could "hack" the datamodel (datamodel.itop-config-mgmt.xml) or just create your own extension module.

    To allow 10.000 (10 GB) as speed, the digits value has to be changed from 6 to 7:

     <class id="IPInterface">
          <properties>
          </properties>
          <fields>
            <field id="speed" xsi:type="AttributeDecimal" _delta="redefine">
              <sql>speed</sql>
              <default_value/>
              <is_null_allowed>true</is_null_allowed>
              <digits>7</digits>   <!-- ---- changed from 6 to 7 ----- -->
              <decimals>2</decimals>
            </field>
          </fields>
          <methods/>
          <presentation>
          </presentation>
    </class>
    

    Hope that helps...

    Best regards
    Alexander

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.