EIGRP (Enhanced Interior Gateway Routing Protocol ) Config Dasar
Konfigurasi di R1 R2 dan R3
di R1
interface Loopback0
ip address 1.1.1.1 255.255.255.255
!
interface Serial2/0
ip address 12.12.12.1 255.255.255.0
serial restart-delay 0
!
di R2
interface Loopback0
ip address 2.2.2.2 255.255.255.255
!
interface Ethernet0/0
ip address 23.23.23.2 255.255.255.0
!
interface Serial2/0
ip address 12.12.12.2 255.255.255.0
serial restart-delay 0
!
di R3
interface Loopback0
ip address 3.3.3.3 255.255.255.255
!
interface Ethernet0/0
ip address 23.23.23.3 255.255.255.0
!
Konfigurasi EIGRP dengan Identitas AS 1 di R1 R2 dan R3
di R1
router eigrp 1
network 1.1.1.1 0.0.0.0
network 12.12.12.0 0.0.0.255
!
di R2
router eigrp 1
network 2.2.2.2 0.0.0.0
network 12.12.12.0 0.0.0.255
network 23.23.23.0 0.0.0.255
!
di R3
router eigrp 1
network 3.3.3.3 0.0.0.0
network 23.23.23.0 0.0.0.255
!
Verifikasi di R1
R1(config)#do sh ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
a - application route
+ - replicated route, % - next hop override
Gateway of last resort is not set
1.0.0.0/32 is subnetted, 1 subnets
C 1.1.1.1 is directly connected, Loopback0
2.0.0.0/32 is subnetted, 1 subnets
D 2.2.2.2 [90/2297856] via 12.12.12.2, 00:01:29, Serial2/0
3.0.0.0/32 is subnetted, 1 subnets
D 3.3.3.3 [90/2323456] via 12.12.12.2, 00:00:38, Serial2/0
12.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 12.12.12.0/24 is directly connected, Serial2/0
L 12.12.12.1/32 is directly connected, Serial2/0
23.0.0.0/24 is subnetted, 1 subnets
D 23.23.23.0 [90/2195456] via 12.12.12.2, 00:01:17, Serial2/0
Terlihat pada routing table di R1, bahwa IP Loopback R2 dan R3 mendapatkan
flag D artinya Protocol Routing EIGRP sedang aktif, dan pada R1 mendapatkan
flag C artinya ip loopback berada pada router lokal, namun ketika di lihat
di routing R2, R3 akan terlihat juga menjalankan EIGRP, selanjutnya di tes
ping ke IP Loopback R1, R2 dan R3
R1#ping 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 5/5/7 ms
R1#ping 2.2.2.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 9/9/11 ms
R1#ping 3.3.3.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 10/14/29 ms
Alhamdulillah berhasil yah.
Salam Ngoprek