Open
Description
In Proneta, when a device is assigned an IP suite, right clicking the device in the Graphical View, there is an optional to edit additional I&M data:
A dialog pops up with several options:
If I change any of these options and hit set, the Proneta request appears to do nothing.
The Wireshark trace shows that the AR connect request has been rejected with code "Error in Parameter ARType":
Here is the detailed connect packet from Proneta:
You can see that the ARType
is 0x0006 DeviceAccess AR
.
Tracking this down, the following function will reject any ARs that are not PF_ART_IOCAR_SINGLE
:
int pf_cmdev_check_ar_type (uint16_t ar_type)
{
int ret = -1;
if (ar_type == PF_ART_IOCAR_SINGLE)
{
ret = 0;
}
return ret;
}
Are there any plans to support IM record updates or any easy way to enable them?
Thanks!