cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
539
Views
7
Helpful
5
Replies

L3 switch

anitachoi3
Level 1
Level 1

Hi,

I have two options to re-design the office (create 5 vlans).

1. router + ethernet switch (26xx + Dlink)

2. L3 switch, cisco CAT 35xx only (not cisco router)

which one is better? we will have 300 - 350 user within 3 years.

rgds

we have around 220 users.

2 Accepted Solutions

Accepted Solutions

paolo bevilacqua
Hall of Fame
Hall of Fame

If it was only VLAN, sol. 2 is better.

But, in reality you always need a router to connect to internet, firwall, VPN, Voip, all things that only a router does.

So in practice you need both a good switch and a good router. For example, one 2800 router, one 3750 L3 switch, as many more CE-500 switches (because they have PoE for when you put the IP phones).

View solution in original post

Anita

You can use static routes on the 2800 or you can use a dynamic routing protocol such as EIGRP/OSPF to exhange routes between the 2 devices.

To connect the router to the 3750 it would make sense to use a L3 connection.

So on the 3750 under the interface you are connecting to the router

3750(config-if)#no switchport

3750(config-if)#ip address 172.16.1.2 255.255.255.252

3750(config-if)# no shut

On the 2800 router that connects to the switch

int fa0

ip address 172.16.1.1 255.255.255.252

The rest of the cat 3750 config is creating the vlans at Layer 2 and then creating the L3 interfaces

3750(config)# vlan 10

3750(config)# int vlan 10

3750(config-if)# ip address 172.16.2.1 255.255.255.0

3750(config-if)# no shut

you need to do this for each of your vlans. Note that until as least one port is active in the vlan the L3 vlan interface will stay down.

HTH

Jon

View solution in original post

5 Replies 5

Danilo Dy
VIP Alumni
VIP Alumni

Hi,

If its just a LAN (no WAN), I recommend option 2.

Regards,

Dandy

paolo bevilacqua
Hall of Fame
Hall of Fame

If it was only VLAN, sol. 2 is better.

But, in reality you always need a router to connect to internet, firwall, VPN, Voip, all things that only a router does.

So in practice you need both a good switch and a good router. For example, one 2800 router, one 3750 L3 switch, as many more CE-500 switches (because they have PoE for when you put the IP phones).

Richard Burts
Hall of Fame
Hall of Fame

Anita

There are some factors which might affect the design which you have not addressed in this post that could influence the design- for example is there a requirement for connectivity outside the office. But based on what you have provided so far I would advise the choice to use a Cisco layer 3 switch rather than a Cisco router connected to non-Cisco switch. If the primary routing activity is going to be inter-vlan routing then the layer 3 switch is a more effective solution than the router. With the router solution the frame must pass over the link from switch to router and then back over the same link from router to switch. Where with the layer 3 switch the frame arrives on one virtual interface and is routed out the other virtual interface.

HTH

Rick

HTH

Rick

Hi

Thanks all, we may order cisco 28xx and csico 37xx.

If the vlan traffic goes through L3 switch, the router (28xx) should not be config 802.1q. am i right? I such config 5 static routes point to CAT 37xx.

the config should be:

R1:

!

interface FastEthernet0

ip address 172.16.1.11 255.255.255.0

ip nat inside

!

ip route 172.16.2.0 255.255.255.0

ip route 172.16.3.0 255.255.255.0

ip route 172.16.4.0 255.255.255.0

ip route 172.16.5.0 255.255.255.0

!

Interface FastEthernet1

ip address 209.x.x.x 255.255.255.252

ip nat outside

!

ip nat pool office 209.x.x.x 209.x.x.x netmask 255.255.255.252

!

ip nat inside source 10 interface FastEthernet1 overload

!

access-list 10 permit 172.16.0.0 0.0.7.255

!

what is the CAT 3700 config?

Rgds

Anita

You can use static routes on the 2800 or you can use a dynamic routing protocol such as EIGRP/OSPF to exhange routes between the 2 devices.

To connect the router to the 3750 it would make sense to use a L3 connection.

So on the 3750 under the interface you are connecting to the router

3750(config-if)#no switchport

3750(config-if)#ip address 172.16.1.2 255.255.255.252

3750(config-if)# no shut

On the 2800 router that connects to the switch

int fa0

ip address 172.16.1.1 255.255.255.252

The rest of the cat 3750 config is creating the vlans at Layer 2 and then creating the L3 interfaces

3750(config)# vlan 10

3750(config)# int vlan 10

3750(config-if)# ip address 172.16.2.1 255.255.255.0

3750(config-if)# no shut

you need to do this for each of your vlans. Note that until as least one port is active in the vlan the L3 vlan interface will stay down.

HTH

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