Objective :
·
Mempelajari cara mengkonfigurasi
routing protocol eBGP
Topologi Lab :
Metoda Lab :
- Lanjutan Lab 3
- Menggunakan 5 buah router logical
- Konfigure ip address point-to-point
- Konfigure eBGP antar R3 dengan R5
Konfigurasi Lab :
1. Konfigure ip address
R3
---
interfaces {
em0 {
unit 35 {
vlan-id 35;
family inet {
address 35.35.35.3/24;
}
}
}
R5
---
interfaces {
em1 {
unit 35 {
vlan-id 35;
family inet {
address 35.35.35.5/24;
}
}
}
}
Verifikasi: Pastikan bisa
ping point-to-point
2. Konfigure protocol eBGP
R3
---
protocols {
bgp {
group eBGP {
type external;
local-address 35.35.35.3;
neighbor 35.35.35.5 {
peer-as 200;
}
}
}
routing-options {
autonomous-system 100;
}
R5
---
protocols {
bgp {
group eBGP {
type external;
local-address 35.35.35.5;
neighbor 35.35.35.3 {
peer-as 100;
}
}
}
}
routing-options {
autonomous-system 200;
}
Verifikasi: Pastikan eBGP
sudah established
|