First time here? Check out the FAQ!
THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.
0

Assign names to Zigbee addresses

  • retag add tags

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

AndreKR's avatar
3
AndreKR
asked 2022-12-30 20:23:07 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

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.

Chuckc's avatar
3k
Chuckc
answered 2023-01-02 23:31:43 +0000, updated 2023-01-02 23:38:05 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer