Senin, 24 Oktober 2016

EIGRP Routing


Topologi atau gambar jaringan EIGRP yang yang akan saya buat.. masih menggunakan topologi/gambar jaringan sebelumnya..
Tidah jauh berbeda dengan konfigurasi sebelumnya dengan gambar jaringan seperti diatas..
Langkah pertama beri ip address pada komputer pertama(pc0) dengan ip :192.168.1.2/24 gateway :192.168.1.1
pada komputer kedua(pc1) diberi ip:192.168.3.2/24 gateway:192.168.3.1
Selanjutnya kita konfigurasi router 1, 2 dan 3 sebagai berikut :

Router 1
Router>enable
Router#configure terminal
Router(config)#hostname SMK-R1
SMK-R1(config)#interface fa0/0
SMK-R1(config-if)#ip address 192.168.1.1 255.255.255.0
SMK-R1(config-if)#no shutdown
SMK-R1(config-if)#exit
SMK-R1(config)#interface fa0/1
SMK-R1(config-if)#ip address 12.12.12.1 255.255.255.0
SMK-R1(config-if)#no shutdown

Router 2
Router>enable
Router#configure terminal
Router(config)#hostname SMK-R2
SMK-R2(config)#interface fa0/0
SMK-R2(config-if)#ip address 12.12.12.2 255.255.255.0
SMK-R2(config-if)#no shutdown
SMK-R2(config-if)#exit
SMK-R2(config)#interface fa0/1
SMK-R2(config-if)#ip address 23.23.23.2 255.255.255.0
SMK-R2(config-if)#no shutdown

Router 3
Router>enable
Router#configure terminal
Router(config)#hostname SMK-R3
SMK-R3(config)#interface fa0/0
SMK-R3(config-if)#ip address 23.23.23.3 255.255.255.0
SMK-R3(config-if)#no shutdown
SMK-R3(config-if)#exit
SMK-R3(config)#interface fa0/1
SMK-R3(config-if)#ip address 192.168.3.1 255.255.255.0
SMK-R3(config-if)#no shutdown

Menghitung wildcard mask :
255.255.255.255
255.255.255.0 -
--------------------
0 . 0 . 0 .255

Pada R1
SMK-R1(config)#router eigrp 10
SMK-R1(config-router)#network 12.12.12.0 0.0.0.255
SMK-R1(config-router)#network 192.168.1.0 0.0.0.255
SMK-R1(config-router)#no auto-summary

Pada R2
SMK-R2(config)#router eigrp 10
SMK-R2(config-router)#network 12.12.12.0 0.0.0.255
SMK-R2(config-router)#network 23.23.23.0 0.0.0.255
SMK-R2(config-router)#no auto-summary

Pada R3
SMK-R3(config)#router eigrp 10
SMK-R3(config-router)#network 23.23.23.0 0.0.0.255
SMK-R3(config-router)#network 192.168.3.0 0.0.0.255
SMK-R3(config-router)#no auto-summary


Tidak ada komentar:

Posting Komentar