Frame Relay Point-to-Point

Frame Relay adalah protokol WAN yang beroperasi pada layer pertama dan kedua dari model OSI, dan dapat diimplementasikan pada beberapa jenis interface jaringan. Sebuah jaringan frame relay terdiri dari “endpoint” (PC, server, komputer host), perangkat akses frame relay (bridge, router, host, frame relay access device/FRAD) dan perangkat jaringan (packet switch, router, multiplexer T1/E1).

Ada 2 jenis konfigurasi Frame Relay:
1. Point-to-point yang mensimulasikan suatu sambungan leased line- suatu sambungan langsung dengan suatu piranti tujuan.
2. Multipoint, yang menghubungkan setiap circuit untuk berkomunikasi dengan lebih dari satu piranti tujuan. Ciscuit yang sama digunakan untuk multiple komunikasi.

Contoh pembuatan frame relay point to point:
Dalam suatu jaringan komputer terdapat 1 cloud, 3 router tipe 1841 dengan hostname Bdg (Bandung), Jkt (Jakarta), dan Sby (surabaya). tiap-tiap router terdapat sebuah hub, dan masing masing hub harus ada end user (PC atau laptop. disini penulis menggunakan laptop untuk desain jaringannya.

Keterangan:
DLCI SubLink IP Address
102 Bdg-Jkt 192.168.1.1
103 Bdg-Sby 192.168.2.1
201 Jkt-Bdg 192.168.1.2
301 Sby-Jkt 192.168.2.2
sedangkan IP address untuk end user (laptop) sebagai berikut:
Laptop Ip Address
Bdg 10.10.1.0/24
Jkt 10.10.2.0/24
Sby 10.10.3.0/24

Langkah konfigurasi Frame Relay Point-To-Point
1. Membuat desain jaringan

2. Menambahan serial pada router

Langkah pertama harus mematikan (off) router,pilih bagian WIC-1T, kemudian pada gambar serial di drag ke router, dan di aktifkan(on) pada routernya. Kemudian lakukan hal yang sama untuk router selanjutnya. Untuk lebih jelas lihat gambar dibawah :


3. Mengkonfigurasi serial pada cloud

Click pada cloud, pilih config,Serial(0,1,2 seperti gambar), masukkan nilai DLCI dan name seperti pada tabel sebelumnya.

Serial 0

Serial 1

Serial 2

Frame Relay






4. Konfigurasi pada router
Router Bdg

Router>enable
Router#configure terminal
Router(config)#hostname bdg
bdg(config)#no ip domain-lookup
bdg(config)#enable secret cisco
bdg(config)#banner motd &
Enter TEXT message. End with the character '&'.
Router Bandung
&
bdg(config)#line console 0
bdg(config-line)#password cisco
bdg(config-line)#login
bdg(config-line)#logging synchronous
bdg(config-line)#line vty 0 4
bdg(config-line)#password cisco
bdg(config-line)#login
bdg(config-line)#logging synchronous
bdg(config-line)#exit
bdg(config)#interface serial 0/0/0
bdg(config-if)#encapsulation frame-relay
bdg(config-if)#exit
bdg(config)#int s0/0/0.102 point-to-point
bdg(config-subif)#ip address 192.168.1.1 255.255.255.0
bdg(config-subif)#frame-relay interface-dlci 102
bdg(config-subif)#exit
bdg(config)#int s0/0/0.103 point-to-point
bdg(config-subif)#ip address 192.168.2.1 255.255.255.0
bdg(config-subif)#frame-relay interface-dlci 103
bdg(config-subif)#exit
bdg(config)#interface serial 0/0/0
bdg(config-if)#no shutdown
bdg(config-if)#exit
bdg(config)#exit
bdg#

Router Jkt

Router>enable
Router#configure terminal
Router(config)#hostname jkt
jkt(config)#no ip domain-lookup
jkt(config)#enable secret cisco
jkt(config)# banner motd &
Enter TEXT message. End with the character '&'.
Router Jakarta
&
jkt(config)#
jkt(config)#line console 0
jkt(config-line)#password cisco
jkt(config-line)#login
jkt(config-line)#logging synchronous
jkt(config-line)#line vty 0 4
jkt(config-line)#password cisco
jkt(config-line)#login
jkt(config-line)#logging synchronous
jkt(config-line)#exit
jkt(config)#interface serial 0/0/0
jkt(config-if)#encapsulation frame-relay
jkt(config-if)#exit
jkt(config)#interface serial 0/0/0.201 point-to-point
jkt(config-subif)#ip address 192.168.1.2 255.255.255.0
jkt(config-subif)#frame-relay interface-dlci 201
jkt(config-subif)#exit
jkt(config)#interface serial 0/0/0
jkt(config-if)#no shutdown
jkt(config-if)#exit
jkt(config)#exit
jkt#

Router Sby

Router>enable
Router#configure terminal
Router(config)#hostname sby
sby(config)#no ip domain-lookup
sby(config)#enable secret cisco
sby(config)#banner motd &
Enter TEXT message. End with the character '&'.
Router Surabaya
&
sby(config)#
sby(config)#line console 0
sby(config-line)#password cisco
sby(config-line)#login
sby(config-line)#logging synchronous
sby(config-line)#line vty 0 4
sby(config-line)#password cisco
sby(config-line)#login
sby(config-line)#logging synchronous
sby(config-line)#exit
sby(config)#interface serial 0/0/0
sby(config-if)#encapsulation frame-relay
sby(config-if)#exit
sby(config)#interface serial 0/0/0.301 point-to-point
sby(config-subif)#ip address 192.168.2.2 255.255.255.0
sby(config-subif)#frame-relay interface-dlci 301
sby(config-subif)#exit
sby(config)#interface serial 0/0/0
sby(config-if)#no shutdown
sby(config-if)#
sby(config-if)#exit
sby(config)#exit
sby#

5. Cek konfigurasi dengan cara ping
Router Bdg
bdg#ping 192.168.1.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 62/62/63 ms
bdg#ping 192.168.2.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 62/62/63 ms
Router Jkt
jkt#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 = 49/59/63 ms
Router Sby
sby#ping 192.168.2.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 47/59/63 ms

Hasil Status

6. Setting untuk penambahan jaringan (hub) pada router
Router Bdg
bdg#configure terminal
bdg(config)#line console 0
bdg(config-line)#exec-timeout 30 0
bdg(config-line)#exit
bdg(config)#interface fastEthernet 0/0
bdg(config-if)#ip address 10.10.1.1 255.255.255.0
bdg(config-if)#no shutdown
bdg(config-if)#
bdg(config-if)#exit
bdg(config)#router rip
bdg(config-router)#version 2
bdg(config-router)#no auto-summary
bdg(config-router)#network 10.10.1.0
bdg(config-router)#network 192.168.1.0
bdg(config-router)#network 192.168.2.0
bdg(config-router)#exit
bdg(config)#exit
bdg#
Router Jkt
jkt#configure terminal
jkt(config)#line console 0
jkt(config-line)#exec-timeout 30 0
jkt(config-line)#exit
jkt(config)#interface fastEthernet 0/0
jkt(config-if)#ip address 10.10.2.1 255.255.255.0
jkt(config-if)#no shutdown
jkt(config-if)#
jkt(config-if)#exit
jkt(config)#router rip
jkt(config-router)#version 2
jkt(config-router)#no auto-summary
jkt(config-router)#network 10.10.2.0
jkt(config-router)#network 192.168.1.0
jkt(config-router)#exit
jkt(config)#exit
jkt#
Router Sby
sby#configure terminal
sby(config)#line console 0
sby(config-line)#exec-timeout 30 0
sby(config-line)#exit
sby(config)#interface fastEthernet 0/0
sby(config-if)#ip address 10.10.3.1 255.255.255.0
sby(config-if)#no shutdown
sby(config-if)#
sby(config-if)#exit
sby(config)#router rip
sby(config-router)#version 2
sby(config-router)#no auto-summary
sby(config-router)#network 10.10.3.0
sby(config-router)#network 192.168.2.0
sby(config-router)#exit
sby(config)#exit
sby#
7. Konfigurasi IP Address pada masing laptop
laptop-Bdg

laptop-Jkt

laptop-Sby



8. Cek Ping antar laptop


Semoga bermanfaat bagi pembaca semuanya.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

0 komentar:

Posting Komentar