Konfigurasi EIGRP

Konfigurasi EIGRP

Task 1: Konfigurasi EIGRP
Cara 1:
(config)# router eigrp 65000
(config-router)# network 10.0.0.0
(config-router)# passive-interface f0/0
(config-router)# end

Cara 2:
Router-SBY:
(config)# router eigrp 65000
(config-router)# network 10.1.1.0 0.0.0.255
(config-router)# network 10.1.2.0 0.0.0.255
(config-router)# passive-interface f0/0
(config-router)# end

Router-MDN:
(config)# router eigrp 65000
(config-router)# network 10.1.4.0 0.0.0.255
(config-router)# network 10.1.5.0 0.0.0.255
(config-router)# passive-interface f0/0
(config-router)# end

Router-JKT:
(config)# router eigrp 65000
(config-router)# network 10.1.2.0 0.0.0.255
(config-router)# network 10.1.3.0 0.0.0.255
(config-router)# network 10.1.4.0 0.0.0.255
(config-router)# passive-interface f0/0
(config-router)# end

# sh ip eigrp neighbor    è neighbor table
# sh ip eigrp topology     è topology table  à P = passive ; artinya jaringan tersebut stabil (tidak up/down)
# sh ip route                       è routing table
# sh ip protocol
 # debug ip eigrp
  
Task 2: EIGRP MD5 authentication
Router-SBY:
(config)# key chain SBY
(config-keychain)# key 1
(config-keychain-key)# key-string kijokobodo 
(config-keychain-key)# int s0/1
(config-if)# ip authentication mode eigrp 65000 md5
(config-if)# ip authentication key-chain eigrp 65000 SBY
(config-if)# end 
# sh key chain

Task 3: Menghapus konfigurasi EIGRP
Router-SBY:
(config)# int s0/1
(config-if)# no ip authentication mode eigrp 65000 md5
(config-if)# no ip authentication key-chain eigrp 65000 SBY
(config-if)# exit
(config)# no router eigrp 65000

0 Comment for "Konfigurasi EIGRP"

Back To Top