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

Homeplug AV

  • retag add tags

Wireshark Version 3.0.6 (compiled from source under ubuntu 18.04 LTS) shows:

HomePlug AV protocol

MAC Management Header
    .... ...1 = Version: 1.1 (1)
    Type: CM_BRG_INFO.CNF (Get Bridge Informations Confirmation) (0x6021)
        .... ..01 = LSB: Confirm (0x1)
        .... .00. = MSB: STA - Central Coordinator (0x0)
    Fragmentation Info: 0x0000
        .... 0000 = Fragment count: 0
        0000 .... = Fragment index: 0
        Fragment Sequence number: 0
Get Bridge Informations Confirmation

0x6021 is Station - Station is .... .00. = MSB: STA - Central Coordinator (0x0) a bug?

I changed

#define HOMEPLUG_AV_MMTYPE_MSB_MASK       0x06

in packet-homeplug-av.c to

#define HOMEPLUG_AV_MMTYPE_MSB_MASK       0xE0

then Wireshark shows: HomePlug AV protocol

MAC Management Header
    .... ...1 = Version: 1.1 (1)
    Type: CM_BRG_INFO.CNF (Get Bridge Informations Confirmation) (0x6021)
        .... ..01 = LSB: Confirm (0x1)
        011. .... = MSB: STA - STA (0x3)
    Fragmentation Info: 0x0000
        .... 0000 = Fragment count: 0
        0000 .... = Fragment index: 0
        Fragment Sequence number: 0
Get Bridge Informations Confirmation
uli's avatar
1
uli
asked 2019-10-28 20:31:47 +0000, updated 2019-10-28 20:34:01 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

0

See the Wiki page on Submitting Patches for info on how to submit your proposed change.

grahamb's avatar
23.8k
grahamb
answered 2019-10-28 21:38:24 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

This looks like bug 16158; a fix will be in the next 2.6.x and 3.0.x releases, which are currently scheduled for 2019-12-04.

Guy Harris's avatar
19.9k
Guy Harris
answered 2019-10-29 03:14:26 +0000
edit flag offensive 0 remove flag delete link

Comments

thanks, yes it is this bug and my proposed fix is in this bugfix.I will wait for next release.

uli's avatar uli (2019-10-29 11:10:02 +0000) edit
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