It´s have a problema with the devices from vendor RADWIN Inc.
The attributes port_admin_status and port_oper_status of this devices no show the status.
The vendor certification with was discovered is "Interfaces".
![image.png]()
When I consulting this parameter from DB vertica the parameters its empty.
This is a example.
drdata=> SELECT item_id, item_name, item_alternate_name, device_primary_ip, port_admin_status,port_oper_status, port_speed_in, port_speed_out, port_type FROM dauser.dim_item where item_id='527086';
item_id | item_name | item_alternate_name | device_primary_ip | port_admin_status | port_oper_status | port_speed_in | port_speed_out | port_type
---------+-----------------+---------------------+-------------------+-------------------+------------------+---------------+----------------+-----------
527086 | Radio Interface | Radio Interface | 10.179.121.148 | | | 0 | 0 | 39
(1 row)
drdata=> SELECT item_id, item_name, item_alternate_name, device_primary_ip, port_admin_status,port_oper_status, port_speed_in, port_speed_out, port_type FROM dauser.dim_item where item_id='527085';
item_id | item_name | item_alternate_name | device_primary_ip | port_admin_status | port_oper_status | port_speed_in | port_speed_out | port_type
---------+------------------------+------------------------+-------------------+-------------------+------------------+---------------+----------------+-----------
527085 | Management Port on Odu | Management Port on Odu | 10.179.121.148 | | | 100000000 | 100000000 | 6
(1 row)
But,If I consulting for example a device CISCO, the parameters its correct.
drdata=> SELECT item_id, item_name, item_alternate_name, device_primary_ip, port_admin_status,port_oper_status, port_speed_in, port_speed_out, port_type FROM dauser.dim_item where item_id='260733';
item_id | item_name | item_alternate_name | device_primary_ip | port_admin_status | port_oper_status | port_speed_in | port_speed_out | port_type
---------+-----------+---------------------+-------------------+-------------------+------------------+---------------+----------------+-----------
260733 | Gi0 | Gi0 | 10.70.126.100 | 1 | 2 | 1000000000 | 1000000000 | 6
(1 row)
I need to resolve this problem.