Lab 1. EIGRP - Konfig Dasar
Lab 1. EIGRP – Konfig Dasar
Konfigurasikan dan kita pasang ip pada masing-masing interface sesuai topologi diatas dan
pastikan update EIGRPnya spesifik hanya pada interfacenya :
R1 |
R1(config)#int gigabitEthernet 1/0 R1(config-if)#ip add 12.12.12.1
255.255.255.0 R1(config-if)#no shutdown ! R1(config)#int loopback 0 R1(config-if)#ip add 1.1.1.1 255.255.255.255 R1(config-if)#no shutdown ! R1(config)#router eigrp 10 R1(config-router)#network 1.1.1.1 0.0.0.0 R1(config-router)#network 12.12.12.1 0.0.0.0 R1(config-router)#no auto-summary |
R2 |
R2(config)#interface gigabitEthernet 1/0 R2(config-if)#ip add 12.12.12.2 255.255.255.0 R2(config-if)#no shutdown ! R2(config)#int fastEthernet 0/0 R2(config-if)#ip add 23.23.23.2 255.255.255.0 R2(config-if)#no shutdown ! R2(config)#int loopback 0 R2(config-if)#ip add 2.2.2.2 255.255.255.255 ! R2(config)#router
eigrp 10 R2(config-router)#network 2.0.0.0 R2(config-router)#network 12.12.12.2 0.0.0.0 R2(config-router)#network 23.23.23.2 0.0.0.0 R2(config-router)#no auto-summary |
Setelah kita konfigurasikan ip dan routing eigrp pada router, mari kita cek routing tabel dan tes ping
R1 R1#sh ip route
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/130816] via 12.12.12.2, 00:07:04, GigabitEthernet1/0
3.0.0.0/32 is subnetted, 1 subnets D
3.3.3.3 [90/156416] via 12.12.12.2, 00:02:20, GigabitEthernet1/0
23.0.0.0/24 is subnetted, 1 subnets D
23.23.23.0 [90/28416] via 12.12.12.2, 00:07:04, GigabitEthernet1/0
12.0.0.0/24 is subnetted, 1 subnets C
12.12.12.0 is directly connected, GigabitEthernet1/0
kita ping dari R1 ke R2 dan R3
R1 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 = 1/3/4 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 = 4/13/28 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 = 28/32/40 ms
Komentar
Posting Komentar