SOAL:

Konfigurasikan Skema di atas agar

1. Network 10 tidak bisa diakses oleh network 40, sedangkan yang lain bisa

2. Hot 10.5 tidak bisa mengakses host 50.7

JAWAB:

Langkah-langkah:

  1. Buka Program Cisco Packet Tracer
  2. Pilih peralatan yang akan dipakai. Agar Sesuai demean Gambar di atas saya menggunakan:   7 Unit PC, 6 Buah Switch, dan 3 Buah Router
  3. Atur posisi semua peralatan hingga seperti gambar di atas.
  4. Hubungkan PC dengan Switch menggunakan kabel straigh-Though
  5. Hubungkan Switch degan Router menggunakan kabel straigh-Though
  6. Hubungkan Router dengan Router menggunakan kabel Serial DCE (sesuaikan dengan gambar kerja)
  7. Atur Konfigurasi Router Seperti dibawah ini

Atur Router 0 sebagai berikut

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname 10.240.0001
10.240.0001(config)#int fa0
^
% Invalid input detected at ‘^’ marker.

10.240.0001(config)#int fa0/0
10.240.0001(config-if)#ip add 172.16.10.1 255.255.255.0
10.240.0001(config-if)#no shut

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
10.240.0001(config-if)#ex
10.240.0001(config)#int s2/0
10.240.0001(config-if)#ip add 172.16.30.1 255.255.255.0
10.240.0001(config-if)#no shut

%LINK-5-CHANGED: Interface Serial2/0, changed state to down
10.240.0001(config-if)#no shut
10.240.0001(config-if)#ex
10.240.0001(config)#int fa0/1
%Invalid interface type and number
10.240.0001(config)#int fa1/0
10.240.0001(config-if)#ip add 172.16.20.1 255.255.255.0
10.240.0001(config-if)#no shut

10.240.0001(config-if)#
%LINK-5-CHANGED: Interface FastEthernet1/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet1/0, changed state to up
10.240.0001(config-if)#ex
10.240.0001(config)#router eigrp 10
10.240.0001(config-router)#network 172.16.10.0 0.0.0.255
10.240.0001(config-router)#network 172.16.20.0 0.0.0.255
10.240.0001(config-router)#network 172.16.30.0 0.0.0.255
10.240.0001(config-router)#ex
10.240.0001(config)#^Z
10.240.0001#
%SYS-5-CONFIG_I: Configured from console by console
10.240.0001#wr mem
Building configuration…
[OK]
10.240.0001#
%LINK-5-CHANGED: Interface Serial2/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial2/0, changed state to up
%DUAL-5-NBRCHANGE: IP-EIGRP 10: Neighbor 172.16.30.2 (Serial2/0) is up: new adjacency
10.240.0001#conf t
10.240.0001(config)#int fa0/0
10.240.0001(config-if)#ip access-group 120 in
10.240.0001(config-if)#ex
10.240.0001(config)#access-list 120 deny ip host 172.16.10.5 host 172.16.50.7
10.240.0001(config)#access-list 120 permit any any
10.240.0001(config)#^Z
10.240.0001#
%SYS-5-CONFIG_I: Configured from console by console
10.240.0001#wr mem
Building configuration…
[OK]

Atur Router 1 sebagai berikut

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname 10.240.0001
10.240.0001(config)#int fa0/0
10.240.0001(config-if)#ip add 172.16.40.1 255.255.255.0
10.240.0001(config-if)#no shut

10.240.0001(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
10.240.0001(config-if)#ex
10.240.0001(config)#int fa1/0
10.240.0001(config-if)#ip add 172.16.50.1 255.255.255.0
10.240.0001(config-if)#no shut

%LINK-5-CHANGED: Interface FastEthernet1/0, changed state to up
10.240.0001(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet1/0, changed state to up
10.240.0001(config-if)#ex
10.240.0001(config)#int s2/0
10.240.0001(config-if)#ip add 172.16.30.2 255.255.255.0
10.240.0001(config-if)#clockrate 64000
^
% Invalid input detected at ‘^’ marker.

10.240.0001(config-if)#clock rate 64000
10.240.0001(config-if)#no shut

10.240.0001(config-if)#
%LINK-5-CHANGED: Interface Serial2/0, changed state to upex
10.240.0001(config)#int s
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial2/0, changed state to up3/0
10.240.0001(config-if)#ip add 172.16.60.1 255.255.255.0
10.240.0001(config-if)#no shut

%LINK-5-CHANGED: Interface Serial3/0, changed state to down
10.240.0001(config-if)#ex
10.240.0001(config)#router eigrp 10
10.240.0001(config-router)#network 172.16.40.0 0.0.0.255
10.240.0001(config-router)#network 172.16.50.0 0.0.0.255
10.240.0001(config-router)#network 172.16.30.0 0.0.0.255
10.240.0001(config-router)#
%DUAL-5-NBRCHANGE: IP-EIGRP 10: Neighbor 172.16.30.1 (Serial2/0) is up: new adjacency
10.240.0001(config-router)#network 172.16.60.0 0.0.0.255
10.240.0001(config-router)#^Z

%SYS-5-CONFIG_I: Configured from console by console10.240.0001#
10.240.0001#wr mem
Building configuration…
[OK]
10.240.0001#conf t
10.240.0001(config)#int fa0/0
10.240.0001(config-if)#ip access-group 10 out
10.240.0001(config-if)#ex
10.240.0001(config)#access-list 10 deny 172.16.10.0 0.0.0.255
10.240.0001(config)#access-list 10 permit any
10.240.0001(config)#^Z
10.240.0001#
%SYS-5-CONFIG_I: Configured from console by console
10.240.0001#wr mem
Building configuration…
[OK]
10.240.0001#

Atur Router 2 sebagai berikut

Router>
Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname 10.240.0001
10.240.0001(config)#int fa0/0
10.240.0001(config-if)#ip add 172.16.70.1 255.255.255.0
10.240.0001(config-if)#no shut

10.240.0001(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
10.240.0001(config-if)#int fa1/0
10.240.0001(config-if)#ip add 172.16.80.1
% Incomplete command.
10.240.0001(config-if)#ip add 172.16.80.1 255.255.255.0
10.240.0001(config-if)#no shut

10.240.0001(config-if)#
%LINK-5-CHANGED: Interface FastEthernet1/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet1/0, changed state to up
10.240.0001(config-if)#ex
10.240.0001(config)#int s3/0
10.240.0001(config-if)#ip add 172.16.60.2 255.255.255.0
10.240.0001(config-if)#clock rate 64000
10.240.0001(config-if)#no shut

10.240.0001(config-if)#
%LINK-5-CHANGED: Interface Serial3/0, changed state to up
10.240.0001(config-if)#^Z
10.240.0001#
%SYS-5-CONFIG_I: Configured from console by console
10.240.0001#wr m
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial3/0, changed state to upem
Building configuration…
[OK]
10.240.0001#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
10.240.0001(config)#router eigrp 10
10.240.0001(config-router)#network 172.16.70.0 0.0.0.255
10.240.0001(config-router)#network 172.16.80.0 0.0.0.255
10.240.0001(config-router)#network 172.16.60.0 0.0.0.255
10.240.0001(config-router)#
%DUAL-5-NBRCHANGE: IP-EIGRP 10: Neighbor 172.16.60.1 (Serial3/0) is up: new adjacency
10.240.0001(config-router)#^Z
10.240.0001#
%SYS-5-CONFIG_I: Configured from console by console
10.240.0001#wr mem
Building configuration…
[OK]
10.240.0001#

Setting IP Configuration pada PC dan Server  seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network

Sebelum dikonfigurasikan ACLs cek dulu koneksi semua peralatan, untuk itu bisa gunakan perintah Ping melalui Command Prompt

Cek Koneksi PC0 dengan  PC 1

Cek Koneksi PC0 dengan  PC 2

Cek Koneksi PC0 dengan  PC 3

Cek Koneksi PC0 dengan  PC 4

Cek Koneksi PC0 dengan  PC 5

Cek Koneksi PC0 dengan  PC 6

Cek Koneksi PC0 dengan  Server


Setelah dikonfigurasikan ACLs maka

Ping PC2 dengan PC0

Ping PC0 dengan PC4

KONFIGURASI EIGRP

Posted: June 18, 2012 in Uncategorized

Langkah-langkah:

  1. Buka Program Cisco Packet Tracer
  2. Pilih peralatan yang akan dipakai. Agar Sesuai demean Gambar di atas saya menggunakan:   2 Unit PC, 2 Buah Switch, dan 2 Buah Router
  3. Atur posisi semua peralatan hingga seperti gambar di atas.
  4. Hubungkan PC dengan Switch menggunakan kabel straigh-Though
  5. Hubungkan Switch degan Router menggunakan kabel straigh-Though
  6. Hubungkan Router dengan Router menggunakan kabel Serial DCE (sesuaikan dengan gambar kerja)

Atur Router 0 sebagai berikut

Atur Router 1 sebagai berikut

Setting IP PC0 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network

Setting IP PC1 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network

Nah sekarang tinggal cek Koneksinya, untuk itu bisa gunakan perintah-perintah dibawah ini untuk memeriksa koneksi setelah pengkonfigurasian router

  • Ping
  • Traceroute
  • Show ip route
  • show ip interface brief
  • show cdp neighbors detail

Pemeriksaan koneksi pada router 0

Pemeriksaan koneksi pada router 1

Tambahan:–:))


ROUTING STATIS

Posted: May 25, 2012 in JARKOM 3
Tags:

Langkah-langkah:

  1. Buka Program Cisco Packet Tracer
  2. Pilih peralatan yang akan dipakai. Agar Sesuai demean Gambar di atas saya menggunakan:   3 Unit PC, 3 Buah Switch, dan 3 Buah Router
  3. Atur posisi semua peralatan hingga seperti gambar di atas.
  4. Hubungkan PC dengan Switch menggunakan kabel straigh-Though
  5. Hubungkan Switch degan Router menggunakan kabel straigh-Though
  6. Hubungkan Router dengan Router menggunakan kabel Serial DCE (sesuaikan dengan gambar kerja)

Atur Router 1 sebagai berikut

Atur Router 2 sebagai berikut

Atur Router 3 sebagai berikut

Setting IP PC1 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network

Setting IP PC2 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network

Setting IP PC3 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network

Nah sekarang tinggal cek Koneksinya, untuk itu bisa gunakan perintah-perintah dibawah ini untuk memeriksa koneksi setelah pengkonfigurasian router

  • Ping
  • Traceroute
  • Show ip route
  • show ip interface brief
  • show cdp neighbors detail

Pemeriksaan koneksi pada router 1

Pemeriksaan koneksi pada router 2

Pemeriksaan koneksi pada router 3

Tes Koneksi dengan Ping pada Command Prompt

Ping PC 1 ke PC 2

Ping PC 1 ke PC 3

Ping PC 2 ke PC 1

Ping PC 2 ke PC 3

Ping PC 3 ke PC 1

Ping PC 3 ke PC 2

Tambahan:–:))

