VLAN berada di port fisik yang di situ ada 4000+ VLAN , membagi jaringan fisik menjadi beberapa broadcast domain, definisi dari vlan sendiri adalah memungkinkan komputer dan pengguna dapat berkomunikasi dalam satu lingkungan geografis seolah olah mereka berada dalam satu LAN dan berbagi broadcast domain.
Cnfigurasi VLAN
Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#vlan 10
Switch(config-vlan)#name vlan-IT
Switch(config-vlan)#int ra f0/1-2
Switch(config-if-range)#switchport access vlan 10
Switch(config-if-range)#ex
Switch(config)#do wr (fungsinya untuk menyimpan configurasi)
Building configuration...
[OK]
Switch(config)#exit
Switch#
%SYS-5-CONFIG_I: Configured from console by console
Switch#
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#vlan 20
Switch(config-vlan)#name vlan-network
Switch(config)#do wr
Building configuration...
[OK]
Switch(config)#
Switch(config)#exit
Switch#
%SYS-5-CONFIG_I: Configured from console by console
Switch#
%LINK-5-CHANGED: Interface FastEthernet0/5, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/5, changed state to up
Nah agar si vlan 10 dan 20 bisa berkomunikasi maka si switch harus di mode trunk dulu agar mereka bisa berkomunikasi.
Apa si Trunk itu?
Istilah trunk bisa berarti 1link atau kabel yang bisa membawa banyak vlan, jika tidak ada trunk maka untuk menghubungkan antar switch membutuhkan satu link untuk 1 vlan, dan bagaimana jika ada 10 vlan apakah kita akan pasang 10 link juga? tentu itu akan banyak memakan waktu, tutorial mempersulit hidup hhe
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#int f0/5
Switch(config-if)#switchport mode trunk
Switch(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/5, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/5, changed state to up
Untuk bisa berkomunikaasi kita juga perlu router
# Configurasi pada router
--- System Configuration Dialog ---
Would you like to enter the initial configuration dialog? [yes/no]: n
Press RETURN to get started!
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#int g0/0/0
Router(config-if)#ip add 192.168.1.1 255.255.255.0
Router(config-if)#no sh
Router(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
# (Gateway VLAN 10)
Router(config-if)#exit
Router(config)#int g0/0/0.10
Router(config-subif)#
%LINK-5-CHANGED: Interface GigabitEthernet0/0/0.10, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0.10, changed state to up
Router(config-subif)#encapsulation dot1Q 10
Router(config-subif)#ip add 192.168.10.1 255.255.255.0
Router(config-subif)#exit
# (Gateway VLAN 20)
Router(config)#int g0/0/0.20
Router(config-subif)#
%LINK-5-CHANGED: Interface GigabitEthernet0/0/0.20, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0.20, changed state to up
Router(config-subif)#encapsulation dot1Q 20
Router(config-subif)#ip add 192.168.20.1 255.255.255.0
Router(config-subif)#exit
Router(config)#
jika sudah selesai configurasinya kita cek hasilnya dengan cara di ping, bisa dengan cara klik huruf P
Buku Biru Workbook CCNA v127 .1.1.3
Selamat menikmati ilmu semoga bermanfaat dunia akhirat Amiin
Tidak ada komentar:
Posting Komentar