07-09-2019 05:20 AM
07-09-2019 12:20 PM
07-12-2019 01:06 AM
07-18-2019 08:14 AM
07-23-2019 04:18 AM
If the Sonos speakers are connecting wirelessly through a particulat WLAN (created on Unleashed Master), then you can run the commands as below from Master CLI:
ruckus> en
ruckus# config
You have all rights in this mode.
ruckus(config)# wlan "Test" [instead of "Test" use the correct WLAN name] The WLAN service 'Test' has been loaded. To save the WLAN service, type 'end' or 'exit'.
ruckus(config-wlan)# no qos directed-multicast The command was executed successfully. To save the changes, type 'end' or 'exit'.
ruckus(config-wlan)# qos directed-threshold 0 The command was executed successfully. To save the changes, type 'end' or 'exit'.
ruckus(config-wlan)# end
The WLAN service 'Test' has been updated and saved.
Your changes have been saved.
ruckus(config)# end
Your changes have been saved.
If the Sonos speakers are connected to eth ports of the APs then we can run the below commands too:
ruckus# debug
You have all rights in this mode.
ruckus(debug)# remote_ap_cli -A "set qos eth0 igmp disable" [instead of "eth0" use the particular eth interface to which Sonos is connected]
---- Command 'rkscli -c "set qos eth0 igmp disable "' executed at ec:58:ea:36:6f :50
IGMP Snooping is Disabled on interface eth0 OK
---- Command 'rkscli -c "set qos eth0 igmp disable "' executed at f0:3e:90:10:62 :f0
IGMP Snooping is Disabled on interface eth0 OK
---- Command Execution Summary:
success: 2
failure: 0
total: 2
remote_ap_cli "-A" ""set" "qos" "eth0" "igmp" "disable"" [instead of "eth0" use the particular eth interface to which Sonos is connected] ruckus(debug)# ruckus(debug)# ruckus(debug)# remote_ap_cli -A "set qos eth0 directed multicast disable"
---- Command 'rkscli -c "set qos eth0 directed multicast disable "' executed at ec:58:ea:36:6f:50
Directed Multicast ingress packet processing is Disabled on interface eth0 OK
---- Command 'rkscli -c "set qos eth0 directed multicast disable "' executed at f0:3e:90:10:62:f0
Directed Multicast ingress packet processing is Disabled on interface eth0 OK
---- Command Execution Summary:
success: 2
failure: 0
total: 2
remote_ap_cli "-A" ""set" "qos" "eth0" "directed" "multicast" "disable""
I hope this helps.