Tittle
|
:
|
Virtual LAN (VLAN)
| |
Issue Date
|
:
|
27 September 2016
| |
Prepare by
|
:
| ||
Teacher
|
:
|
Suyatno, S.Kom
| |
SMK AL-BAHRI KOTA BEKASI
| |||
Virtual LAN (VLAN) membagi satu broadcast domain menjadi beberapa broadcast domain, sehingga dalam satu switch bisa saja terdiri dari beberapa network, host yang berbeda vlan tidak akan tersambung sehingga meningkatkan security jaringan.
VLAN adalah fasilitas yang dimiliki oleh switch manageable, contohnya cisco pada swith unmanageble , port portnya hanya dapat digunakan untuk koneksi ke network yang sama (satu network) sehingga mendukung fasailitas VLAN
KONFIGURASI SWITCH
Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#vlan 10
Switch(config-vlan)#name A
Switch(config-vlan)#exit
Switch(config)#vlan 20
Switch(config-vlan)#name B
Switch(config-vlan)#exit
Switch(config)#interface FastEthernet0/1
Switch(config-if)#switchport access vlan 20
Switch(config-if)#exit
Switch(config)#interface FastEthernet0/2
Switch(config-if)#switchport access vlan 20
Switch(config-if)#exit
Switch(config)#interface FastEthernet0/3
Switch(config-if)#switchport access vlan 10
Switch(config-if)#exit
Switch(config)#interface FastEthernet0/4
Switch(config-if)#switchport access vlan 10
Switch(config-if)#no shutdown
Switch(config-if)#do wr
Building configuration...
[OK]
COBA PING klik PC0 → dekstop → CommandPrompt
PC>ping 20.20.20.2
Pinging 20.20.20.2 with 32 bytes of data:
Reply from 20.20.20.2: bytes=32 time=7ms TTL=128
Reply from 20.20.20.2: bytes=32 time=0ms TTL=128
Reply from 20.20.20.2: bytes=32 time=0ms TTL=128
Reply from 20.20.20.2: bytes=32 time=16ms TTL=128
Ping statistics for 20.20.20.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 16ms, Average = 5ms
PC>ping 20.20.20.3
Pinging 20.20.20.3 with 32 bytes of data:
Reply from 20.20.20.3: bytes=32 time=2ms TTL=128
Reply from 20.20.20.3: bytes=32 time=3ms TTL=128
Reply from 20.20.20.3: bytes=32 time=0ms TTL=128
Reply from 20.20.20.3: bytes=32 time=3ms TTL=128
Ping statistics for 20.20.20.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 3ms, Average = 2ms
PC>

0 comments:
Post a Comment