Facebook Twitter Gplus Google Maps E-mail RSS

Kamis, 21 November 2013

UTS Praktikum Jaringn Komputer : Routing RIP V2

Routing Information Protocol (RIP) adalah merupakan routing protocol yang sangat sederhana dan masuk kategori Interior Gateway Protocol. RIP merupakan routing protocol dengan algorithma routing distance vector atau routing protocol yang hanya melihat arah dan jarak untuk menuju suatu jaringan tujuan. RIP tidak memiliki peta yang lengkap tentang jaringan yang ada.

RIP yang merupakan routing protokol dengan algoritma distance vector, yang menghitung jumlah hop (count hop) sebagai routing metric. Jumlah maksimum dari hop yang diperbolehkan adalah 15 hop. Tiap RIP router saling tukar informasi routing tiap 30 detik, melalui UDP port 520. Untuk menghindari loop routing, digunakan teknik split horizon with poison reverse. RIP merupakan routing protocol yang paling mudah untuk di konfigurasi.  

RIP terdiri dari beberapa versi, yaitu :
  • RIPv1, merupakan routing protocol jenis classfull dan akan mengirimkan tabel routingnya secara broadcast  
  • RIPv2, merupakan routing protocol jenis classless, akan mengirimkan tabel routingnya secara multicast dan memiliki fitur authentication.  
RIPng (RIP Next Generation), digunakan pada jaringan IPv6.  

Kelebihan Dari RIP sebagai berikut :
  • Menggunakan metode Triggered Update. 
  • RIP memiliki timer untuk mengetahui kapan router harus kembali memberikan informasi routing. - Jika terjadi perubahan pada jaringan, sementara timer belum habis, router tetap harus mengirimkan informasi routing karena dipicu oleh perubahan tersebut (triggered update).
  • Mengatur routing menggunakan RIP tidak rumit dan memberikan hasil yang cukup dapat diterima, terlebih jika jarang terjadi kegagalan link jaringan. 

Kekurangan dari RIP sebagai berikut :
  • Jumlah host Terbatas
  • RIP tidak memiliki informasi tentang subnet setiap route.
  • RIP tidak mendukung Variable Length Subnet Masking (VLSM). 
  • Ketika pertama kali dijalankan hanya mengetahui cara routing ke dirinya sendiri (informasi lokal) dan tidak mengetahui topologi jaringan tempatnya berada 
  •  Hop CountRIP menghitung routing terbaik berdasarkan hop count dimana belum tentu hop count yang rendah menggunakan protokol LAN yang bagus, dan bisasaja RIP memilih jalur jaringan yang lambat. 
  • Hop Count Limit RIP tidak dapat mengatur hop lebih dari 15. Hal ini digunakan untuk mencegah loop pada jaringan.
  • Classful Routing Only RIP menggunakan classful routing ( /8, /16, /24 ). RIP tidak dapat mengatur classless routing.
 Berikut contoh Topologi menggunakan RIP V2 :



Konfigurasi Router 1 :
R1>en
R1>enable
R1#con
R1#conf
R1#configure te
R1#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#inte
R1(config)#interface fa
R1(config)#interface fastEthernet 0/0
R1(config-if)#ip add
R1(config-if)#ip address 192.168.20.1 255.255.255.0
R1(config-if)#no sh
R1(config-if)#no shutdown