ROUTE SUMMARIZATION

JAWABAN LATIHAN SOAL JARKOM 3

Posted: April 30, 2012 in Uncategorized
NB. JAWABAN ADALAH YANG TERCETAK TEBAL
Berdasarkan pada kondisi yang ditunjukkan oleh gambar, manakah pernyataan berikut yang benar mengenai aliran trafik jaringan pada switch ini?
    1. Semua PC yang terkoneksi ke switch akan dapat berkomunikasi dengan yang lain sepanjang mereka berada pada IP network yang sama.
    2. PC yang terkoneksi pada port Fa0/2 dapat berkomunikasi dengan PC lainnya yang terkoneksi pada Port Fa0/22 jika kedua PCs berada pada IP network yang sama.
    3. PC yang terkoneksi pada port Fa0/11 dapat berkomunikasi dengan PC lainnya yang terkoneksi pada Port Fa0/20 jika kedua PCs berada pada IP network yang sama.
    4. PC yang terkoneksi pada port Fa0/15 dapat berkomunikasi dengan PC lainnya yang terkoneksi pada Port Fa0/24 tanpa perlu memperhatikan kesamaan IP network dari keduanya.
Di jaringan komputer perusahaan besar, mengapa trafik untuk voice biasanya memerlukan VLAN tersendiri?
    1. Hal ini untuk menjamin trafik voice antar pengguna.
    2. Hal ini untuk menjamin agar tersedia bandwidth yang lebih untuk trafik voice.
    3. Hal ini untuk memisahkan antara trafik data dengan trafik voice sehingga trafik data tidak akan mempengaruhi trafik voice.
    4. Hal ini untuk memberikan dukungan back-up karena trafik voice dianggap lebih penting dibanding trafik data.
Perhatikan topologi di bawah ini. Administrator jaringan butuh untuk mengkonfigurasikan default route pada router Border. Manakah perintah konfigurasi yang setidaknya paling tepat (mengacu ke router Border) untuk default route yang akan diperlukan oleh router untuk meneruskan paket?
    1. ip route 0.0.0.0 0.0.0.0 64.100.59.5
    2. ip route 0.0.0.0 0.0.0.0 64.100.59.6
    3. ip route 0.0.0.0 0.0.0.0 s0/0/1
    4. ip route 0.0.0.0 0.0.0.0 s1/2/1
Perhatikan gambar berikut. Seorang teknisi jaringan sedang menyelidiki mengapa H1 dan H2 tidak dapat berkomunikasi. Apa masalah yang dapat ditemukan oleh teknisi tersebut?
    1. Sw1 memiliki default gateway yang keliru.
    2. H1 dan H2 berada pada subnetwork yang berbeda.
    3. Sw1 membutuhkan sebuah IP address yang berada pada subnet yang sama.
    4. IP address dari H2 harus diubah ke 192.168.22.34/28.
Manakah pernyataan yang benar yang menjelaskan mengenai fungsi dari VLAN Management Policy Server (VMPS)?
    1. VMPS mempermudah mengelompokkan keanggotaan VLAN secara statis.
    2. VMPS secara flexible mampu mendaftarkan keanggotaan VLAN secara dinamis.
    3. VMPS melayani backup konfigurasi keanggotaan VLAN secara statis.
    4. VMPS memberikan kemudahan dalam mengembangkan VLAN tanpa perlu memikirkan jumlah switch yang terlibat.
Manakah dua jenis peralatan berikut yang akan mencegah pengiriman data secara broadcast ke seluruh jaringan.? (Pilih dua.)
    1. Bridge
    2. Router
    3. Switch
    4. VLAN
    5. Hub
Berdasarkan kondisi di atas, switch – switch saling terkoneksi dengan trunk link dan dikonfigurasikanuntuk VTP. Sebuah VLAN baru ditambahkan ke Switch1. Manakah kejadian berikut yang akan terjadi? (Pilih tiga.)
a. Switch1 tidak akan menambahkan VLAN ke database-nya dan akan meneruskan update ke Switch2.
b. Switch2 akan menambahkan VLAN ke database-nya dan meneruskan update ke Switch3.
c. Switch3 akan meneruskan VTP update ke Switch4.
d. Switch3 akan menambahkan VLAN ke database-nya.
e. Switch4 akan menambahkan VLAN ke database-nya.
f. Switch4 tidak akan menerima update.
Apa yang menjadi tujuan VTP ?
    1. Menjaga konsistensi pada konfigurasi VLAN dalam jaringan.
    2. Me-rute-kan frame dari satu VLAN ke yang lain.
    3. Me-rute-kan frame sepanjang jalur terbaik antar switch.
    4. Menandai frame data pengguna dengan informasi keanggotaan VLAN.
    5. Mendistribusikan BPDU untuk menjaga switch dari loop-free.
Manakah 3 pernyataan berikut yang benar ketika Router dikonfigurasikan untuk trunking VLAN?
    1. Satu subinterface tiap VLAN
    2. Satu interface fisik untuk tiap subinterface
    3. Sutu IP network atau subnetwork untuk tiap subinterface
    4. Satu trunk link tiap VLAN
    5. Sebuah domain manajemen untuk tiap subinterface
    6. Sebuah enkapsulasi protokol trunking yang kompatibel untuk tiap subinterface.
