VLAN-Switch
VLAN stands for Virtual-LAN. The main idea is how to make logical connection trough a switch by grouping a LAN.
For example, LAN at the office. Most of them, it just connect all host available to ports available in switch. It will make one big broadcast transmission, and by the time it will excessive the network.
With VLAN you can make group for each department, like VLAN-marketing, VLAN-accounting, VLAN-operation. Host in VLAN-marketing can only communicate with other host in the same VLAN. Same scenario for other VLANs. This topology will divided broadcast transmission in to three different broadcast for each VLAN. It will make network more enhance and could provide maximum troughput to each host.
In order for scalability and adaptability, subnetting should be use for each VLAN. Especially for Trunking method.
scenario:
Cisco Catalyst Switch 1900 version with four active ethernet ports connects to four PC. We will try setting 2 VLANs, which is VLAN 10 and VLAN 20.
Console commands are setting up VLAN 10 and VLAN 20. VLAN 10 has a member ethernet-port 0/1 and ethernet-port 0/3, VLAN 20 has a member ethernet-port 0/2 and ethernet-port 0/4.
Host at ethernet-port 0/1 can only communicate to host at ethernet-port 0/3 because they are on the same VLAN 10. And Host at ethernet-port 0/2 can only communicate to host at ethernet-port 0/4 because they are on the same VLAN 20
console:
switch> enable
switch# conf t
switch(config)# hostname switch-A
switch-A(config)# enable password level 15 cisco
switch-A(config)# ip address 192.168.1.11 255.255.255.0
switch-A(config)# vlan 10 name Group-A
switch-A(config)# vlan 20 name Group-B
switch-A(config)# int e0/1
switch-A(config-if)# vlan-membership static 10
switch-A(config-if)# exit
switch-A(config)# int e0/2
switch-A(config-if)# vlan-membership static 20
switch-A(config-if)# exit
switch-A(config)# int e0/3
switch-A(config-if)# vlan-membership static 10
switch-A(config-if)# exit
switch-A(config)# int e0/4
switch-A(config-if)# vlan-membership static 20

gak ngerti nih…
Comment by tri — January 3, 2007 @ 4:29 am
# to tri
hehehehe, thanks tri for your visit
Comment by Jodi — July 2, 2007 @ 7:16 am