Ask Your Question
0

Assign names to Zigbee addresses

asked 2022-12-30 20:23:07 +0000

AndreKR gravatar image

When I'm sniffing Zigbee traffic, is it possible to map those addresses to names so that instead of 0xa8c6 it would show for example Bedroom dimmer?

screenshot

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-01-02 23:31:43 +0000

Chuckc gravatar image

updated 2023-01-02 23:38:05 +0000

The mapping to "Broadcast" is hard coded (packet-ieee802154.c):

    if (ieee_802_15_4_short_addr == 0xffff)
    {
        (void) g_strlcpy(buf, "Broadcast", buf_len);
        return 10;
    }


There is an open issue (15487: Add ability to resolve EUI-64 MAC address via ethers file) that also discusses short names and includes a Lua post dissector to set names.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2022-12-30 20:23:07 +0000

Seen: 402 times

Last updated: Jan 02 '23