Sebuah router memiliki dua interface serial dan dua interface Fast Ethernet. Router ini harus terkoneksi dengan WAN dan sebuah switch yang mendukung untuk empat VLAN. Bagaimana cara mewujudkan kebutuhan ini secara efisien biaya dan efektif untuk mendukung inter-VLAN routing antar keempat VLAN tersebut?
    1. Koneksikan dengan router lain yang mendukung trafik data pada inter-VLAN routing.
    2. Menambah dua modul interface Fast Ethernet agar mendukung tiap VLAN pada tiap interface fisiknya.
    3. Mengkoneksikan trunk uplink dari switch ke salah satu interface Fast Ethernet pada Router dan buat subinterface logis untuk tiap VLAN.
    4. Gunakan konverter Serial ke Fast Ethernet untuk menghubungkan dua VLAN ke port Serial pada router. Dua VLAN yang lain dapat langsung menggunakan dua interface Fast Ethernet yang tersisa.
Berdasarkan gambar di bawah, seorang administrator jaringan mencatat bahwa perubahan konfigurasi VLAN pada SW2 tidak dapat diteruskan ke SW3. Bertumpu pada output yang ditunjukkan oleh perintah show vtp status adalah seperti nampak pada gambar berikut. Apa kiranya yang menyebabkan masalah?
    1. Mode VTP V2 tidak diaktifkan (disable)
    2. SW3 dikonfigurasikan pada mode transparent
    3. Jumlah VLAN yang ada tidak sama.
    4. Angka revisi konfigurasi tidak sama.
Berdasarkan pada topologi berikut, apa dua kesimpulan yang dapat diperoleh dari informasi yang ada? (Pilih dua.)
    1. Semua port pada gambar adalah port access
    2. ARP request dari Host1 akan diteruskan ke Host2
    3. Menghubungkan Host1 ke port 11 akan secara otomatis mengijinkan komunikasi antar kedua host..
    4. Defaut gateway dari kedua host diubah menjadi 192.168.3.250/28 agar dapat berkomunikasi atar kedua host.
    5. Diperlukan router yang terkoneksi ke switch agar kedua host dapat saling berkomunikasi.
Berdasarkan pada gambar berikut, beberapa switch saling terkoneksi dengan trunk dalam VTP management domain yang sama. Tiap switch di beri label sesuai dengan mode VTP-nya. Sebuah VLAN baru ditambahkan ke Switch3. VLAN ini tidak nampak pada switch yang lain. Apa alasanya?
    1. VLAN tidak dapat dibuat pada switch dengan mode transparent.
    2. Switch pada mode server tidak mendengar sehingga tidak meneruskan pesan VTP dari switch pada mode transparent.
    3. VLAN yang dibuat pada switch mode transparent tidak dimasukkan dalam VTP advertisement.
    4. Tidak ada port yang disediakan bagi VLAN baru di switch lainnya.
    5. Switch mode transparent tidak meneruskan VTP advertisement.
Berdasarkan kondisi di berikut, switch1 tidak terlibat dalam proses manajemen VTP dengan switch lainnya. Manakah dua alasan yang mungkin untuk kondisi berikut. (Pilih dua).
    1. Switch2 dalam mode transparent.
    2. Switch1 dalam mode client.
    3. Switch1 menggunakan VTP versi 1 sementara switch2 menggunakan VTP versi 2.
    4. Switch2 dalam mode server.
    5. Switch1 berada pada domain manajemen yang berbeda.
    6. Switch1 tidak memiliki VLAN.
Manakah dari pernyataan berikut yang benar berkaitan dengan fitur port security pada Switch?
    1. Switch akan menonaktifkan (disable) port yang tidak digunakan.
    2. Switch akan menyaring trafik jaringan berdasarkan pada MAC Address dari Host.
    3. Switch memutuskan mematikan port berdasarkan angka port dari layer 4.
    4. Switch menonaktifkan trafik Telnet karena username dan password-nya berupa plain text.

 

  • Robert Pattinson

  • Tom Hanks

  • Halle Berry

  • Richard Gere

  • Russel Brand

  • Javier Bardem

  • Mark hamill (Luke Skywalker)

  • Dr. House

  • Lady Gaga dan Elton John

  • Paul McCartney

  • Smashing Pumpkins

  • Joan Rivers

  • Jk. Rowling

  • Stan Lee

  • Bill Gates

  • Mark Zuckerberg

  • Stephen Hawkings

  • Dalai Lama

  • Fidel Castro

5 Cermin Terunik di Dunia

Posted: April 9, 2012 in Uncategorized
Cermin adalah benda yang bisa mengirimkan pesan  apakah seseorang sudah tampil sesuai keinginannya atau belum. Namun demikian, ada sejumlah produsen cermin yang coba menghadirkan cermin yang tak biasa seperti di bawah ini:
1. Cermin narsis
Cermin ini dibuat dari desainer Prancis yang sebelumnya telah memiliki sejumlah koleksi cermin menarik macam Matali Crasset, Ich & Ka, dst. Menurut pembuatnya, cermin narsis ini merupakan bagian dari cermin seniman. Poin penting dari cermin ini adalah kualitas, desain, dan frame pengerjaan.

2. Cermin setrika
Sebuah konsep menarik yang dibuat desainer Aissa Logerot. Cermin inovatif ini dapat digunakan sebagai alas menyetrika ketika miring dan membuat cermin dalam posisi horisontal. Menurut Aisa, cermin ini objek penghubung antara dua aksi secara berurutan:. setrika pakaian dan make-up.

3. Cermin How Tall Are You
Apakah Anda tergolong bertubuh mini seperti Kylie? Atau besar seperti Hulk Hogan? Mengukur tinggi badan sekarang sudah jarang dilakukan, namun sekarang kita semua bisa mengukur ketinggian seperti tinggi selebriti saat ini. Mirror 120 memiliki daftar ketinggian yang benar-benar real.

4. Cermin Touch Screen MP3
Tidak lagi sebatas cermin. Cermin Maitre Stocco memiliki layar sentuh konsol di sudut kanan bawah, menawarkan program yang mudah dalam pengoperasian radio, tanggal, barometer, dan MP3 player, sehingga Anda bisa menyanyi sesuka hati Anda pada waktu di mandi atau saat berpakaian.

5. Cermin interaktif
Dirancang oleh Alpay KASAL, patennya menunggu akses kemampuan cermin. Ada fitur interaktif dari cermin ini seperti sensor jarak, sensor penunjuk, dan kombinasi dari kedua sensor tadi, sekaligus penyebaran polutan inframerah. (**)
  • TOPOLOGI FISIK
  • SETTING ROUTER 0
 Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname 10.240.0001
10.240.0001(config)#int fa0/0
10.240.0001(config-if)#ip add 192.168.1.1 255.255.255.0
10.240.0001(config-if)#no shut%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
10.240.0001(config-if)#ex
10.240.0001(config)#int s2/0
10.240.0001(config-if)#ip add 192.168.2.1 255.255.255.0
10.240.0001(config-if)#clock rate 64000
10.240.0001(config-if)#no shut%LINK-5-CHANGED: Interface Serial2/0, changed state to down
10.240.0001(config-if)#ex
10.240.0001(config)#router rip
10.240.0001(config-router)#version 2
10.240.0001(config-router)#network 192.168.1.0
10.240.0001(config-router)#network 192.168.2.0
10.240.0001(config-router)#^Z
10.240.0001#
%SYS-5-CONFIG_I: Configured from console by console
10.240.0001#wr mem
Building configuration…
[OK]
  • SETTING ROUTER 1
Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 192.168.3.1 255.255.255.0
kartono(config-if)#no shut%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to upkartono(config-if)#
kartono(config-if)#ex
kartono(config)#int s2/0
kartono(config-if)#ip add 192.168.2.2 255.255.255.0
kartono(config-if)#no shut%LINK-5-CHANGED: Interface Serial2/0, changed state to up
kartono(config-if)#ex
kartono(config)#router rip
kartono(config-router)#v
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial2/0, changed state to upersion 2
kartono(config-router)#network 192.168.2.0
kartono(config-router)#network 192.168.3.0
kartono(config-router)#^Z
kartono#
%SYS-5-CONFIG_I: Configured from console by console
kartono#wr mem
Building configuration…
[OK]
  • KONFIGURASI IP  PC0
  • KONFIGURASI IP PC1
  • TES KONEKSI PC0 DAN PC1
 
  • PERINTAH-PERINTAH DASAR “SHOW” PADA ROUTER
