<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Cisco Switch VLAN configuration for Ruckus Wifi Network in ZoneDirector</title>
    <link>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12356#M2731</link>
    <description>Hi,
&lt;BR /&gt;&lt;BR /&gt;
I'm struggling to have my Ruckus testing environment working how I would like and I'm looking for a working example configuration of a Cisco switch, that demonstrates how to implement a working wifi network, segregated with respective VLANs and Gateways.
&lt;BR /&gt;&lt;BR /&gt;
My main issue is that when I connect to the Guest network (for instance) I get an IP address in the 10.5.130.0/24 subnet, however I cannot ping my default gateway (the SVI VLAN 130 on the switch 10.5.130.1).
&lt;BR /&gt;&lt;BR /&gt;
My test network consists of the following:
&lt;BR /&gt;&lt;BR /&gt;
1 x Zone Director 1100 (10.5.10.50/24) (Access VLAN 10)
&lt;BR /&gt;
1 x Ruckus 7900 AP (DHCP Assigned from Cisco Switch (10.5.10.53/24)
&lt;BR /&gt;
4 x SSIDs - "Management" (Access VLAN 10), "Guest" (Access VLAN 130), "Corporate" (Access VLAN 140), "Staging" (Access VLAN 160)
&lt;BR /&gt;
1 x Cisco 3750x (with L3 capabilities)
&lt;BR /&gt;&lt;BR /&gt;
VLAN 10 Management - 10.5.10.0/24
&lt;BR /&gt;
VLAN 130 Guest Wifi - 10.5.130.0/24
&lt;BR /&gt;
VLAN 140  Corporate Wifi - 10.5.140.0/24
&lt;BR /&gt;
VLAN 160 Staging -10.6.6.0/24
&lt;BR /&gt;&lt;BR /&gt;
The current switch config I have is:
&lt;BR /&gt;&lt;BR /&gt;
ciscoswitch#show run int gi1/0/45
&lt;BR /&gt;
Building configuration...
&lt;BR /&gt;&lt;BR /&gt;
Current configuration : 208 bytes
&lt;BR /&gt;
!
&lt;BR /&gt;
interface GigabitEthernet1/0/45
&lt;BR /&gt;
 description ZD1000
&lt;BR /&gt;
 switchport trunk encapsulation dot1q
&lt;BR /&gt;
 switchport access vlan 10
&lt;BR /&gt;
 switchport trunk allowed vlan 1,10,50,130,150,160
&lt;BR /&gt;
 switchport mode trunk
&lt;BR /&gt;
 spanning-tree portfast
&lt;BR /&gt;
end
&lt;BR /&gt;&lt;BR /&gt;
ciscoswitch#show run int gi1/0/48
&lt;BR /&gt;
Building configuration...
&lt;BR /&gt;&lt;BR /&gt;
Current configuration : 198 bytes
&lt;BR /&gt;
!
&lt;BR /&gt;
interface GigabitEthernet1/0/48
&lt;BR /&gt;
 description Ruckus AP
&lt;BR /&gt;
 switchport trunk encapsulation dot1q
&lt;BR /&gt;
 switchport access vlan 10
&lt;BR /&gt;
 switchport trunk allowed vlan 1,10,130,140,150,160
&lt;BR /&gt;
 switchport mode trunk
&lt;BR /&gt;
 spanning-tree portfast
&lt;BR /&gt;
end
&lt;BR /&gt;&lt;BR /&gt;
(I've tinkered with "switchport trunk native vlan 10" on both ports above however this is disconnecting me as I've an SSH console session via the Wifi Management network)
&lt;BR /&gt;&lt;BR /&gt;
SVI's on the switch are:
&lt;BR /&gt;&lt;BR /&gt;
Vlan1                  unassigned      YES NVRAM  up                    up
&lt;BR /&gt;
Vlan10                 10.5.10.1       YES NVRAM  up                    up
&lt;BR /&gt;
Vlan130                10.5.130.1      YES manual up                    up
&lt;BR /&gt;
Vlan140                10.5.140.1     YES NVRAM  up                    up
&lt;BR /&gt;
Vlan150                10.5.150.1      YES NVRAM  up                    up
&lt;BR /&gt;
Vlan160                10.6.6.1        YES manual up                    up
&lt;BR /&gt;&lt;BR /&gt;
DHCP is configured on the switch as well (temporarily, will move to windows DHCP sever)
&lt;BR /&gt;&lt;BR /&gt;
ip dhcp excluded-address 10.5.140.1 10.5.140.9
&lt;BR /&gt;
ip dhcp excluded-address 10.5.130.1 10.5.130.9
&lt;BR /&gt;
ip dhcp excluded-address 10.5.10.1 10.5.10.50
&lt;BR /&gt;
ip dhcp excluded-address 10.5.10.60 10.5.10.255
&lt;BR /&gt;
ip dhcp excluded-address 10.6.6.1 10.6.6.49
&lt;BR /&gt;
ip dhcp pool Corporate-Test
&lt;BR /&gt;
 network 10.5.140.0 255.255.255.0
&lt;BR /&gt;
 default-router 10.5.140.1
&lt;BR /&gt;
 option 43 hex f104.0a05.0a32
&lt;BR /&gt;
 dns-server 10.5.5.41 10.5.5.42
&lt;BR /&gt;
 lease infinite
&lt;BR /&gt;
ip dhcp pool Guest-Test
&lt;BR /&gt;
 network 10.5.130.0 255.255.255.0
&lt;BR /&gt;
 default-router 10.5.130.1
&lt;BR /&gt;
 option 43 hex f104.0a05.0a32
&lt;BR /&gt;
 lease infinite
&lt;BR /&gt;
ip dhcp pool Management-Test
&lt;BR /&gt;
 network 10.5.10.0 255.255.255.0
&lt;BR /&gt;
 default-router 10.5.10.1
&lt;BR /&gt;
 option 43 hex f104.0a05.0a32
&lt;BR /&gt;
 lease infinite
&lt;BR /&gt;
ip dhcp pool Staging-Test
&lt;BR /&gt;
 network 10.6.6.0 255.255.255.0
&lt;BR /&gt;
 default-router 10.6.6.1
&lt;BR /&gt;
 dns-server 10.5.5.41 10.5.5.42
&lt;BR /&gt;
 option 43 hex f104.0a05.0a32
&lt;BR /&gt;
 lease infinite
&lt;BR /&gt;&lt;BR /&gt;
My fundamental understanding of how this all ties together is lacking. I don't understand if the Zone Director is responsible for switching any traffic, or if it's purely for management.
&lt;BR /&gt;&lt;BR /&gt;
Any help greatly appreciated.
&lt;BR /&gt;&lt;BR /&gt;
Many Thanks
&lt;BR /&gt;&lt;BR /&gt;
Steve</description>
    <pubDate>Wed, 12 Mar 2014 02:12:54 GMT</pubDate>
    <dc:creator>andrew_pilcher</dc:creator>
    <dc:date>2014-03-12T02:12:54Z</dc:date>
    <item>
      <title>Cisco Switch VLAN configuration for Ruckus Wifi Network</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12356#M2731</link>
      <description>Hi,
&lt;BR /&gt;&lt;BR /&gt;
I'm struggling to have my Ruckus testing environment working how I would like and I'm looking for a working example configuration of a Cisco switch, that demonstrates how to implement a working wifi network, segregated with respective VLANs and Gateways.
&lt;BR /&gt;&lt;BR /&gt;
My main issue is that when I connect to the Guest network (for instance) I get an IP address in the 10.5.130.0/24 subnet, however I cannot ping my default gateway (the SVI VLAN 130 on the switch 10.5.130.1).
&lt;BR /&gt;&lt;BR /&gt;
My test network consists of the following:
&lt;BR /&gt;&lt;BR /&gt;
1 x Zone Director 1100 (10.5.10.50/24) (Access VLAN 10)
&lt;BR /&gt;
1 x Ruckus 7900 AP (DHCP Assigned from Cisco Switch (10.5.10.53/24)
&lt;BR /&gt;
4 x SSIDs - "Management" (Access VLAN 10), "Guest" (Access VLAN 130), "Corporate" (Access VLAN 140), "Staging" (Access VLAN 160)
&lt;BR /&gt;
1 x Cisco 3750x (with L3 capabilities)
&lt;BR /&gt;&lt;BR /&gt;
VLAN 10 Management - 10.5.10.0/24
&lt;BR /&gt;
VLAN 130 Guest Wifi - 10.5.130.0/24
&lt;BR /&gt;
VLAN 140  Corporate Wifi - 10.5.140.0/24
&lt;BR /&gt;
VLAN 160 Staging -10.6.6.0/24
&lt;BR /&gt;&lt;BR /&gt;
The current switch config I have is:
&lt;BR /&gt;&lt;BR /&gt;
ciscoswitch#show run int gi1/0/45
&lt;BR /&gt;
Building configuration...
&lt;BR /&gt;&lt;BR /&gt;
Current configuration : 208 bytes
&lt;BR /&gt;
!
&lt;BR /&gt;
interface GigabitEthernet1/0/45
&lt;BR /&gt;
 description ZD1000
&lt;BR /&gt;
 switchport trunk encapsulation dot1q
&lt;BR /&gt;
 switchport access vlan 10
&lt;BR /&gt;
 switchport trunk allowed vlan 1,10,50,130,150,160
&lt;BR /&gt;
 switchport mode trunk
&lt;BR /&gt;
 spanning-tree portfast
&lt;BR /&gt;
end
&lt;BR /&gt;&lt;BR /&gt;
ciscoswitch#show run int gi1/0/48
&lt;BR /&gt;
Building configuration...
&lt;BR /&gt;&lt;BR /&gt;
Current configuration : 198 bytes
&lt;BR /&gt;
!
&lt;BR /&gt;
interface GigabitEthernet1/0/48
&lt;BR /&gt;
 description Ruckus AP
&lt;BR /&gt;
 switchport trunk encapsulation dot1q
&lt;BR /&gt;
 switchport access vlan 10
&lt;BR /&gt;
 switchport trunk allowed vlan 1,10,130,140,150,160
&lt;BR /&gt;
 switchport mode trunk
&lt;BR /&gt;
 spanning-tree portfast
&lt;BR /&gt;
end
&lt;BR /&gt;&lt;BR /&gt;
(I've tinkered with "switchport trunk native vlan 10" on both ports above however this is disconnecting me as I've an SSH console session via the Wifi Management network)
&lt;BR /&gt;&lt;BR /&gt;
SVI's on the switch are:
&lt;BR /&gt;&lt;BR /&gt;
Vlan1                  unassigned      YES NVRAM  up                    up
&lt;BR /&gt;
Vlan10                 10.5.10.1       YES NVRAM  up                    up
&lt;BR /&gt;
Vlan130                10.5.130.1      YES manual up                    up
&lt;BR /&gt;
Vlan140                10.5.140.1     YES NVRAM  up                    up
&lt;BR /&gt;
Vlan150                10.5.150.1      YES NVRAM  up                    up
&lt;BR /&gt;
Vlan160                10.6.6.1        YES manual up                    up
&lt;BR /&gt;&lt;BR /&gt;
DHCP is configured on the switch as well (temporarily, will move to windows DHCP sever)
&lt;BR /&gt;&lt;BR /&gt;
ip dhcp excluded-address 10.5.140.1 10.5.140.9
&lt;BR /&gt;
ip dhcp excluded-address 10.5.130.1 10.5.130.9
&lt;BR /&gt;
ip dhcp excluded-address 10.5.10.1 10.5.10.50
&lt;BR /&gt;
ip dhcp excluded-address 10.5.10.60 10.5.10.255
&lt;BR /&gt;
ip dhcp excluded-address 10.6.6.1 10.6.6.49
&lt;BR /&gt;
ip dhcp pool Corporate-Test
&lt;BR /&gt;
 network 10.5.140.0 255.255.255.0
&lt;BR /&gt;
 default-router 10.5.140.1
&lt;BR /&gt;
 option 43 hex f104.0a05.0a32
&lt;BR /&gt;
 dns-server 10.5.5.41 10.5.5.42
&lt;BR /&gt;
 lease infinite
&lt;BR /&gt;
ip dhcp pool Guest-Test
&lt;BR /&gt;
 network 10.5.130.0 255.255.255.0
&lt;BR /&gt;
 default-router 10.5.130.1
&lt;BR /&gt;
 option 43 hex f104.0a05.0a32
&lt;BR /&gt;
 lease infinite
&lt;BR /&gt;
ip dhcp pool Management-Test
&lt;BR /&gt;
 network 10.5.10.0 255.255.255.0
&lt;BR /&gt;
 default-router 10.5.10.1
&lt;BR /&gt;
 option 43 hex f104.0a05.0a32
&lt;BR /&gt;
 lease infinite
&lt;BR /&gt;
ip dhcp pool Staging-Test
&lt;BR /&gt;
 network 10.6.6.0 255.255.255.0
&lt;BR /&gt;
 default-router 10.6.6.1
&lt;BR /&gt;
 dns-server 10.5.5.41 10.5.5.42
&lt;BR /&gt;
 option 43 hex f104.0a05.0a32
&lt;BR /&gt;
 lease infinite
&lt;BR /&gt;&lt;BR /&gt;
My fundamental understanding of how this all ties together is lacking. I don't understand if the Zone Director is responsible for switching any traffic, or if it's purely for management.
&lt;BR /&gt;&lt;BR /&gt;
Any help greatly appreciated.
&lt;BR /&gt;&lt;BR /&gt;
Many Thanks
&lt;BR /&gt;&lt;BR /&gt;
Steve</description>
      <pubDate>Wed, 12 Mar 2014 02:12:54 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12356#M2731</guid>
      <dc:creator>andrew_pilcher</dc:creator>
      <dc:date>2014-03-12T02:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Switch VLAN configuration for Ruckus Wifi Network</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12357#M2732</link>
      <description>Steve:
&lt;BR /&gt;&lt;BR /&gt;
FYI: your "int Gi1/0/45" config specifies "switchport access vlan 10" but that has no effect when you're in trunking mode. ("switchport mode trunk")
&lt;BR /&gt;
If this config is working for you, you've probably configured your ZD1100 to work on VLAN10.
&lt;BR /&gt;&lt;BR /&gt;
An alternative would be to set "switchport trunk native vlan 10" on that port and leave the ZD1100's VLAN unconfigured.
&lt;BR /&gt;&lt;BR /&gt;
In order to allow the ZD1100 (or another DHCP server) to assign management VLAN IP addresses to your APs, you should use the "switchport trunk native vlan 10" config on "int Gi1/0/48" as well.
&lt;BR /&gt;&lt;BR /&gt;
If the ZD1100 (and the APs) are not using/supporting/providing tunneling, then the ZD1100 does not require a trunked port. An access port would do.
&lt;BR /&gt;
Configuring it with a trunk port will allow you to tunnel traffic back to a particular VLAN in the future.
&lt;BR /&gt;
While I don't recommend using the tunnel feature, it's a good idea to use a trunked switch port for your ZD just in case you need to tunnel in the future.</description>
      <pubDate>Fri, 21 Mar 2014 16:30:09 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12357#M2732</guid>
      <dc:creator>bill_burns_6069</dc:creator>
      <dc:date>2014-03-21T16:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Switch VLAN configuration for Ruckus Wifi Network</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12358#M2733</link>
      <description>Here's an article about the native vlan feature
&lt;BR /&gt;
&lt;A href="http://rednectar.net/2012/03/11/the-access-vlan-is-dead-long-live-the-native-vlan/" rel="nofollow"&gt;http://rednectar.net/2012/03/11/the-a...&lt;/A&gt;
&lt;BR /&gt;&lt;BR /&gt;
(Don't go overboard with the title, native vlans (and trunks) should only be deployed where they're needed)</description>
      <pubDate>Fri, 21 Mar 2014 17:55:54 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12358#M2733</guid>
      <dc:creator>bill_burns_6069</dc:creator>
      <dc:date>2014-03-21T17:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Switch VLAN configuration for Ruckus Wifi Network</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12359#M2734</link>
      <description>This is a fantastic doc, &lt;A href="http://www.examcollectionvce.com/vce-300-207.html" rel="nofollow"&gt;300-207 VCE&lt;/A&gt; I am also facing issue is configuring the multilple ssid with multiple vlans. I will try out this on monday ie tomorrow. I will get back to you in case I am facing any issue. &lt;A href="http://www.examcollectionvce.com/vce-300-208.html" rel="nofollow"&gt;300-208 VCE&lt;/A&gt;</description>
      <pubDate>Wed, 09 Mar 2016 06:11:44 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12359#M2734</guid>
      <dc:creator>john_vik</dc:creator>
      <dc:date>2016-03-09T06:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Switch VLAN configuration for Ruckus Wifi Network</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12360#M2735</link>
      <description>Is it possible with this config to keep the default on the vlan 600 side even though the BVI is addressed on vlan 1?&lt;BR /&gt;&lt;BR /&gt;Reason I ask is that vlan 600 (172.16.11.0/24) is on a guest network with a guest DSL internet connection. We want all wireless users to use that egress. However we still want to be able to manage the AP on the vlan 1 side (192.168.3.0/24) with no wireless on vlan 1.&lt;BR /&gt;&lt;A href="https://www.pass4sures.com/220-902.html" rel="nofollow" target="_blank"&gt;Pass4Sure 220-902&lt;/A&gt;</description>
      <pubDate>Wed, 08 Jun 2016 07:14:06 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12360#M2735</guid>
      <dc:creator>johnny_depp</dc:creator>
      <dc:date>2016-06-08T07:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Switch VLAN configuration for Ruckus Wifi Network</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12361#M2736</link>
      <description>I generally recommend that your WiFi management VLAN not be vlan 1.&lt;BR /&gt;I would recommend picking some other WiFi management VLAN for that purpose and making it the native VLAN on trunk ports that are connected to your APs.&lt;BR /&gt;&lt;BR /&gt;Additionally, I would recommend connecting your ZoneDirectorto the management VLAN. (either "Trunkport native vlan" style or "switchport access vlan" style)&lt;BR /&gt;&lt;BR /&gt;When you create the WLAN + SSID for your guest WiFi users, you should specify the "Guest/DSL/internet" VLAN (600 in this case) that you want to be used with that WLAN.</description>
      <pubDate>Thu, 23 Jun 2016 19:34:44 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Cisco-Switch-VLAN-configuration-for-Ruckus-Wifi-Network/m-p/12361#M2736</guid>
      <dc:creator>bill_burns_6069</dc:creator>
      <dc:date>2016-06-23T19:34:44Z</dc:date>
    </item>
  </channel>
</rss>

