cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
450
Views
0
Helpful
3
Replies

Router and L3 switch: vlan communication

geoffrey.lozada
Level 1
Level 1

Greetings:

Im confuse. Lets say I have a L3 switch with vlan configured. Do I still need a router if I want different vlans to communicate. Though I have already network layer device, L3 switch.

Can anyone elaborate this. thanks

3 Replies 3

yagnesh_tel
Level 1
Level 1

You don't require router for vlan communication if you have layer 3 switch. Layer-3 switch will take care of routing between VLANs provided that you create SVI interfaces for each of those VLANs on switch.

yongsikahn
Level 1
Level 1

no,, I think you don't need to use Router.

because the L3 can be supported routing.

so, if you want to put ip in the interface or you want to make a new vlan for access other vlan, you need to configure at the below.

first, Go to interface or VLAN interface

second, enter no switchport

third, give the IP address

fourth, i think you need Static routing or some other routing protocol method go other Vlan.

Thx.

Jon Marshall
Hall of Fame
Hall of Fame

Geoffrey

You do not need a router to route between your vlans in this case. What you do is create L3 SVIs (Switched Virtual Interfaces) for each vlan.

So assuming you have 3 vlans on the switch -

vlan 10

vlan 11

vlan 12

switch(config)# int vlan 10

switch(config-if)# ip address 192.168.5.1 255.255.255.0

switch(config)# int vlan 11

switch(config-if)# ip address 192.168.6.1 255.255.255.0

switch(config)# int vlan 12

switch(config-if)# ip address 192.168.7.1 255.255.255.0

once you have created the interfaces as above then your vlans should be able to communicate.

Note that you do not need any static routes or dynamic routing on the switch because all the L3 interfaces are seen as directly connected. If you wanted to connect to another L3 device then you would need static/dynamic routing to exchange routes.

Note also you may have to enable routing on the L3 switch ie.

switch(config)# ip routing

Jon

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card