This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Rabu, 13 Juli 2016

Tutorial Setting VLAN menggunakan 3 Switch di Cisco Packet Tracer

Tutorial Membuat VLAN menggunakan 3 Switch di Cisco Packet Tracer

Pengertian VLAN
Teknologi VLAN (Virtual Local Area Network) bekerja dengan cara melakukan pembagian network secara logika ke dalam beberapa subnet. VLAN adalah kelompok device dalam sebuah LAN yang dikonfigurasi (menggunakan software manajemen) sehingga mereka dapat saling berkomunikasi asalkan dihubungkan dengan jaringan yang sama walaupun secara fisikal mereka berada pada segmen LAN yang berbeda. Jadi VLAN dibuat bukan berdasarkan koneksi fisikal namun lebih pada koneksi logikal, yang tentunya lebih fleksibel. Secara logika, VLAN membagi jaringan ke dalam beberapa subnetwork. VLAN mengijinkan banyak subnet dalam jaringan yang menggunakan switch yang sama

Topologi



Langkah-langkah:

           1.     Buatlah topologi seperti gambar di atas
           2.     Setting ip setiap komputer
           3.     Setting switch0

Switch>
Switch>enable         (menghidupkan switch)
Switch#configure terminal  (masuk ke menu pengaturan)
Enter configuration commands, one per line. End with CNTL/Z.


Switch(config)#vlan 10     (membuat vlan 10)
Switch(config-vlan)#name guru (memberi nama vlan 10)
Switch(config-vlan)#vlan 20 (membuat vlan 20)
Switch(config-vlan)#name murid (memberi nama vlan 20)
Switch(config-vlan)#int range fa0/1-2 (mengatur berberapa interface sekaligus)
Switch(config-if-range)#switchport mode access (mode accesss untuk komputer ke switch)
Switch(config-if-range)#switchport access vlan 20 (untuk mengakses vlan 20)
Switch(config-if-range)#int range fa0/4-5  (mengatur berberapa interface sekaligus)
Switch(config-if-range)#switchport mode access (mode accesss untuk komputer ke switch)
Switch(config-if-range)#switchport access vlan 10 (untuk mengakses vlan 20)
Switch(config-if-range)#int fa 0/3 (untuk mengatur interface 3)
Switch(config-if)#switchport mode trunk (mode trunk untuk jalur  switch ke switch)

Switch(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/3, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/3, changed state to up

Switch(config-if)#exit
Switch(config)#exit (untuk keluar mode konfigurasi)
Switch#
%SYS-5-CONFIG_I: Configured from console by console

Switch#show vlan brief (untuk melihat vlan yang sedang berjalan)

VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0/6, Fa0/7, Fa0/8, Fa0/9
Fa0/10, Fa0/11, Fa0/12, Fa0/13
Fa0/14, Fa0/15, Fa0/16, Fa0/17
Fa0/18, Fa0/19, Fa0/20, Fa0/21
Fa0/22, Fa0/23, Fa0/24, Gig0/1
Gig0/2
10 guru active Fa0/4, Fa0/5  (vlan beserta portnya)      
20 murid active Fa0/1, Fa0/2 (vlan beserta portnya)
1002 fddi-default active
1003 token-ring-default active
1004 fddinet-default active
1005 trnet-default active
Switch#

              4.     Setiing Switch 1

Switch>en
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#vlan 10
Switch(config-vlan)#name guru
Switch(config-vlan)#vlan 20
Switch(config-vlan)#name murid
Switch(config-vlan)#int range fa 0/1-2
Switch(config-if-range)#sw m t

Switch(config-if-range)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to up

Switch(config-if-range)#
             5.     Setting switch 2

Switch>en
Switch#config t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#vlan 10
Switch(config-vlan)#name guru
Switch(config-vlan)#vlan 20
Switch(config-vlan)#name murid
Switch(config-vlan)#int range fa0/1-2
Switch(config-if-range)#sw m a
Switch(config-if-range)#sw a vlan 20
Switch(config-if-range)#int range fa0/4-5
Switch(config-if-range)#sw m a
Switch(config-if-range)#sw a vlan 10
Switch(config-if-range)#int fa0/1
Switch(config-if)#sw m t

Switch(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

Switch(config-if)#

             6.     Coba tes koneksi sesama vlan


                              Jika masih kurang jelas,silahkan tanyakan di komentar :)