R1(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

R1(config-if)#exi
R1(config-if)#exit
R1(config)#inter
R1(config)#interface se
R1(config)#interface serial 0/0/0
R1(config-if)#ip ad
R1(config-if)#ip address 192.168.20.1 255.255.255.0
% 192.168.20.0 overlaps with FastEthernet0/0
R1(config-if)#ip ad
R1(config-if)#ip address 10.10.20.1 255.255.255.0
R1(config-if)#clo
R1(config-if)#clock ra
R1(config-if)#clock rate 64000
This command applies only to DCE interfaces
R1(config-if)#no shu
R1(config-if)#no shutdown

%LINK-5-CHANGED: Interface Serial0/0/0, changed state to down
R1(config-if)#exit
R1(config)#^Z
R1#
%SYS-5-CONFIG_I: Configured from console by console

R1#con
R1#conf
R1#configure te
R1#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#route rip
R1(config-router)#net
R1(config-router)#network 192.168.20.0
R1(config-router)#net
R1(config-router)#network 10.10.20.0
R1(config-router)#^Z
R1#
%SYS-5-CONFIG_I: Configured from console by console

Konfigurasi Router 2


Router>en
Router#conf
Router#configure te
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#host
Router(config)#hostname R2
R2(config)#inte
R2(config)#interface fa
R2(config)#interface fastEthernet 0/0
R2(config-if)#ip add
R2(config-if)#ip address 192.168.10.1 255.255.255.0
R2(config-if)#no shu
R2(config-if)#no shutdown

R2(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

R2(config-if)#exit
R2(config)#inter
R2(config)#interface se
R2(config)#interface serial 0/0/1
R2(config-if)#ip add
R2(config-if)#ip address 10.10.10.1 255.255.255.0
R2(config-if)#cloc
R2(config-if)#clock ra
R2(config-if)#clock rate 64000
This command applies only to DCE interfaces
R2(config-if)#no sh
R2(config-if)#no shutdown

%LINK-5-CHANGED: Interface Serial0/0/1, changed state to down
R2(config-if)#exit
R2(config)#^Z
R2#
%SYS-5-CONFIG_I: Configured from console by console

R2#conf
R2#configure ter
R2#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
R2(config)#rout
R2(config)#route rip
R2(config-router)#net
R2(config-router)#network 10.10.20.0
R2(config-router)#net
R2(config-router)#network 192.168.10.0
R2(config-router)#net
R2(config-router)#network 10.10.10.0
R2(config-router)#^Z
R2#
%SYS-5-CONFIG_I: Configured from console by console

R2#copy run
R2#copy running-config
% Incomplete command.
R2#
R2#copy
R2#copy run s
R2#copy run startup-config
Destination filename [startup-config]?
Building configuration...
[OK]

Konfigurasi Router 3

Router>en
Router>enable
Router#con
Router#conf
Router#configure te
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hos
Router(config)#hostname R3
R3(config)#inter
R3(config)#interface fa
R3(config)#interface fastEthernet 112.16.30.1 255.255.255.0
                                             ^
% Invalid input detected at '^' marker.
               
R3(config)#inte
R3(config)#interface fas
R3(config)#interface fastEthernet 0/0
R3(config-if)#ip ad
R3(config-if)#ip address 112.16.30.1 255.255.255.0
R3(config-if)#no shut
R3(config-if)#no shutdown

R3(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

R3(config-if)#exit
R3(config)#inter
R3(config)#interface se
R3(config)#interface serial 0/0/0
R3(config-if)#ip a
R3(config-if)#ip ad
R3(config-if)#ip address 10.10.10.4 255.255.255.0
R3(config-if)#clo
R3(config-if)#clock ra
R3(config-if)#clock rate 64000
This command applies only to DCE interfaces
R3(config-if)#no shu
R3(config-if)#no shutdown

R3(config-if)#
%LINK-5-CHANGED: Interface Serial0/0/0, changed state to up

R3(config-if)#ex
R3(config-if)#exit
R3(config)#^Z
R3#
%SYS-5-CONFIG_I: Configured from console by console

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

R3#conf
R3#configure te
R3#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
R3(config)#route rip
R3(config-router)#net
R3(config-router)#network 10.10.10.0
R3(config-router)#net
R3(config-router)#network 112.16.30.0
R3(config-router)#^Z
R3#
%SYS-5-CONFIG_I: Configured from console by console

R3#cop
R3#copy run
R3#copy run st
R3#copy run startup-config
Destination filename [startup-config]?
Building configuration...
[OK]

Setting pada User di Setiap router :


berikut ini adalah tabel pengaturan dari PC user :


Setting Server


Setting DNS ini berguna untuk mengatur alamat server pada browser

 HTPPS ini berguna untuk mengatur tampilan dari server dengan menggunakan bahasa HTML

untuk check apakah PC user telah terkoneksi dengan server kita dapat menggunakan CMD : Ping 192.168.102.2

Gambar diatas menunjukkan bahwa User telah terkoneksi dengan server.

Lalu kita dapat Mengakses web yang telah kita setting di server tadi, setiap user dalam jaringan ini dapat mengkases web server ini. berikut ini adalah tampilan dari server yang di browsing dari PC0 :


Demikian tips dan trik mengenai Routing RIP V2. Semoga menjadi ilmu yang bermanfaat :)

Nama : Bobby Arga
NIM : 09111001049
Sistem Komputer 2011 B
Fakultas Ilmu Komputer
Universitas Sriwijaya

 
© guitarholix \m/
All rights reserved
Bloggerized by Free Blogger Templates
Instruction by Blog Teacher