LAB 1. EIGRP – KONFIGURASI DASAR
LAB 1. EIGRP – KONFIGURASI DASAR
Konfigurasi ip address pada setiap router seperti berikut :
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 |
R3
|
R3(config)#int fastEthernet 0/0 R3(config-if)#ip add 23.23.23.3 255.255.255.0 R3(config-if)#no shutdown R3(config)#int loopback 0 R3(config-if)#ip add 3.3.3.3 255.255.255.255 R3(config)#router eigrp 10 R3(config-router)#network 3.3.3.3 0.0.0.0 R3(config-router)#network 23.23.23.3 0.0.0.0 R3(config-router)#no auto-summary |
Kita coba cek ping di
Router 1, Pastikan ping ke router lainnya berhasil.
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:04: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:08: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:03:04,
GigabitEthernet1/0 12.0.0.0/24 is subnetted, 1 subnets C 12.12.12.0 is directly connected,
GigabitEthernet1/0 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 = 3/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 |

Comments
Post a Comment