Halaman

Sabtu, 04 Mei 2013

LAPORAN PRAKTIKUM 2.8.1 Basic Static Route Configuration Lab

LAPORAN PRAKTIKUM
2.8.1 Basic Static Route Configuration Lab

Markhamah Tri Utami 
12 615 056

Tujuan Pembelajaran:
Melalui praktikum ini diharapkan mampu 
  • Menyesuaikan kabel jaringan sesuai dengan topologi diagram 
  • Menghapus startup configuration and reload a router to the default state. 
  • Menkonfigurasi dasar pada router. 
  • Interpret debug ip routing output. 
  • Menkonfigurasi dan mengaktifkan Serial and Ethernet interfaces. 
  • Melakukan uji koneksi 
  • Mengumpulkan informasi penyebab gagalnya koneksi antara dua devices. 
  • Mengkonfigurasi static route menggunakan  intermediate address. 
  • Mengkonfigurasi static route menggunakan an exit interface. 
  • Membandingkan static w/intermediate address dengan static w/exit interface. 
  • Mengkonfigurasi sebuah default static route. 
  • Mengkonfigurasi sebuah summary static route. 
  • Dokumen implementasi jaringan 
Scenario
          In this lab activity, you will create a network that is similar to the one shown in the Topology Diagram. Begin by cabling the network as shown in the Topology Diagram. You will then perform the initial router configurations required for connectivity. Use the IP addresses that are provided in the Topology Diagram to apply an addressing scheme to the network devices. After completing the basic configuration, test connectivity between the devices on the network. First test the connections between directly connected devices, then test connectivity between devices that are not directly connected. Static routes must be configured on the routers for end-to-end communication to take place between the network hosts. You will configure the static routes that are needed to allow communication between the hosts. View the routing table after each static route is added to observe how the routing table has changed 

Langkah Praktikum
Topology Diagram


Hubungkan masing-masing PC ke switch dengan menggunakan kabel straight. 
  
Langkah 1 
Pada router, masuk ke modus konfigurasi global untuk mengkonfigurasi dasar konfigurasi perintah global, termasuk;  hostname, no ip domain-lookup, enable secret.

Langkah 2
Konfigurasi konsol dan virtual password garis terminal pada masing-masing router  
Pertama yaitu; mengatur router 1 terlebih dahulu dengan membuka tab CLI pada router 1 dan ketik script sebagai berikut:

Router1#enable
Router1#config t
Enter configuration commands, one per line.  End with CNTL/Z.
Router1(config)#hostname R1
R1(config)#no ip domain-lookup
R1(config)#no enable password
R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#end

R1#debug ip routing
IP routing debugging is on
R1#config t
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#interface fa0/0
R1(config-if)#ip address 172.16.3.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#interface serial 0/0/0
R1(config-if)#ip address 172.16.2.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#interface serial 0/0/0
R1(config-if)#ip address 172.16.2.1 255.255.255.0
R1(config-if)#clock rate 64000
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#ip route 0.0.0.0 0.0.0.0 172.16.2.2
R1(config)#exit
R1#

         Jika script sudah selesai di ketik, coba buka tab Config nya dan lihat perubahan yang terjadi. Pada Global Setting, display namedan hostname sudah berubah menjadi R1


Router 2

Router2#config t
Enter configuration commands, one per line.  End with CNTL/Z.

Router2(config)#hostname R2
R2(config)#no ip domain-lookup
R2(config)#no enable password
R2(config)#line con 0
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#exit
R2(config)#line vty 0 4
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#exit
R2(config)#interface fa0/0
R2(config-if)#ip address 172.16.1.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#interface serial 0/0/0
R2(config-if)#ip address 172.16.2.2 255.255.255.0
R2(config-if)#clock rate 64000
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#interface serial 0/0/1
R2(config-if)#ip address 192.168.2.1 255.255.255.0
R2(config-if)#clock rate 64000
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#ip route 192.168.2.0 255.255.255.0 192.168.1.1
R2(config)#ip route 172.16.3.0 255.255.255.0 serial0/0/0
R2(config)#exit

       Lalu buka tab Config nya dan lihat perubahan yang terjadi. Pada Global Setting, display name dan hostname sudah berubah menjadi R2.

Router 3
Router3#config t 
Enter configuration commands, one per line.  End with CNTL/Z.

Router3(config)#hostname R3
R3(config)#no ip domain-lookup
R3(config)#no enable password
R3(config)#line con 0
R3(config-line)#password cisco
R3(config-line)#login
R3(config-line)#exit
R3(config)#line vty 0 4
R3(config-line)#password cisco
R3(config-line)#login
R3(config-line)#exit
R3(config)#interface fa0/0
R3(config-if)#ip address 192.168.2.1 255.255.255.0
R3(config-if)#no shutdown
R3(config-if)#exit
R3(config)#interface serial 0/0/1
R3(config-if)#ip address 192.168.1.1 255.255.255.0
R3(config-if)#clock rate 64000
R3(config-if)#no shutdown
R3(config-if)#exit
R3(config)#ip route 172.16.0.0 255.255.255.0 192.168.1.2
R3(config)#exit

         Pada Global Setting, display name diganti jadi R3 dan hostname sudah berubah jadi R3


Langkah 3
Mengatur konfigurasi IP di setiap PC
PC1

PC2
PC3

Hasil Praktikum

PC1