Link to home
Start Free TrialLog in
Avatar of Paktusjet
Paktusjet

asked on

Tunneling vlans

Howdy,
  This question is kind of off the wall but curiosity is kicking in here. Is it possible on a Cisco c3750 switch or any higher switch to create a tunnel between two vlans say vlan 20 to vlan 40? I know you can create Tunnels between routers. I was just wondering if it's possible to create that virtual connection between two vlans.

Hope this makes sense..
ASKER CERTIFIED SOLUTION
Avatar of Quori
Quori
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Iif you just want to bridge the VLANs.. I.E. make them as one:

On one switch:

int Fa0/1
 switchport access vlan 20
 switchport trunk encapsulation dot1q
 switchport mode access

Other switch:

int Fa0/2
 switchport access vlan 40
 switchport trunk encapsulation dot1q
 switchport mode access

Plug the ports together.

Voila, kinda defies the point of having VLANs though...