IGMP snooping advanced settings

Hi Guys,

I thought that I come up with this. IGMP snooping is great feature but how about adding the IGMP version and the MLD snooping version to the management interface? Recently I used Dante a lot of times and I didn’t find a convenient way to show the MDB table. I ended up using SSH and tail-f /var/log/messages to see why my Dante network isn’t working when I enable IGMP snooping. I didn’t have success yet but I’m trying.

Have a nice day,

Adam

1 Like

We’ve tested Dante successfully in our own labs, so hopefully you should be able to get to the bottom of the issue. If you want to look at the current IGMP state of the switch, do “cat /var/run/igmpd-state.json | jq” and you can see what IP addresses map to what ports.

2 Likes

Many thanks !
I found out that the PTPv1 clock is not forwarded to my laptop where Dante controller is open. The AVIO is on port 1, the laptop is on port 9 and the uplink is 16. I figured out that the index starts at 0.

It’s not confidential so I paste the output here:

root@NFR-S16:~# cat /var/run/igmpd-state.json | jq
[
{
“sip4”: “0.0.0.0”,
“dip4”: “239.255.255.251”,
“vlan”: 1,
“portmask”: 32768,
“macs”: [
{
“p”: [
15
],
“mac”: “6c1c7185b93d”,
“seen”: 740
}
]
},
{
“sip4”: “0.0.0.0”,
“dip4”: “224.0.0.252”,
“vlan”: 1,
“portmask”: 32768,
“macs”: [
{
“p”: [
15
],
“mac”: “0017c83dc98e”,
“seen”: 4006
},
{
“p”: [
15
],
“mac”: “000c2973df70”,
“seen”: 864
}
]
},
{
“sip4”: “0.0.0.0”,
“dip4”: “239.255.255.250”,
“vlan”: 1,
“portmask”: 32768,
“macs”: [
{
“p”: [
15
],
“mac”: “0017c83dc98e”,
“seen”: 4010
},
{
“p”: [
15
],
“mac”: “743fc299cbfb”,
“seen”: 861
},
{
“p”: [
15
],
“mac”: “347e5c37cd5a”,
“seen”: 746
},
{
“p”: [
15
],
“mac”: “38420b980a5e”,
“seen”: 742
},
{
“p”: [
15
],
“mac”: “e0ca3c4fd85a”,
“seen”: 738
},
{
“p”: [
15
],
“mac”: “b827eb443fcd”,
“seen”: 499
},
{
“p”: [
15
],
“mac”: “6c1c7185b93d”,
“seen”: 742
}
]
},
{
“sip4”: “0.0.0.0”,
“dip4”: “224.0.1.129”,
“vlan”: 1,
“portmask”: 1,
“macs”: [
{
“p”: [
0
],
“mac”: “001dc154c5f2”,
“seen”: 40940
}
]
},
{
“sip4”: “0.0.0.0”,
“dip4”: “224.0.0.230”,
“vlan”: 1,
“portmask”: 1,
“macs”: [
{
“p”: [
0
],
“mac”: “001dc154c5f2”,
“seen”: 40940
}
]
},
{
“sip4”: “0.0.0.0”,
“dip4”: “239.255.255.255”,
“vlan”: 1,
“portmask”: 32769,
“macs”: [
{
“p”: [
15
],
“mac”: “7e196e631404”,
“seen”: 40630
},
{
“p”: [
0
],
“mac”: “001dc154c5f2”,
“seen”: 40940
}
]
}
]

1 Like