Skip to main content

Konfigurasi Vlan 2 switch dan Router 1 {KD 6}

Cara Konfigurasi VLAN Di Cisco Packet Tracer, Sebelum menuju konfigurasi lebih lanjut perhatikan gambar diatas adalah topologi VLAN Di Cisco Packet Tracer , Yang akan kita gunakan untuk konfigurasi, Diantaranya adalah :


  • 1 Router
  • 9 PC
  • 3 Switch
  • 1 Server
  • Kabel Straight 
Jika sudah Seperti topologi di atas Lanjut kita Konfigurasi VLAN Di Cisco Packet Tracer , Yang pertama kita Konfig adalah IP Pada masing masing PC Pada Switch 1

PC 1 IP    : 192.168.50.130 / Netmask 255.255.255.128 / Gateway 192.168.50.129
PC 2 IP    : 192.168.50.131/ Netmask 255.255.255.128 / Gateway 192.168.50.129
PC 3 IP    : 192.168.60.66 / Netmask 255.255.255.192 / Gateway 192.168.60.65
PC 4 IP    : 192.168.60.67/ Netmask 255.255.255.192 / Gateway 192.168.60.65


Jika sudah Config IP Pada Konfigurasi VLAN Di Cisco Packet Tracer Selanjutnya sekarang kita Konfigurasi Switch 1,

Click Switch1 > CLI

Kemudian masukkan perintah nya seperti di bawah ini,

Menamai Vlan 50 dan 60 Switch 1

Switch>en
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#vlan 50
Switch(config-vlan)#tsania
Switch(config-vlan)#exit
Switch(config)#vlan 60
Switch(config-vlan)#ulvie
Switch(config-vlan)#exit

MENGHUBUNGKAN VLAN 50 DAN 60 Switch 1

Switch(config)#int fa0/1
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 50
Switch(config-if)#exit
Switch(config)#int fa0/2
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 50
Switch(config-if)#exit
Switch(config)#int fa0/3
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 60
Switch(config-if)#exit
Switch(config)#int fa0/4
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 60
Switch(config-if)#exit

MENJADIKAN SWITCH KE MODE TRUNK Switch 1

Switch>en
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#int fa0/5
Switch(config-if)#sw
Switch(config-if)#switchport mo
Switch(config-if)#switchport mode t
Switch(config-if)#switchport mode trunk 
Switch(config-if)#

Switch>en
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#int fa0/6
Switch(config-if)#sw
Switch(config-if)#switchport mo
Switch(config-if)#switchport mode t
Switch(config-if)#switchport mode trunk 

Switch(config-if)#

Selanjutnya sekarang kita Konfigurasi Switch 2,


PC 7 IP    : 192.168.50.132 / Netmask 255.255.255.128 / Gateway 192.168.50.129
PC 8 IP    : 192.168.50.133/ Netmask 255.255.255.128 / Gateway 192.168.50.129
PC 5 IP    : 192.168.60.68 / Netmask 255.255.255.192 / Gateway 192.168.60.65
PC 6 IP    : 192.168.60.69/ Netmask 255.255.255.192 / Gateway 192.168.60.65


Click Switch1 > CLI

Kemudian masukkan perintah nya seperti di bawah ini,

Menamai Vlan 50 dan 60 Switch 2

Switch>en
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#vlan 50
Switch(config-vlan)#tsania
Switch(config-vlan)#exit
Switch(config)#vlan 60
Switch(config-vlan)#ulvie
Switch(config-vlan)#exit





MENGHUBUNGKAN VLAN 50 DAN 60 Switch 2

Switch(config)#int fa0/1
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 50
Switch(config-if)#exit
Switch(config)#int fa0/2
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 50
Switch(config-if)#exit
Switch(config)#int fa0/3
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 60
Switch(config-if)#exit
Switch(config)#int fa0/4
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 60
Switch(config-if)#exit

MENJADIKAN SWITCH KE MODE TRUNK Switch 2

Switch>en
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#int fa0/5
Switch(config-if)#sw
Switch(config-if)#switchport mo
Switch(config-if)#switchport mode t
Switch(config-if)#switchport mode trunk 
Switch(config-if)#

Kemudian Setting Konfigurasi Router 0,

masukkan perintah nya seperti di bawah ini,

Memberi IP ke Gig0/0 dan Gig0/1

Router>en
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int gig0/0
Router(config-if)#ip add 192.168.10.5 255.255.255.252
Router(config-if)#no shut
Router(config-if)#exit
Router(config)#int gig0/1
Router(config-if)#ip add 192.168.20.1 255.255.255.0
Router(config-if)#no shut

