Skip to content

IM Data Cannot Set #557

Open
Open
@widavies

Description

@widavies

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:

image
A dialog pops up with several options:
image

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":

image

Here is the detailed connect packet from Proneta:
image

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions