Rahul
|
098f3340b1
|
mcastmngr: add support for stats
ubus call added to fetch igmp stats, format is,
ubus call mcast stats
Sample output:
root@iopsys:~# ubus call mcast stats
{
"snooping": [
{
"interface": "br-lan",
"groups": [
{
"group_address": "225.10.10.20",
"associated_devices": [
{
"host_address": "192.168.1.152",
"source_interface": "eth1",
"timeout": "258"
}
]
},
{
"group_address": "225.10.10.2",
"associated_devices": [
{
"host_address": "192.168.1.146",
"source_interface": "eth0",
"timeout": "259"
}
]
}
]
}
]
}
|
2020-06-14 13:26:12 +05:30 |
|