I have scoured all over dell.com for answers and nothing that really explained/taught me how to do what I want.
I have 1 PowerConnect 8131 Layer 3 switch.
My router is connected to port 1 and it gives my VLAN1 (default vlan) the IP of:
192.168.86.1 (gateway)
I need to create 3 VLANs,
1 - Management (tagged)
2 - Data (tagged)
3 - Access (untagged)
I have been able to learn/figure out how to make VLANs
config#en
config#config
config#vlan 10,20,30
I have assigned ports 3-6,9-12,17-20
to VLAN 10
, 7,13,21
to VLAN 20
, and 8,14,22
to VLAN 30
From here I am confused, what IP address would/should I give to each VLAN
and how would I let each VLAN
send traffic thru each other, as well as be able to connect to the internet.
I have reset the switch so many times just to start from scratch redoing all the steps hoping I might have missed or misread some tutorial. please help.
It doesn't particularly matter. You can just assign them non-overlapping network in RFC1918 space. For example, 192.168.20.0/24 for one and 192.168.30.0/24 for the other.
You need a router to do that. Most layer 3 switches can also act as routers. The usual process for using a switch is a router is as follows:
VLANs is needed to isolate different networks in one switch. Vlan can't be tagged or untagged. Only ip packets can be tagged by VLAN ID. You can allow or disallow ip traffic by VLAN ID, which can go through switche's port. Port can work in three modes:
access - port sends outgoing ip packets from one allowed VLAN without VLAN ID tag (untagged traffic);
trunk - port sends outgoing ip packets from one or several allowed VLANs with VLAN ID tags (tagged traffic);
hybrid - port sends outgoing ip packets from one allowed VLAN without VLAN ID tag (untagged traffic) and sends outgoing ip packets from one or several allowed VLANs with VLAN ID tags (tagged traffic).