Monday, May 11, 2015

Simulasi Frame Relay dengan 4 Router

Simulasi Frame Relay dengan 4 Router
Router
Serial 0/0
Loopback0
Fa0/0
R1
10.2.34.1/29
1.1.1.1/32
10.11.11.1/24
R2
10.2.34.2/29
2.2.2.2/32
10.22.22.1/24
R3
10.2.34.3/29
3.3.3.3/32
10.33.33.1/24
R4
10.2.34.4/29
3.3.3.3/32
10.44.44.1/24

Kita coba simulasikan Frame Relay dengan menggunakan 4 buah router Cisco. Harus bisa ping semua, baru bisa disebut berhasil.
Pertama, konfigurasi Frame Relay Switch Group (Node Configurator).
FR1 Configuration (Star Topology)

Topology-nya bisa digambar seperti di bawah ini. Ini yang disebut topologi star atau disebut juga “hub and spoke”. Hanya ada 1 node router yang mempunyai banyak VC (Virtual Connection), sebagai pusat yang mengelink ke cabang / router lainnya.
Star Topology

Selanjutnya konfigurasi routernya.
R1
R1#config ter
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#inter serial0/0
R1(config-if)#ip address 10.2.34.1 255.255.255.248
R1(config-if)#encapsulation frame-relay
R1(config-if)#desc ##WAN-R1##
R1(config-if)#no shut
R1(config-if)#inter loopback0
R1(config-if)#ip address 1.1.1.1 255.255.255.255
R1(config-if)#inter e0/0
R1(config-if)#ip add 10.11.11.1 255.255.255.0
R1(config-if)#desc ##LAN##
R1(config-if)#no shut

R2
R2#config ter
Enter configuration commands, one per line.  End with CNTL/Z.
R2(config)#inter serial0/0
R2(config-if)#ip add 10.2.34.2 255.255.255.248
R2(config-if)#encapsulation frame-relay
R2(config-if)#desc ##WAN##
R2(config-if)#no shut
R2(config-if)#inter loopback0
R2(config-if)#ip add 2.2.2.2 255.255.255.255
R2(config-if)#inter e0/0
R2(config-if)#ip add 10.22.22.1 255.255.255.0
R2(config-if)#desc ##LAN##
R2(config-if)#no shut

R3
R3#config ter
Enter configuration commands, one per line.  End with CNTL/Z.
R3(config)#inter serial 0/0
R3(config-if)#ip address 10.2.34.3 255.255.255.248
R3(config-if)#desc ##WAN##
R3(config-if)#encapsulation frame-relay
R3(config-if)#no shut
R3(config-if)#inter loopback0
R3(config-if)#ip add 3.3.3.3 255.255.255.255
R3(config-if)#inter fa0/0
R3(config-if)#ip add 10.33.33.1 255.255.255.0
R3(config-if)#desc ##LAN##
R3(config-if)#no shut
R3(config-if)#
R3(config-if)#do wr
Warning: Attempting to overwrite an NVRAM configuration previously written
by a different version of the system image.
Overwrite the previous NVRAM configuration?[confirm]
Building configuration...
[OK]

R4
R4#config ter
Enter configuration commands, one per line.  End with CNTL/Z.
R4(config)#inter serial0/0
R4(config-if)#desc ##WAN##
R4(config-if)#ip add 10.2.34.4 255.255.255.248
R4(config-if)#encap fram
R4(config-if)#no shut
R4(config-if)#inter loopback0
R4(config-if)#ip add 4.4.4.4 255.255.255.255
R4(config-if)#inter fa0/0
R4(config-if)#ip add 10.44.44.1 255.255.255.0
R4(config-if)#desc ##LAN##
R4(config-if)#no shut
R4(config-if)#do wr
Warning: Attempting to overwrite an NVRAM configuration previously written
by a different version of the system image.
Overwrite the previous NVRAM configuration?[confirm]
Building configuration...
[OK]

Mari kita lihat hasilnya.
R1#sh frame-relay map
Serial0/0 (up): ip 10.2.34.2 dlci 101(0x65,0x1850), dynamic,
              broadcast,, status defined, active
Serial0/0 (up): ip 10.2.34.3 dlci 102(0x66,0x1860), dynamic,
              broadcast,, status defined, active
Serial0/0 (up): ip 10.2.34.4 dlci 103(0x67,0x1870), dynamic,
              broadcast,, status defined, active
R1#ping 10.2.34.2

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.2.34.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/45/164 ms
R1#ping 10.2.34.3

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.2.34.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/53/188 ms
R1#ping 10.2.34.4

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.2.34.4, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/74/197 ms

Di R1 akan terdeteksi IP lainnya dan nomer dlci-nya. Dan semua IP-nya bisa diping. Sedangkan di R2, R3 dan R4, akan hanya ada satu IP yang terdeteksi, yaitu IP 10.2.34.1 dengan dlci 201. Dan hanya IP tersebut yang bisa diping.
R2#sh frame-relay map
Serial0/0 (up): ip 10.2.34.1 dlci 201(0xC9,0x3090), dynamic,
              broadcast,, status defined, active
R2#ping 10.2.34.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.2.34.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/47/120 ms
R2#ping 10.2.34.3

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.2.34.3, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
R2#ping 10.2.34.4

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.2.34.4, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)

Bagaimana caranya agar semua router bisa saling berkomunikasi, bisa saling ping? Caraya adalah mengkonfigurasi ulang frame-relay switch, dengan menambahkan jalur / pathnya.
FR1 Configuration (Full Mesh Topology)

Dengan begini, semua router bisa saling berkomunikasi. Topology-nya bisa digambarkan seperti di bawah ini. Ini yang disebut full mesh topology. Setiap node mempunyai banyak Virtual Connection (VC), dan ke setiap cabang mempunyai jalurnya sendiri-sendiri.
Full Mesh Topology

Untuk IP LAN dan IP Loopback, agar bisa di-ping/berkomunikasi, perlu ditambahkan ip routing static. Lihat caranya di postingan sebelumnya.

Noted :
Setiap mengkonfigurasi ulang node configurator (frame relay switch group), biasanya GNS3 harus direstart. Agar perubahan yang ada di frame relay switch bisa diterapkan. Jangan lupa klik save di GNS3, agar konfigurasi router tidak hilang. Sekali lagi, bukan router yang ada di GNS3 yang direstart. Tetapi aplikasi GNS3-nya. Close dan kemudian dijalankan lagi.

4 comments:

  1. Mas contoh konfigurasi frame relay multipoint menggunakan 4 buah router gimana?

    ReplyDelete
  2. I really enjoyed reading this blog. Thank you for sharing your work. Thank you for Sharing such an amazing article.
    MSBU BA 2nd Year Exam Result | MSBU BA 3rd Year Exam Result.

    ReplyDelete
  3. Jili Slot เป็นผู้ให้บริการเกมคาสิโนออนไลน์และก็สล็อตออนไลน์ มีเกมสนุกสนานๆให้เลือกเล่นมาก สามารถเข้าไปเล่น jili slot เล่นผ่านเว็บไซต์ของพวกเราได้เลย ที่เว็บไซต์ pgslot

    ReplyDelete