Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Trunking over SFP 1

Status
Not open for further replies.

boodox

MIS
Sep 24, 2002
54
GB
Hey Everyone,

I've got a very quick question.

Is it possible to route VLAN information between two Cisco C3750-48TS switches using the SFP ports or do these have to go directly to a Layer 3 switch?

I'd appreciate any help.

Thanks!

bdx
 
Yes. I have a couple of VLANs that cross from a stack of 3750-48TS switches on my first floor to a stack of 3750-48TS switches on the second floor via fiber SFPs. I used CMS to configure it, but just change the VLAN configuration for the SFP ports to ISL Trunk and then indicate which VLANs have trunk access.
 
Thanks for the reply kmcferrin. I'm guessing I can do the same between two C3550-48-EMI's with WS-G5483 Gigabit over Copper GBIC's, right?

bdx
 
no problem.


commands are


switchport trunk encapsulation dot1q (or isl)
switchport mode trunk (optional but i always set it)

do this on both side of the connection. make sure you have vtp setup correctly with vtp server and client or vtp transparent setup on both side. not a problem.

3550
3560
3750
2950
2924
4500
4948

all work off of concept of switchport commands. On layer 3 devices you can set switchports to L3 routed ports or you can use SVI interfaces.

example

interface vlan 3 (this is an SVI or switched virtual int)
ip address 192.168.1.1 255.255.255.0

int fa 0/1
switchport access vlan 3


this is how you have one virtual interface and add many L2 switch ports to its L3 domain

or you can have


interface fa 0/1
no switchport
ip address 192.168.1.1 255.255.255.0

this is how you make a normal L2 switchport a L3 routed port.Same thing as a physical interface on a router.

or

you can have a trunk port

interface fa 0/1
switchport trunk encapsulation dot1q
switchport mode trunk

or you can have an access port L2

int fa 0/1
switchport access vlan 2

many options on the newer IOS based catalyst switches. no need for seperate router to handle MLS (multilayer switching) its all in the same box.

The really cool thing is that the new ISR routers are actually doing the opposite. They have a router with a switch integrated into it. Meaning you can execute switchport commands on a router. Not happening before ISRs came out. Very interesting. No more routers on a stick.

Lui3
CCNP,CCDA,A+/Net+
Cisco Wireless Specialization
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top