Perintah penuh
Perintah singkat
Maksud Perintah
show running-config
sh ru/run
Menampilkan konfigurasi yang sedang berjalan di RAM. Termasuk host name, passwords, interface IP addresses, routing protocol yang aktif, DHCP dan konfigurasi NAT. Dapat dijalankan di EXEC mode.
show startup-config
Sh st/sta
Menampilkan isi file konfigurasi yang tersimpan di NVRAM,Mulai dariHost Name, Passwords, Interface IP Addresses, Routing Protocol yang aktif, DHCP dan konfigurasi NAT.
Show version
Sh v/ver
Menampilkan informasi tentang versi software yang sekarang sedang jalan lengkap dengan informasi hardware dan devicenya.
show ip protocols
Sh ip p/pro
Memperlihatkan ip protokol routing yang telah dikonfigurasi dan sedang berjalan,
Digunakan untuk menampilkan status interface IP,baik secara global maupun khusus dari protokol yang terkonfigurasi pada saat ini (konfigurasi IP awal).
show ip route
Sh ip ro
Memperlihatkan konfigurasi routing,
Digunakan untuk menampilkan konfirmasi pada Router yang telah di authentikasi oleh Router lain dan telah mampu memperoleh rute dari Router lainnya, selain itu juga digunakan untuk mengetahui konfigurasi IP yang dilakukan baik secara global maupun secara khusus dari IYN. Yang meliputi configurasi IP  pada FastEthernet0/0 maupun pada IP Serial2/0
show interfaces
Sh in/int
Menunjukkan interface yg berjalan di router,
Digunakan untuk menampilkan statistic semua interface IYN mulai dari FastEthernet dan Serial. Untuk menampilkan statistic interface tertentu, menggunakan perintah show interfaces diikuti dengan nomor port/slot interface, contoh : 10.240.0001#show interfaces serial 0/1
show ip interface brief
Sh ip i b
Tinjauan semua antarmuka pada router,
Digunakan untuk menampilkan Konfigurasi pada interface yang terhubung pada IYN. Mulai dari konfigurasi yang sedang berjalan maupun yang konfigurasi yang tidak berjalan (belum terkonfigurasi). Pada perintah ini kita dibawa untuk mengetahui : Interface, IP-Address, Method, Status, Protocol
show protocols
Sh prot
menampilkan status interface baik secara global maupun khusus dari protokol layer 3 yang terkonfigurasi.
show cdp neighbors
Sh cd ne/cdp
Menampilkan ringkasan cdp perangkat tersambung,
Digunakan untuk mengetahui Capability Codes, yang meliputi : R (IYN), T (Trans Bridge), B (Source Route Bridge), S (Switch), H (Host), I (IGMP), r (Repeater), P (Phone). Selain itu juga digunakan untuk mengetahui Device ID diantaranya : Local Intrfce, Holdtme, Capability, Platform, Port ID
show sessions
Sh se
Memperlihatkan sesi yang ada sekarang
Digunakan untuk mengetahui koneksi yang sedang berjalan (koneksi yang di buka)
show ssh
Sh ss
Menampilkan operasi status pengoperasian SSH
Digunakan untuk melakukan koneksi dengan server SSHv2 dan SSHv1
ping
P
Digunakan untuk melakukan / melihat koneksi antar jaringan yang sedang berhubungan. Perintah ping harus diikuti address or hostname. Contoh ; ping 192.168.1.1,
Memastikan apakah suatu komputer tertentu dalam suatu jaringan atau internet itu ada dan terhubung.
Traceroute
tr
Menunjukkan rute yang dilewati paket untuk mencapai tujuan. Ini dilakukan dengan mengirim pesan Internet Control Message Protocol (ICMP) Echo Request Ke tujuan dengan nilai Time to Live yang semakin meningkat.
  • Berikut ini adalah contoh Penggunaan perintah-perintah Show pada Router dengan Packet Tracer.
