In this FREE six-day email course, you'll learn from Janis Griffin, Database Performance Evangelist. She'll teach 12 steps that you can use to optimize your queries as much as possible and see measurable results in your work. Get started today!
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
From novice to tech pro — start learning today.
To route between VLAN's, simply create the VLAN's:
en
conf t
vlan 2
Next, assign IP addresses to the VLAN interfaces (SVI):
en
conf t
int vlan1
ip address 192.168.1.1 255.255.255.0
no shut
int vlan 2
ip address 192.168.2.1 255.255.255.0
no shut
You need to also enable "IP routing" as it is disabled by default:
en
conf t
ip routing
You should at that point be routing between the two VLAN's/Subnets. Make sure the default gateway on the end systems is configured for the appropriate VLAN interface IP address.