0% found this document useful (0 votes)
4 views1 page

BGP Configuration Guide for AS 20 & 30

Uploaded by

Anggi
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

BGP Configuration Guide for AS 20 & 30

Uploaded by

Anggi
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Handout Praktikum: BGP (Border Gateway Protocol)

Topologi: R1 (AS 20) ↔ R2 (AS 30) dengan koneksi Serial dan LAN masing-masing

1) Alokasi IP:
- Link antar-router (Serial): [Link]/30 → R1 Se0/1/0: [Link], R2 Se0/1/0: [Link]
- LAN kiri (R1): [Link]/24, Gateway: [Link]
- LAN kanan (R2): [Link]/24, Gateway: [Link]
- PC1: [Link]/24 GW [Link]
- PC2: [Link]/24 GW [Link]

2) Konfigurasi R1 (AS 20):


enable
configure terminal
hostname R1
interface serial0/1/0
ip address [Link] [Link]
clock rate 64000
no shutdown
interface gigabitEthernet0/1
ip address [Link] [Link]
no shutdown

router bgp 20
neighbor [Link] remote-as 30
network [Link] mask [Link]
end
write memory

3) Konfigurasi R2 (AS 30):


enable
configure terminal
hostname R2
interface serial0/1/0
ip address [Link] [Link]
no shutdown
interface gigabitEthernet0/1
ip address [Link] [Link]
no shutdown

router bgp 30
neighbor [Link] remote-as 20
network [Link] mask [Link]
end
write memory

4) Penjelasan Perintah Utama BGP:


- router bgp <AS> → Masuk mode konfigurasi BGP dan mendefinisikan nomor AS.
- neighbor <IP> remote-as <AS> → Menetapkan router tetangga BGP dan AS-nya.
- network <ip> mask <subnet> → Mengiklankan jaringan lokal ke dalam BGP.

5) Verifikasi:
- show ip bgp summary → Periksa status tetangga (harus Established).
- show ip bgp → Lihat rute yang dipelajari melalui BGP.
- show ip route → Harus muncul route ke [Link] di R1, dan ke [Link] di R2.
- PC1 ping [Link] → sukses melalui BGP.

You might also like