Route EIGRP
EIGRP(Enhanced Interior Gateway
Routing Protocol) adalah routing komputer yang digunakan untuk menghubungkan
jaringan antar router secara dinamik. EIGRP merupakan protokol routing hanya
dapat digunakan pada router cisco saja
dan termasuk ke dalam distance vector routing protocol.
Kelebihan dari
EIGRP adalah adanya feasibel succesor /
jalur backup yang akan menggantikan jalur utama apabila terjadi kegagalan link
(down) pada jalur utama tersebut. Beberapa karakteristik EIGRP :
- Menggunakan algoritma DUAL
- Memiliki hop count sebanyak 224
- Dapat Melakukan Convergence secara cepat
- Mampu menonaktifkan auto-summary route
- Mampu menonaktifkan auto-summary route
- Menggunakan composite metric.
Untuk melakukan
konfigurasi terdapat 2 langkah yang harus dilakukan. Yaitu mengaktifkan routing EIGRP dan mengadvertise
network yang terhubung dengan router.
Untuk mengaktifkan
routing EIGRP menggunakan Comand :
Router
eigrp [ASN]
ASN(autonomous
System number) merupakan sebuah indetifier yang digunakan router2 eigrp untuk
mengenali router eigrp lainnya. Router eigrp hanya hanya dapat berkomunikasi
dalam satu ASN yang sama. Jika ingin berkomunikasi dengan router lain yang
terletak dengan ASN yang berbeda, maka harus dilakukan redistribute(ini belum kita pelajari).
Sedangkan untuk
advertise network menggunakan perintah :
Network
[network_address]
Network address
adalah network yang terhubung langsung dengan router. Bisa juga dengan perintah
Network
[network_address] [wildcard mask]
Wildcard mask adalah menentukan network tertentu(spesifik) yang harus diadvertise.
Kita juga bisa menggunakan perintah no auto-summary . perintah ini berguna agar network address tidak di summary (auto summarize). Untuk beberapa kasus perintah ini sangat penting jika tidak menggunakan perintah ini, bisa bisa routing akan menjadi kacau.
Konfigurasi
routing EIGRP ;
Gambarkan
topologi jaringan berikut :
Gambar 1 : Topologi Jaringan EIGRP
Tabel
Adressing :
Device |
Interface |
Ip add |
Subnetmask |
Gateway |
R1 |
Fa0/0 |
192.168.30.1 |
255.255.255.0 |
N/A |
Se2/0 |
30.30.30.5 |
255.255.255.0 |
N/A |
|
Se3/0 |
20.20.20.10 |
255.255.255.0 |
N/A |
|
R2 |
Se3/0 |
10.10.10.1 |
255.255.255.0 |
N/A |
Se2/0 |
30.30.30.10 |
255.255.255.0 |
N/A |
|
R3 |
Se2/0 |
20.20.20.5 |
255.255.255.0 |
N/A |
Se3/0 |
10.10.10.5 |
255.255.255.0 |
N/A |
|
Fa1/0 |
192.168.10.1 |
255.255.255.0 |
N/A |
|
Fa0/0 |
15.15.15.1 |
255.255.255.0 |
N/A |
|
R4 |
Fa0/0 |
15.15.15.10 |
255.255.255.0 |
N/A |
Fa1/0 |
192.168.1.1 |
255.255.255.0 |
N/A |
|
Sw1 |
N/A |
N/A |
N/A |
N/A |
Sw2 |
N/A |
N/A |
N/A |
N/A |
Sw3 |
N/A |
N/A |
N/A |
N/A |
Pc1 |
N/A |
192.168.30.2 |
255.255.255.0 |
192.168.30.1 |
Pc2 |
N/A |
192.168.30.3 |
255.255.255.0 |
192.168.30.1 |
Pc3 |
N/A |
192.168.10.2 |
255.255.255.0 |
192.168.10.1 |
Pc4 |
N/A |
192.168.1.2 |
255.255.255.0 |
192.168.1.1 |
Pc5 |
N/A |
192.168.1.3 |
255.255.255.0 |
192.168.1.1 |
Berikut adalah
konfigurasi dari masing-masing router diatas :
Konfigurasi pada
router :
Router 1 :
//masuk ke mode
konfigurasi
Router>en
Router#conf t
// pemberian nama
router
Router(config)#hostname
R1
// pemberian
password console dan vty
R1(config)#enable
secret satu
R1(config)#line
console 0
R1(config-line)#password
satu
R1(config-line)#exec-timeout
5 0 // jika tidak ada kegiatan slam 5 menit , masuk harus login
R1(config-line)#login
R1(config-line)#exit
R1(config)#line vty
0 5
R1(config-line)#password
satu
R1(config-line)#exec-timeout
5 0
R1(config-line)#login
R1(config-line)#exit
// encryption
semua password
R1(config)#service
password-encryption
// konfigurasi ip
Address
R1(config)#int
fa0/0
R1(config-if)#ip
add 192.168.30.1 255.255.255.0
R1(config-if)#no
shut
R1(config)#exit
R1(config-if)#int
se2/0
R1(config-if)#ip
add 30.30.30.5 255.255.255.0
R1(config-if)#no
shut
R1(config-if)#exit
R1(config)#int
se3/0
R1(config-if)#ip
add 20.20.20.10 255.255.255.0
R1(config-if)#no
shut
R1(config-if)#exit
//konfigurasi
route eigrp
R1(config)#router
eigrp 10
R1(config-router)#no
auto-summary
R1(config-router)#network 192.168.30.1 0.0.0.255
R1(config-router)#network
30.30.30.5 0.0.0.255
R1(config-router)#network
20.20.20.10 0.0.0.255
R1(config-router)#passive-interface
fa0/0 //tidak mengirimkan hello packet ke interface
R1(config-router)#exit
// menyimpan
konfigurasi router
R1(config)#do w
Building
configuration...
[ok].
R1(config)#
Router 2 :
//masuk ke mode
konfigurasi
Router>en
Router#conf t
// pemberian nama
router
Router(config)#hostname
R2
// pemberian
password console dan vty
R2(config)#enable
secret satu
R2(config)#line
console 0
R2(config-line)#password
satu
R2(config-line)#exec-timeout
5 0 // jika tidak ada kegiatan slam 5 menit , masuk harus login
R2(config-line)#login
R2(config-line)#exit
R2(config)#line
vty 0 5
R2(config-line)#password
satu
R2(config-line)#exec-timeout
5 0
R2(config-line)#login
R2(config-line)#exit
// encryption
semua password
R2(config)#service
password-encryption
// konfigurasi ip
Address
R2(config)#int
se3/0
R2(config-if)#ip
add 10.10.10.1 255.255.255.0
R2(config-if)#no
shut
R2(config-if)#exit
R2(config)#int
se2/0
R2(config-if)#ip
add 30.30.30..10 255.255.255.0
R2(config-if)#no
shut
R2(config-if)#exit
// konfigurasi
route eigrp
R2(config)# router
eigrp 10
R2(config-router)#
no auto-summary
R2(config-router)#network
10.10.10.1 0.0.0.255
R2(config-router)#network
30.30.30.10 0.0.0.255
R2(config-router)#exit
// menyimpan
konfigurasi router
R2(config)#do w
Building
configuration...
[ok].
R2(config)#
Router 3 :
//masuk ke mode
konfigurasi
Router>en
Router#conf t
// pemberian nama
router
Router(config)#hostname
R3
// pemberian
password console dan vty
R3(config)#enable
secret satu
R3(config)#line
console 0
R3(config-line)#password
satu
R3(config-line)#exec-timeout
5 0 // jika tidak ada kegiatan slam 5 menit , masuk harus login
R3(config-line)#login
R3(config-line)#exit
R3(config)#line
vty 0 5
R3(config-line)#password
satu
R3(config-line)#exec-timeout
5 0
R3(config-line)#login
R3(config-line)#exit
// encryption
semua password
R3(config)#service
password-encryption
// konfigurasi ip
Address
R3(config)#int
se2/0
R3(config-if)#ip
add 20.20.20.5 255.255.255.0
R3(config-if)#no
shut
R3(config-if)#exit
R3(config)#int
se3/0
R3(config-if)#ip
add 10.10.10..5 255.255.255.0
R3(config-if)#no
shut
R3(config-if)#exit
R3(config)#int
fa1/0
R3(config-if)#ip
add 192.168.10.1 255.255.255.0
R3(config-if)#no
shut
R3(config-if)#exit
R3(config)#int
fa0/0
R3(config-if)#ip
add 15.15.15.1 255.255.255.0
R3(config-if)#no
shut
R3(config-if)#exit
// konfigurasi
route eigrp
R3(config)# router
eigrp 10
R3(config-router)#
no auto-summary
R3(config-router)#network
20.20.20.5 0.0.0.255
R3(config-router)#network
10.10.10.5 0.0.0.255
R3(config-router)#network
192.168.10.1 0.0.0.255
R3(config-router)#network
15.15.15.1 0.0.0.255
R3(config-router)#passive-interface
fa1/0
R3(config-router)#exit
// menyimpan
konfigurasi router
R3(config)#do w
Building
configuration...
[ok].
R3(config)#
Router 4 :
//masuk ke mode
konfigurasi
Router>en
Router#conf t
// pemberian nama
router
Router(config)#hostname
R4
// pemberian
password console dan vty
R4(config)#enable
secret satu
R4(config)#line console
0
R4(config-line)#password
satu
R4(config-line)#exec-timeout
5 0 // jika tidak ada kegiatan slam 5 menit , masuk harus login
R4(config-line)#login
R4(config-line)#exit
R4(config)#line
vty 0 5
R4(config-line)#password
satu
R4(config-line)#exec-timeout
5 0
R4(config-line)#login
R4(config-line)#exit
// encryption
semua password
R4(config)#service
password-encryption
// konfigurasi ip
Address
R4(config)#int
fa0/0
R4(config-if)#ip
add 15.15.15.10 255.255.255.0
R4(config-if)#no
shut
R4(config-if)#exit
R4(config)#int
fa1/0
R4(config-if)#ip
add 192.168.1.1 255.255.255.0
R4(config-if)#no
shut
R4(config-if)#exit
// konfigurasi
route eigrp
R4(config)# router
eigrp 10
R4(config-router)#
no auto-summary
R4(config-router)#network
15.15.15.10 0.0.0.255
R4(config-router)#network
192.168.1.1 0.0.0.255
R4(config-router)#passive-interface
fa1/0
R4(config-router)#exit
// menyimpan
konfigurasi router
R4(config)#do w
Building
configuration...
[ok].
R4(config)#
Memberi Ip add pada setiap PC :
Gambar 2 . Ip add pada PC1 |
Gambar 3 : IP add pada PC2 |
Gambar 4 : Ip add PC3 |
gambar 5 : IP add pada PC4 |
Gambar 6 : Ip add PC 5 |
Setelah kita konfigurasi semuanya...kita cek verifikasi routing tabelnya
gambar 7 : show IP route |
Gambar 8 : Show Ip route Untuk EIGRP |
Note :
- Tanda D menandakan Dual (EIGRP)
- 90 itu merupakan AD (administrative Distance)
- Sedangkan 30720 adalah metric pada EIGRP
gambar 9 :ping PC1 ke PC3 |
gambar 10 : ping dari pc5 ke pc3 |
Gambar 11 : ping dari PC4 ke PC2 |
Jika kawan2 ingin
mendowload file .pkt dan file konfigurasinya . Dowload ||DISINI||
Referensi :
Ebook dengan judul
“Dapur’e Cisco CCNA” penulis Aida Mahmudah