Access Sonos from a different VLAN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2019 05:20 AM
We currently have installed a Draytek Vigor 2952, 9x Ruckus ICX 7150 and a Ruckus ZD1200 with 9 Ruckus R510 access points.
The Sonos units are in VLAN9 with the Crestron touch panels and we're trying to get the Sonos units to play from VLAN5 which is the "Owner" VLAN. The VLANS are set up and working just fine, the only problem we have is with Sonos. Any ideas or pointers why can't we see the Sonos units from VLAN5 ?
Thank you,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2019 12:20 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2019 01:06 AM
https://github.com/alsmith/multicast-relay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2019 08:14 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.

