@franktonjes To make it more clear to you:
As you can see at the beginning of this thread, I tried to query those attributes:
<rs:requested-attribute id="0x11f6f" /> <!-- ifName -->
<rs:requested-attribute id="0x12d7f" /> <!-- Network Address -->
<rs:requested-attribute id="0x12dbb" /> <!-- IP Address -->
<rs:requested-attribute id="0x10e3f" /> <!-- ifAdminStatus -->
<rs:requested-attribute id="0x10e40" /> <!-- ifOperStatus -->
<rs:requested-attribute id="0x1134b" /> <!-- ifDesc -->
<rs:requested-attribute id="0x11f7e" /> <!-- ifAlias -->
<rs:requested-attribute id="0x11f6b" /> <!-- ifHighSpeed -->
<rs:requested-attribute id="0x1134c" /> <!-- ifType -->
and it was very slow....
Erich, advised to me to get rid of all attributes with "E" flag. That what I did, and changed my query to this:
<rs:requested-attribute id="0x1006e" /> <!-- Model Name -->
<rs:requested-attribute id="0x10032" /> <!-- Manufacturer -->
<rs:requested-attribute id="0x12a1f" /> <!-- ComponentNickName -->
<rs:requested-attribute id="0x12d7f" /> <!-- Network Address -->
<rs:requested-attribute id="0x12dbb" /> <!-- IP Address -->
<rs:requested-attribute id="0x5b6000e" /> <!-- USMPortAdminStatus -->
<rs:requested-attribute id="0x11ac8" /> <!-- RPOperStatus -->
<rs:requested-attribute id="0x230017" /> <!-- Description -->
<rs:requested-attribute id="0x11f82" /> <!-- Internal_If_Alias -->
<rs:requested-attribute id="0x12bb3" /> <!-- PortSpeed -->
<rs:requested-attribute id="0x12dfa" /> <!-- X_IfType -->
I didn't want 0x230017 (Description) specifically. I was trying to find something instead of 0x1134b (ifDesc) that was not "External". And it was still very slow, apparently because of this one 0x230017 attribute.
Finally, I have changed it (0x230017 ) to 0x129e0 (HWComponentDescription ) and it started working fast enough:
<rs:requested-attribute id="0x1006e" /> <!-- Model Name -->
<rs:requested-attribute id="0x10032" /> <!-- Manufacturer -->
<rs:requested-attribute id="0x12a1f" /> <!-- ComponentNickName -->
<rs:requested-attribute id="0x12d7f" /> <!-- Network Address -->
<rs:requested-attribute id="0x5b6000e" /> <!-- USMPortAdminStatus -->
<rs:requested-attribute id="0x11ac8" /> <!-- RPOperStatus -->
<rs:requested-attribute id="0x129e0" /> <!-- HWComponentDescription -->
<rs:requested-attribute id="0x11f82" /> <!-- Internal_If_Alias -->
<rs:requested-attribute id="0x12bb3" /> <!-- PortSpeed -->
<rs:requested-attribute id="0x12dfa" /> <!-- X_IfType -->