10.240.0001#sh ru Building configuration…
Current configuration : 702 bytes!version 12.2no service timestamps log datetime msecno service timestamps debug datetime msecno service password-encryption!hostname 10.240.0001 interface FastEthernet0/0 no ip address duplex auto speed auto shutdown!interface FastEthernet1/0 ip address 192.168.3.2 255.255.255.0 duplex auto speed auto!interface Serial2/0 no ip address shutdown!interface Serial3/0 ip address 192.168.2.2 255.255.255.0!interface FastEthernet4/0 no ip address shutdown!interface FastEthernet5/0 no ip address shutdown!ip classlessip route 0.0.0.0 0.0.0.0 Serial3/0 !!!!!!!!!line con 0line vty 0 password 12345 loginline vty 1 4 login!!!end
10.240.0001#sh sta startup-config is not present
10.240.0001#sh sta startup-config is not present 10.240.0001#sh verCisco Internetwork Operating System SoftwareIOS ™ PT1000 Software (PT1000-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)Technical Support: http://www.cisco.com/techsupportCopyright (c) 1986-2005 by cisco Systems, Inc.Compiled Wed 27-Apr-04 19:01 by miwangImage text-base: 0x8000808C, data-base: 0x80A1FECC
ROM: System Bootstrap, Version 12.1(3r)T2, RELEASE SOFTWARE (fc1)Copyright (c) 2000 by cisco Systems, Inc.ROM: PT1000 Software (PT1000-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)
System returned to ROM by reloadSystem image file is “flash:pt1000-i-mz.122-28.bin”
PT 1001 (PTSC2005) processor (revision 0x200) with 60416K/5120K bytes of memory.Processor board ID PT0123 (0123)PT2005 processor: part number 0, mask 01Bridging software.X.25 software, Version 3.0.0.4 FastEthernet/IEEE 802.3 interface(s)2 Low-speed serial(sync/async) network interface(s)32K bytes of non-volatile configuration memory.63488K bytes of ATA CompactFlash (Read/Write)
Configuration register is 0x2102
10.240.0001#sh ip pro
10.240.0001#sh ip ro Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP       D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area       N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2       E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP       i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area       * – candidate default, U – per-user static route, o – ODR       P – periodic downloaded static route
Gateway of last resort is 0.0.0.0 to network 0.0.0.0
C    192.168.2.0/24 is directly connected, Serial3/0C    192.168.3.0/24 is directly connected, FastEthernet1/0S*   0.0.0.0/0 is directly connected, Serial3/0
10.240.0001#sh int FastEthernet0/0 is administratively down, line protocol is down (disabled)  Hardware is Lance, address is 0001.c71b.5e5d (bia 0001.c71b.5e5d)  MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,     reliability 255/255, txload 1/255, rxload 1/255  Encapsulation ARPA, loopback not set  ARP type: ARPA, ARP Timeout 04:00:00,   Last input 00:00:08, output 00:00:05, output hang never  Last clearing of “show interface” counters never  Input queue: 0/75/0 (size/max/drops); Total output drops: 0  Queueing strategy: fifo  Output queue :0/40 (size/max)  5 minute input rate 0 bits/sec, 0 packets/sec  5 minute output rate 0 bits/sec, 0 packets/sec     0 packets input, 0 bytes, 0 no buffer     Received 0 broadcasts, 0 runts, 0 giants, 0 throttles     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort     0 input packets with dribble condition detected     0 packets output, 0 bytes, 0 underruns     0 output errors, 0 collisions, 2 interface resets     0 babbles, 0 late collision, 0 deferred     0 lost carrier, 0 no carrier     0 output buffer failures, 0 output buffers swapped outFastEthernet1/0 is up, line protocol is up (connected)  Hardware is Lance, address is 0060.5cca.d984 (bia 0060.5cca.d984)  Internet address is 192.168.3.2/24  MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,     reliability 255/255, txload 1/255, rxload 1/255  Encapsulation ARPA, loopback not set  ARP type: ARPA, ARP Timeout 04:00:00,   Last input 00:00:08, output 00:00:05, output hang never  Last clearing of “show interface” counters never  Input queue: 0/75/0 (size/max/drops); Total output drops: 0  Queueing strategy: fifo  Output queue :0/40 (size/max)  5 minute input rate 1 bits/sec, 0 packets/sec  5 minute output rate 1 bits/sec, 0 packets/sec     89 packets input, 3621 bytes, 0 no buffer     Received 0 broadcasts, 0 runts, 0 giants, 0 throttles     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort     0 input packets with dribble condition detected     85 packets output, 3920 bytes, 0 underruns     0 output errors, 0 collisions, 0 interface resets     0 babbles, 0 late collision, 0 deferred     0 lost carrier, 0 no carrier     0 output buffer failures, 0 output buffers swapped outSerial2/0 is administratively down, line protocol is down (disabled)  Hardware is HD64570  MTU 1500 bytes, BW 128 Kbit, DLY 20000 usec,     reliability 255/255, txload 1/255, rxload 1/255  Encapsulation HDLC, loopback not set, keepalive set (10 sec)  Last input never, output never, output hang never  Last clearing of “show interface” counters never  Input queue: 0/75/0 (size/max/drops); Total output drops: 0  Queueing strategy: weighted fair  Output queue: 0/1000/64/0 (size/max total/threshold/drops)     Conversations  0/0/256 (active/max active/max total)     Reserved Conversations 0/0 (allocated/max allocated)     Available Bandwidth 96 kilobits/sec  5 minute input rate 0 bits/sec, 0 packets/sec  5 minute output rate 0 bits/sec, 0 packets/sec     0 packets input, 0 bytes, 0 no buffer     Received 0 broadcasts, 0 runts, 0 giants, 0 throttles     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort     0 packets output, 0 bytes, 0 underruns     0 output errors, 0 collisions, 2 interface resets     0 output buffer failures, 0 output buffers swapped out     0 carrier transitions     DCD=down  DSR=down  DTR=down  RTS=down  CTS=downSerial3/0 is up, line protocol is up (connected)  Hardware is HD64570  Internet address is 192.168.2.2/24  MTU 1500 bytes, BW 128 Kbit, DLY 20000 usec,     reliability 255/255, txload 1/255, rxload 1/255  Encapsulation HDLC, loopback not set, keepalive set (10 sec)  Last input never, output never, output hang never  Last clearing of “show interface” counters never  Input queue: 0/75/0 (size/max/drops); Total output drops: 0  Queueing strategy: weighted fair  Output queue: 0/1000/64/0 (size/max total/threshold/drops)     Conversations  0/0/256 (active/max active/max total)     Reserved Conversations 0/0 (allocated/max allocated)     Available Bandwidth 96 kilobits/sec  5 minute input rate 0 bits/sec, 0 packets/sec  5 minute output rate 0 bits/sec, 0 packets/sec     5 packets input, 440 bytes, 0 no buffer     Received 0 broadcasts, 0 runts, 0 giants, 0 throttles     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort     4 packets output, 412 bytes, 0 underruns     0 output errors, 0 collisions, 0 interface resets     0 output buffer failures, 0 output buffers swapped out     0 carrier transitions     DCD=up  DSR=up  DTR=up  RTS=up  CTS=upFastEthernet4/0 is administratively down, line protocol is down (disabled)  Hardware is Lance, address is 0009.7c10.a5ca (bia 0009.7c10.a5ca)  MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,     reliability 255/255, txload 1/255, rxload 1/255  Encapsulation ARPA, loopback not set  ARP type: ARPA, ARP Timeout 04:00:00,   Last input 00:00:08, output 00:00:05, output hang never  Last clearing of “show interface” counters never  Input queue: 0/75/0 (size/max/drops); Total output drops: 0  Queueing strategy: fifo  Output queue :0/40 (size/max)  5 minute input rate 0 bits/sec, 0 packets/sec  5 minute output rate 0 bits/sec, 0 packets/sec     0 packets input, 0 bytes, 0 no buffer     Received 0 broadcasts, 0 runts, 0 giants, 0 throttles     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort     0 input packets with dribble condition detected     0 packets output, 0 bytes, 0 underruns     0 output errors, 0 collisions, 2 interface resets     0 babbles, 0 late collision, 0 deferred     0 lost carrier, 0 no carrier     0 output buffer failures, 0 output buffers swapped outFastEthernet5/0 is administratively down, line protocol is down (disabled)  Hardware is Lance, address is 0002.4a72.39ca (bia 0002.4a72.39ca)  MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,     reliability 255/255, txload 1/255, rxload 1/255  Encapsulation ARPA, loopback not set  ARP type: ARPA, ARP Timeout 04:00:00,   Last input 00:00:08, output 00:00:05, output hang never  Last clearing of “show interface” counters never  Input queue: 0/75/0 (size/max/drops); Total output drops: 0  Queueing strategy: fifo  Output queue :0/40 (size/max)  5 minute input rate 0 bits/sec, 0 packets/sec  5 minute output rate 0 bits/sec, 0 packets/sec     0 packets input, 0 bytes, 0 no buffer     Received 0 broadcasts, 0 runts, 0 giants, 0 throttles     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort     0 input packets with dribble condition detected     0 packets output, 0 bytes, 0 underruns     0 output errors, 0 collisions, 2 interface resets     0 babbles, 0 late collision, 0 deferred     0 lost carrier, 0 no carrier     0 output buffer failures, 0 output buffers swapped out
10.240.0001#sh ip int br Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        unassigned      YES manual administratively down down
FastEthernet1/0        192.168.3.2     YES manual up                    up
Serial2/0              unassigned      YES manual administratively down down
Serial3/0              192.168.2.2     YES manual up                    up
FastEthernet4/0        unassigned      YES manual administratively down down
FastEthernet5/0        unassigned      YES manual administratively down down
10.240.0001#sh prot Global values:  Internet Protocol routing is enabledFastEthernet0/0 is administratively down, line protocol is downFastEthernet1/0 is up, line protocol is up  Internet address is 192.168.3.2/24Serial2/0 is administratively down, line protocol is downSerial3/0 is up, line protocol is up  Internet address is 192.168.2.2/24FastEthernet4/0 is administratively down, line protocol is downFastEthernet5/0 is administratively down, line protocol is down
10.240.0001#sh cdp ne Capability Codes: R – 10.240.0001, T – Trans Bridge, B – Source Route Bridge                  S – Switch, H – Host, I – IGMP, r – Repeater, P – PhoneDevice ID    Local Intrfce   Holdtme    Capability   Platform    Port ID10.240.0001       Ser 3/0          168            R       PT1000      Ser 2/0
10.240.0001#sh ses % No connections open
10.240.0001#sh ss %No SSHv2 server connections running.%No SSHv1 server connections running.
10.240.0001#ping 192.168.1.1 Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 60/60/60 ms
10.240.0001#tra 192.168.2.1 Type escape sequence to abort.Tracing the route to 192.168.2.1
1   192.168.2.1     20 msec   20 msec   20 msec

Langkah-langkah:

  1. Buka Program Cisco Packet Tracer
  2. Pilih peralatan yang akan dipakai. Agar Sesuai demean Gambar di atas saya menggunakan: 10 Unit PC, 5 Buah Switch, dan 5 Buah Router
  3. Atur posisi semua peralatan hingga seperti gambar di atas.
  4. Hubungkan PC dengan Switch menggunakan kabel straigh-Thtough
  5. Hubungkan Switch degan Router menggunakan kabel straigh-Thtough
  6. Hubungkan Router dengan Router menggunakan kabel Serial DCE/DTE (sesuaikan dengan gambar kerja)
  7. Hubungkan PC dengan Router menggunakan kabel Console
  8. Setting Router Lab_A sebagai berikut:

o Fa0/0 : 192.5.5.1
o Fa1/0 : 205.7.5.1
o Se2/0 : 201.100.11.1
o SM : 255.255.255.0