Router(config-if)#exit

Menghubungkan Vlan yang satu ke Vlan yang lain

Router(config)#int gig0/0.50
Router(config-subif)#encapsulation dot1Q 50
Router(config-subif)#ip add 192.168.50.129 255.255.255.128
Router(config-subif)#exit
Router(config)#int gig0/0.60
Router(config-subif)#encapsulation dot1Q 60
Router(config-subif)#ip add 192.168.60.65 255.255.255.192
Router(config-subif)#exit

Router(config)#


Dan yang terakhir kita cuma ngasih IP dan Setting Server nya

PC 0 IP    : 192.168.20.3 / Netmask 255.255.255.0 / Gateway 192.168.20.1
Server IP : 192.168.20.4 / Netmask 255.255.255.0 / Gateway 192.168.20.1

Click Server > Service > DNS

kemudian kita edit sedikit index.html nya,

Click Server > Service > HTTP > index.html > edit

saya ganti seperti ini,

<html>
<center><font size='+2' color='blue'>tsaniyalaili@gmail.com</font></center>
<hr>Welcome to Cisco Packet Tracer. Opening doors to new opportunities. Mind Wide Open.
<p>Quick Links:
<br><a href='helloworld.html'>A small page</a>
<br><a href='copyrights.html'>Copyrights</a>
<br><a href='image.html'>Image page</a>
<br><a href='cscoptlogo177x111.jpg'>Image</a>

</html>

Save, trus setiap PC DNS nya di isi tsania.com

kita coba, dan hasil nya sperti ini,

  • ketik ip dns di web browser yang berada di dalam pc 0 192.168.20.5
    sekarang ganti pc 4 ketik di url web browser dengan nama tsania.com

Comments

Popular posts from this blog

3.5 Menerapkan Pemasangan Perangkat Jaringan Nirkabel

1. Antena dan Tower   Antena adalah perangkat listrik yang mengubah tenaga listrik menjadi gelombang radio, dan sebaliknya. Biasanya, digunakan dengan pemancar radio atau penerima radio. Dalam transmisi, pemancar radio memasok frekuensi radio arus listrik berosilasi ke terminal antena, dan antena memancarkan energi dari arus gelombang elektromagnetik (gelombang radio). Dalam penerimaan, antena memotong beberapa kekuatan gelombang elektromagnetik untuk menghasilkan tegangan kecil di terminal. Tegangan ini diterapkan ke penerima yang akan diperkuat.   Antena adalah komponen penting dari semua jenis peralatan yang memanfaatkan radio. Ini termasuk: siaran radio, siaran televisi, radio dua arah, penerima komunikasi, radar, ponsel, dan komunikasi satelit; serta perangkat lain seperti pembuka pintu garasi, mikrofon nirkabel, bluetooth perangkat diaktifkan, jaringan komputer nirkabel, monitor bayi, dan tag RFID pada barang dagangan.   Antena juga dapat...

indonesian cultural existen ce almost disappears in its own home

Indonesian Cultural Existence almost Disappears in its Own Home Indonesia is a country that has various cultures. This culture diversity occurs because Indonesia country consists of hundreds of islands where each island has its own culture. However, currently Indonesian culture is in danger of being lost because eroded by the times. There are so many factor that make Indonesia’s culture is in danger. Those factors are from inside and outside. Through this paper, the authors will describe those factors that cause the endangerment of native Indonesian culture. Here are two paragraphs that discussing those factors: The first is factor from inside. The decreasing of Indonesia’s culture existence in its own home is caused by its own people that ignore their culture especially for teenagers. They are lulled by modern life and started to forget the values which is inherited by their ancestors. For example, local languages, cultural ceremony, customs and Indonesian traditions have been lost ...

The danger of smoking

The Danger Of Smooking About the dangers of smoking in general, I feel I have much to know, especially for people who smoke cigarettes every day, because it’s in every pack of cigarettes there are writings about the dangers of smoking, such as this. SMOKING CAN CAUSE CANCER, HEART ATTACK, impotence AND PREGNANCY AND FETAL DISORDERS. But surprisingly despite the pack or packs of cigarettes are contained writings about the dangers of smoking are very scary, still many who smoke. Cigarettes contain more than four thousand substances and two thousand of them have been declared impact is not good for our health, such as radioactive materials (polonium-201) and materials used in the paint (acetone), washing the floor (ammonia), ubat silverfish (naphthalene), insecticide (DDT), termite poison (arsenic), toxic gases (hydrogen cyanide) used in the “death chamber” for pesalah who undergo the death penalty, and many more. And substances in cigarettes are the most dangerous is the Tar, Nicoti...