ROUTER Lab_A

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
name(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 192.5.5.1 255.255.255.0
kartono(config-if)#no shut

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
kartono(config-if)#exit
kartono(config)#int fa1/0
kartono(config-if)#ip add 205.7.5.1 255.255.255.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface FastEthernet1/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet1/0, changed state to up
kartono(config-if)#exit
kartono(config)#int s2/0
kartono(config-if)#ip add 201.100.11.1 255.255.255.0
kartono(config-if)#clock rate 64000
kartono(config-if)#exit
kartono(config)#int s2/0
kartono(config-if)#no shut

%LINK-5-CHANGED: Interface Serial2/0, changed state to down
kartono(config-if)#exit
kartono(config)#router rip
kartono(config-router)#version 2
kartono(config-router)#network 192.5.5.0
kartono(config-router)#network 205.7.5.0
kartono(config-router)#network 201.100.11.0
kartono(config-router)#^Z
kartono#
%SYS-5-CONFIG_I: Configured from console by console
kartono#wr mem
Building configuration…
[OK]
kartono#show ip protocols
Routing Protocol is “rip”
Sending updates every 30 seconds, next due in 27 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface             Send  Recv  Triggered RIP  Key-chain
FastEthernet0/0       2     2
FastEthernet1/0       2     2
Automatic network summarization is in effect
Maximum path: 4
Routing for Networks:
192.5.5.0
201.100.11.0
205.7.5.0
Passive Interface(s):
Routing Information Sources:
Gateway         Distance      Last Update
Distance: (default is 120)

9. Setting Router Lab_B sebagai berikut:
o Fa0/0 : 219.17.100.1
o Se2/0 : 201.100.11.2
o Se3/0 : 199.6.13.1
o SM : 255.255.255.0

ROUTER Lab_B

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 219.17.100.1 255.255.255.0
kartono(config-if)#no shut

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
kartono(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
kartono(config-if)#exit
kartono(config)#int s3/0
kartono(config-if)#ip add 199.6.13.1 255.255.255.0
kartono(config-if)#clock rate 64000
kartono(config-if)#no shut

%LINK-5-CHANGED: Interface Serial3/0, changed state to down
kartono(config-if)#exit
kartono(config)#int s2/0
kartono(config-if)#ip add 201.100.11.2 255.255.255.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface Serial2/0, changed state to up
kartono(config-if)#exit
kartono(config)#router
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial2/0, changed state
kartono(config)#router rip
kartono(config-router)#version 2
kartono(config-router)#network 219.17.100.0
kartono(config-router)#network 199.6.13.0
kartono(config-router)#network 201.100.11.0
kartono(config-router)#^Z

%SYS-5-CONFIG_I: Configured from console by consolekartono#
kartono#show ip protocols
Routing Protocol is “rip”
Sending updates every 30 seconds, next due in 4 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface             Send  Recv  Triggered RIP  Key-chain
FastEthernet0/0       2     2
Serial2/0             2     2
Automatic network summarization is in effect
Maximum path: 4
Routing for Networks:
199.6.13.0
201.100.11.0
219.17.100.0
Passive Interface(s):
Routing Information Sources:
Gateway         Distance      Last Update
201.100.11.1         120      00:00:06
Distance: (default is 120)
kartono#wr mem
Building configuration…
[OK]

10. Setting Router Lab_C sebagai berikut:
o Fa0/0 : 223.8.151.1
o Se2/0 : 199.6.13.2
o Se3/0 : 204.204.7.1
o SM : 255.255.255.0

ROUTER Lab_C

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 223.8.151.1 255.255.255.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
kartono(config-if)#exit
kartono(config)#int s3/0
kartono(config-if)#ip add 204.204.7.1 255.255.255.0
kartono(config-if)#clock rate 64000
kartono(config-if)#no shut

%LINK-5-CHANGED: Interface Serial3/0, changed state to down
kartono(config-if)#exit
kartono(config)#int s2/0
kartono(config-if)#ip add 199.6.13.2 255.255.255.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface Serial2/0, changed state to up
kartono(config-if)#exit
kartono(config)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial2/0, changed state to up
kartono(config)#router rip
kartono(config-router)#version 2
kartono(config-router)#network 223.8.151.0
kartono(config-router)#network 204.204.7.0
kartono(config-router)#network 199.6.13.0
kartono(config-router)#^Z

%SYS-5-CONFIG_I: Configured from console by consolekartono#
kartono#show ip protocols
Routing Protocol is “rip”
Sending updates every 30 seconds, next due in 21 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface             Send  Recv  Triggered RIP  Key-chain
FastEthernet0/0       2     2
Serial2/0             2     2
Automatic network summarization is in effect
Maximum path: 4
Routing for Networks:
199.6.13.0
204.204.7.0
223.8.151.0
Passive Interface(s):
Routing Information Sources:
Gateway         Distance      Last Update
199.6.13.1           120      00:00:09
Distance: (default is 120)

11. Setting Router Lab_D sebagai berikut:
o Fa0/0 : 210.93.105.1
o Se2/0 : 204.204.7.2
o SM : 255.255.255.0

ROUTER LAB_D
Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 210.93.105.1 255.255.255.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
kartono(config-if)#exit
kartono(config)#int s2/0
kartono(config-if)#ip add 204.204.7.2 255.255.255.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface Serial2/0, changed state to up
kartono(config-if)#exit
kartono(config)#router
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial2/0, changed state to up
% Incomplete command.
kartono(config)#router rip
kartono(config-router)#version 2
kartono(config-router)#network 210.93.105.0kartono(config-router)#network 204.204.7.0
kartono(config-router)#^Z
kartono#
%SYS-5-CONFIG_I: Configured from console by console
kartono#sh ip protocols
Routing Protocol is “rip”
Sending updates every 30 seconds, next due in 21 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface             Send  Recv  Triggered RIP  Key-chain
FastEthernet0/0       2     2
Serial2/0             2     2
Automatic network summarization is in effect
Maximum path: 4
Routing for Networks:
204.204.7.0
210.93.105.0
Passive Interface(s):
Routing Information Sources:
Gateway         Distance      Last Update
204.204.7.1          120      00:00:10
Distance: (default is 120)
kartono#sh ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

R    192.5.5.0/24 [120/3] via 204.204.7.1, 00:00:19, Serial2/0
R    199.6.13.0/24 [120/1] via 204.204.7.1, 00:00:19, Serial2/0
R    201.100.11.0/24 [120/2] via 204.204.7.1, 00:00:19, Serial2/0
C    204.204.7.0/24 is directly connected, Serial2/0
R    205.7.5.0/24 [120/3] via 204.204.7.1, 00:00:19, Serial2/0
C    210.93.105.0/24 is directly connected, FastEthernet0/0
R    219.17.100.0/24 [120/2] via 204.204.7.1, 00:00:19, Serial2/0
R    223.8.151.0/24 [120/1] via 204.204.7.1, 00:00:19, Serial2/0
kartono#
kartono#wr mem
Building configuration…
[OK]

12. Setting Router Lab_E sebagai berikut:
o Fa0/0 : 210.93.105.2

ROUTER Lab_E

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 210.93.105.2 255.255.255.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
kartono(config-if)#exit
kartono(config)#router rip
kartono(config-router)#version 2
kartono(config-router)#network 210.93.105.0
kartono(config-router)#^Z
kartono#
%SYS-5-CONFIG_I: Configured from console by console
kartono#sh ip protocols
Routing Protocol is “rip”
Sending updates every 30 seconds, next due in 20 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface             Send  Recv  Triggered RIP  Key-chain
FastEthernet0/0       2     2
Automatic network summarization is in effect
Maximum path: 4
Routing for Networks:
210.93.105.0
Passive Interface(s):
Routing Information Sources:
Gateway         Distance      Last Update
Distance: (default is 120)
kartono#sh ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

R    192.5.5.0/24 [120/4] via 210.93.105.1, 00:00:07, FastEthernet0/0
R    199.6.13.0/24 [120/2] via 210.93.105.1, 00:00:07, FastEthernet0/0
R    201.100.11.0/24 [120/3] via 210.93.105.1, 00:00:07, FastEthernet0/0
R    204.204.7.0/24 [120/1] via 210.93.105.1, 00:00:07, FastEthernet0/0
R    205.7.5.0/24 [120/4] via 210.93.105.1, 00:00:07, FastEthernet0/0
C    210.93.105.0/24 is directly connected, FastEthernet0/0
R    219.17.100.0/24 [120/3] via 210.93.105.1, 00:00:07, FastEthernet0/0
R    223.8.151.0/24 [120/2] via 210.93.105.1, 00:00:07, FastEthernet0/0
kartono#wr mem
Building configuration…
[OK]

13. Setting IP PC0 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 205.7.5.2
o Subnet Mask : 255.255.255.0
o Default Gateway : 205.7.5.1


14. Setting IP PC1 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 205.7.5.3
o Subnet Mask : 255.255.255.0
o Default Gateway : 205.7.5.1


15. Setting IP PC2 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 192.5.5.2
o Subnet Mask : 255.255.255.0
o Default Gateway : 192.5.5.1


16. Setting IP PC3 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 192.5.5.3
o Subnet Mask : 255.255.255.0
o Default Gateway : 192.5.5.1


17. Setting IP PC4 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 219.17.100.2
o Subnet Mask : 255.255.255.0
o Default Gateway : 219.17.100.1


18. Setting IP PC5 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 219.17.100.3
o Subnet Mask : 255.255.255.0
o Default Gateway : 219.17.100.1


19. Setting IP PC6 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 223.8.151.2
o Subnet Mask : 255.255.255.0
o Default Gateway : 223.8.151.1


20. Setting IP PC7 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 223.8.151.3
o Subnet Mask : 255.255.255.0
o Default Gateway : 223.8.151.1


21. Setting IP PC8 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 210.93.105.3
o Subnet Mask : 255.255.255.0
o Default Gateway : 210.93.105.2


22. Setting IP PC9 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 210.93.105.4
o Subnet Mask : 255.255.255.0
o Default Gateway : 210.93.105.2

Nah sekarang tinggal cek Koneksinya, untuk itu bisa gunakan Command Prompt dengan perintah “Ping [IP yang di tuju]

Kalau hasilnya “Replay from…………….” Berarti berhasil (connact).

– Cek Koneksi antara PC0 dengan PC1

PC>ping 205.7.5.3

Pinging 205.7.5.3 with 32 bytes of data:

Reply from 205.7.5.3: bytes=32 time=125ms TTL=128
Reply from 205.7.5.3: bytes=32 time=63ms TTL=128
Reply from 205.7.5.3: bytes=32 time=47ms TTL=128
Reply from 205.7.5.3: bytes=32 time=62ms TTL=128

Ping statistics for 205.7.5.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 47ms, Maximum = 125ms, Average = 74ms

– Cek Koneksi antara PC0 dengan PC2

PC>ping 192.5.5.2

Pinging 192.5.5.2 with 32 bytes of data:

Reply from 192.5.5.2: bytes=32 time=110ms TTL=127
Reply from 192.5.5.2: bytes=32 time=82ms TTL=127
Reply from 192.5.5.2: bytes=32 time=94ms TTL=127
Reply from 192.5.5.2: bytes=32 time=110ms TTL=127

Ping statistics for 192.5.5.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 82ms, Maximum = 110ms, Average = 99ms

– Cek Koneksi antara PC0 dengan PC3

PC>ping 192.5.5.3

Pinging 192.5.5.3 with 32 bytes of data:

Reply from 192.5.5.3: bytes=32 time=125ms TTL=127
Reply from 192.5.5.3: bytes=32 time=112ms TTL=127
Reply from 192.5.5.3: bytes=32 time=94ms TTL=127
Reply from 192.5.5.3: bytes=32 time=77ms TTL=127

Ping statistics for 192.5.5.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 77ms, Maximum = 125ms, Average = 102ms

– Cek Koneksi antara PC0 dengan PC4

PC>ping 219.17.100.2

Pinging 219.17.100.2 with 32 bytes of data:

Reply from 219.17.100.2: bytes=32 time=218ms TTL=120
Reply from 219.17.100.2: bytes=32 time=281ms TTL=120
Reply from 219.17.100.2: bytes=32 time=250ms TTL=120
Reply from 219.17.100.2: bytes=32 time=235ms TTL=120

Ping statistics for 219.17.100.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 218ms, Maximum = 281ms, Average = 246ms

– Cek Koneksi antara PC0 dengan PC5

PC>ping 219.17.100.3

Pinging 219.17.100.3 with 32 bytes of data:

Reply from 219.17.100.3: bytes=32 time=266ms TTL=120
Reply from 219.17.100.3: bytes=32 time=252ms TTL=120
Reply from 219.17.100.3: bytes=32 time=247ms TTL=120
Reply from 219.17.100.3: bytes=32 time=281ms TTL=120

Ping statistics for 219.17.100.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 247ms, Maximum = 281ms, Average = 261ms

– Cek Koneksi antara PC0 dengan PC6

PC>ping 223.8.151.2

Pinging 223.8.151.2 with 32 bytes of data:

Reply from 223.8.151.2: bytes=32 time=281ms TTL=121
Reply from 223.8.151.2: bytes=32 time=246ms TTL=121
Reply from 223.8.151.2: bytes=32 time=265ms TTL=121
Reply from 223.8.151.2: bytes=32 time=281ms TTL=121

Ping statistics for 223.8.151.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 246ms, Maximum = 281ms, Average = 268ms

– Cek Koneksi antara PC0 dengan PC7

PC>ping 223.8.151.3

Pinging 223.8.151.3 with 32 bytes of data:

Reply from 223.8.151.3: bytes=32 time=250ms TTL=121
Reply from 223.8.151.3: bytes=32 time=231ms TTL=121
Reply from 223.8.151.3: bytes=32 time=250ms TTL=121
Reply from 223.8.151.3: bytes=32 time=187ms TTL=121

Ping statistics for 223.8.151.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 187ms, Maximum = 250ms, Average = 229ms

– Cek Koneksi antara PC0 dengan PC8

PC>ping 210.93.105.3

Pinging 210.93.105.3 with 32 bytes of data:

Reply from 210.93.105.3: bytes=32 time=281ms TTL=121
Reply from 210.93.105.3: bytes=32 time=294ms TTL=121
Reply from 210.93.105.3: bytes=32 time=252ms TTL=121
Reply from 210.93.105.3: bytes=32 time=219ms TTL=121

Ping statistics for 210.93.105.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 219ms, Maximum = 294ms, Average = 261ms

– Cek Koneksi antara PC0 dengan PC9

PC>ping 210.93.105.4

Pinging 210.93.105.4 with 32 bytes of data:

Reply from 210.93.105.4: bytes=32 time=219ms TTL=121
Reply from 210.93.105.4: bytes=32 time=252ms TTL=121
Reply from 210.93.105.4: bytes=32 time=291ms TTL=121
Reply from 210.93.105.4: bytes=32 time=281ms TTL=121

Ping statistics for 210.93.105.4:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 219ms, Maximum = 291ms, Average = 260ms

Salam 10.240.0001

Selamat mencoba!

———-Jangan Mudah Menyerah———

Langkah-langkah:

  1. Buka Program Cisco Packet Tracer
  2. Pilih peralatan yang akan dipakai. Agar Sesuai dengan Gambar di atas, saya menggunakan: 6 Unit PC, 3 Buah Switch, dan 3 Buah Router
  3. Atur posisi semua peralatan hingga seperti gambar di atas.
  4. Hubungkan PC dengan Switch menggunakan kabel straigh-Thtough
  5. Hubungkan Switch degan Router menggunakan kabel straigh-Thtough
  6. Hubungkan Router dengan Router menggunakan kabel Serial DCE
  7. Setting Router_0 sebagai berikut:

o Fa0/0 : 10.1.0.1
o Se2/0 : 10.2.0.1
o SM : 255.255.0.0

ROUTER_0

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 10.1.0.1 255.255.0.0
kartono(config-if)#no shut

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
kartono(config-if)#exit
kartono(config)#int s2/0
kartono(config-if)#ip add 10.2.0.1 255.255.0.0
kartono(config-if)#no shut

%LINK-5-CHANGED: Interface Serial2/0, changed state to down
kartono(config-if)#exit
kartono(config)#router rip
kartono(config-router)#version 2
kartono(config-router)#network 10.2.0.0
kartono(config-router)#network 10.1.0.0
kartono(config-router)#exit
kartono(config)#exit
kartono#
%SYS-5-CONFIG_I: Configured from console by console
kartono#sh ip protocol
Routing Protocol is “rip”
Sending updates every 30 seconds, next due in 4 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface             Send  Recv  Triggered RIP  Key-chain
FastEthernet0/0       2     2
Automatic network summarization is in effect
Maximum path: 4
Routing for Networks:
10.0.0.0
Passive Interface(s):
Routing Information Sources:
Gateway         Distance      Last Update
Distance: (default is 120)
kartono#sh ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

10.0.0.0/16 is subnetted, 1 subnets
C       10.1.0.0 is directly connected, FastEthernet0/0
kartono#wr mem
Building configuration…
[OK]

8. Setting Router _1 sebagai berikut:
o Fa0/0 : 10.5.0.1
o Se2/0 : 10.2.0.2
o Se3/0 : 10.3.0.1
o SM : 255.255.0.0

ROUTER _1

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 10.5.0.1 255.255.0.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
kartono(config-if)#exit
kartono(config)#int s2/0
kartono(config-if)#ip add 10.2.0.2 255.255.0.0
kartono(config-if)#clock rate 64000
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface Serial2/0, changed state to up
kartono(config-if)#exit
kartono(config)#int s3/0
kartono(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial2/0, changed state to up
kartono(config-if)#ip add 10.3.0.1 255.255.0.0
kartono(config-if)#clock rate 64000
kartono(config-if)#no shut

%LINK-5-CHANGED: Interface Serial3/0, changed state to down
kartono(config-if)#exit
kartono(config)#router rip
kartono(config-router)#version 2
kartono(config-router)#network 10.2.0.0
kartono(config-router)#network 10.3.0.0
kartono(config-router)#network 10.5.0.0
kartono(config-router)#^Z
kartono#
%SYS-5-CONFIG_I: Configured from console by console
kartono#show ip protocol
Routing Protocol is “rip”
Sending updates every 30 seconds, next due in 23 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface             Send  Recv  Triggered RIP  Key-chain
FastEthernet0/0       2     2
Serial2/0             2     2
Automatic network summarization is in effect
Maximum path: 4
Routing for Networks:
10.0.0.0
Passive Interface(s):
Routing Information Sources:
Gateway         Distance      Last Update
10.2.0.1             120      00:00:19
Distance: (default is 120)
kartono#sh ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

10.0.0.0/16 is subnetted, 3 subnets
R       10.1.0.0 [120/1] via 10.2.0.1, 00:00:25, Serial2/0
C       10.2.0.0 is directly connected, Serial2/0
C       10.5.0.0 is directly connected, FastEthernet0/0
kartono#wr mem
Building configuration…
[OK]

9. Setting Router _2 sebagai berikut:
o Fa0/0 : 10.4.0.1
o Se2/0 : 10.3.0.2
o SM : 255.255.0.0

ROUTER _2

Router>ena
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname kartono
kartono(config)#int fa0/0
kartono(config-if)#ip add 10.4.0.1 255.255.0.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
kartono(config-if)#exit
kartono(config)#int s2/0
kartono(config-if)#ip add 10.3.0.2 255.255.0.0
kartono(config-if)#no shut

kartono(config-if)#
%LINK-5-CHANGED: Interface Serial2/0, changed state to up
kartono(config-if)#exit
kartono(config)#router
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial2/0, changed state to uprip
kartono(config-router)#version 2
kartono(config-router)#network 10.4.0.0
kartono(config-router)#network 10.3.0.0
kartono(config-router)#^Z
kartono#
%SYS-5-CONFIG_I: Configured from console by console
kartono#sh ip protocol
Routing Protocol is “rip”
Sending updates every 30 seconds, next due in 18 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface             Send  Recv  Triggered RIP  Key-chain
FastEthernet0/0       2     2
Serial2/0             2     2
Automatic network summarization is in effect
Maximum path: 4
Routing for Networks:
10.0.0.0
Passive Interface(s):
Routing Information Sources:
Gateway         Distance      Last Update
10.3.0.1             120      00:00:15
Distance: (default is 120)
kartono#sh ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

10.0.0.0/16 is subnetted, 5 subnets
R       10.1.0.0 [120/2] via 10.3.0.1, 00:00:19, Serial2/0
R       10.2.0.0 [120/1] via 10.3.0.1, 00:00:19, Serial2/0
C       10.3.0.0 is directly connected, Serial2/0
C       10.4.0.0 is directly connected, FastEthernet0/0
R       10.5.0.0 [120/1] via 10.3.0.1, 00:00:19, Serial2/0
kartono#wr mem
Building configuration…
[OK]

10. Setting IP PC0 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 10.1.0.3
o Subnet Mask : 255.255.0.0
o Default Gateway : 10.1.0.1


11. Setting IP PC1 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 10.1.0.4
o Subnet Mask : 255.255.0.0
o Default Gateway : 10.1.0.1


12. Setting IP PC2 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 10.5.0.3
o Subnet Mask : 255.255.0.0
o Default Gateway : 10.5.0.1


13. Setting IP PC3 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 10.5.0.4
o Subnet Mask : 255.255.0.0
o Default Gateway : 10.5.0.1


14. Setting IP PC4 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 10.4.0.3
o Subnet Mask : 255.255.0.0
o Default Gateway : 10.4.0.1


15. Setting IP PC5 seperti di bawah ini, atau bisa menggunakan IP lain dengan catatan masih satu network
o IP address : 10.4.0.4
o Subnet Mask : 255.255.0.0
o Default Gateway : 10.4.0.1

Nah sekarang tinggal cek Koneksinya, untuk itu bisa digunakan Command Prompt dengan perintah “Ping [IP yang di tuju]

Kalau hasilnya “Replay from…………….” Berarti berhasil (connact).

– Cek Koneksi antara PC0 dengan PC1

PC>ping 10.1.0.4

Pinging 10.1.0.4 with 32 bytes of data:

Reply from 10.1.0.4: bytes=32 time=297ms TTL=128
Reply from 10.1.0.4: bytes=32 time=62ms TTL=128
Reply from 10.1.0.4: bytes=32 time=62ms TTL=128
Reply from 10.1.0.4: bytes=32 time=109ms TTL=128

Ping statistics for 10.1.0.4:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 62ms, Maximum = 297ms, Average = 132ms

– Cek Koneksi antara PC0 dengan PC2

PC>ping 10.5.0.3

Pinging 10.5.0.3 with 32 bytes of data:

Reply from 10.5.0.3: bytes=32 time=156ms TTL=126
Reply from 10.5.0.3: bytes=32 time=156ms TTL=126
Reply from 10.5.0.3: bytes=32 time=141ms TTL=126
Reply from 10.5.0.3: bytes=32 time=171ms TTL=126

Ping statistics for 10.5.0.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 141ms, Maximum = 171ms, Average = 156ms


– Cek Koneksi antara PC0 dengan PC3

PC>ping 10.5.0.4

Pinging 10.5.0.4 with 32 bytes of data:

Reply from 10.5.0.4: bytes=32 time=157ms TTL=126
Reply from 10.5.0.4: bytes=32 time=109ms TTL=126
Reply from 10.5.0.4: bytes=32 time=156ms TTL=126
Reply from 10.5.0.4: bytes=32 time=143ms TTL=126

Ping statistics for 10.5.0.4:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 109ms, Maximum = 157ms, Average = 141ms


– Cek Koneksi antara PC0 dengan PC4

PC>ping 10.4.0.3

Pinging 10.4.0.3 with 32 bytes of data:

Reply from 10.4.0.3: bytes=32 time=234ms TTL=125
Reply from 10.4.0.3: bytes=32 time=187ms TTL=125
Reply from 10.4.0.3: bytes=32 time=172ms TTL=125
Reply from 10.4.0.3: bytes=32 time=234ms TTL=125

Ping statistics for 10.4.0.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 172ms, Maximum = 234ms, Average = 206ms


– Cek Koneksi antara PC0 dengan PC5

PC>ping 10.4.0.4

Pinging 10.4.0.4 with 32 bytes of data:

Reply from 10.4.0.4: bytes=32 time=234ms TTL=125
Reply from 10.4.0.4: bytes=32 time=174ms TTL=125
Reply from 10.4.0.4: bytes=32 time=188ms TTL=125
Reply from 10.4.0.4: bytes=32 time=156ms TTL=125

Ping statistics for 10.4.0.4:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 156ms, Maximum = 234ms, Average = 188ms


Salam 10.240.0001

Try It!—- & Good uck

———-Jangan Mudah Menyerah———