Konfigurasi pada R1
R1#conf
R1(config)#no ip routing
R1(config)#ip routing
R1(config)#interface fa0/0
R1(config-if)#desc koneksi ke R2
R1(config-if)#ip add 172.16.0.1 255.255.255.252
R1(config-if)#no shut
R1(config-if)#interface fa1/0
R1(config-if)#desc koneksi ke Host1
R1(config-if)#ip add 192.168.0.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#exit
R1#
R1#show ip route
172.16.0.0/30 is subnetted, 1 subnets
C 172.16.0.0 is directly connected, FastEthernet0/0
C 192.168.0.0/24 is directly connected, FastEthernet1/0
R1(config)#ip route 10.10.10.0 255.255.255.0 172.16.0.2
R1(config)#ip route 192.168.10.0 255.255.255.0 172.16.0.2
R1(config)#ip route 172.16.1.0 255.255.255.252 172.16.0.2
R1(config)#exit
R1#show ip route
S 192.168.10.0/24 [1/0] via 172.16.0.2
172.16.0.0/30 is subnetted, 2 subnets
C 172.16.0.0 is directly connected, FastEthernet0/0
S 172.16.1.0 [1/0] via 172.16.0.2
10.0.0.0/24 is subnetted, 1 subnets
S 10.10.10.0 [1/0] via 172.16.0.2
C 192.168.0.0/24 is directly connected, FastEthernet1/0
R1#ping 192.168.10.1
Sending 5, 100-byte ICMP Echos to 192.168.10.1, timeout is 2 seconds:..!!!
Success rate is 60 percent (3/5), round-trip min/avg/max = 16/18/20 ms
Konfigurasi Routing pada R2
R2#conf
R2(config)#ip route 192.168.0.0 255.255.255.0 172.16.0.1
R2(config)#ip route 192.168.10.0 255.255.255.0 172.16.1.2
R2(config)#exit
R2#
R2#show ip route
S 192.168.10.0/24 [1/0] via 172.16.1.2
172.16.0.0/30 is subnetted, 2 subnets
C 172.16.0.0 is directly connected, FastEthernet0/0
C 172.16.1.0 is directly connected, FastEthernet0/1
10.0.0.0/24 is subnetted, 1 subnets
C 10.10.10.0 is directly connected, FastEthernet1/0
S 192.168.0.0/24 [1/0] via 172.16.0.1
Konfigurasi Routing pada R3
R3#conf
R3(config)#ip route 10.10.10.0 255.255.255.0 172.16.1.1
R3(config)#ip route 192.168.0.0 255.255.255.0 172.16.1.1
R3(config)#ip route 172.16.0.1 255.255.255.252 172.16.1.1
%Inconsistent address and mask
R3(config)#ip route 172.16.0.0 255.255.255.252 172.16.1.1
R3(config)#exit
R3#show ip route
C 192.168.10.0/24 is directly connected, FastEthernet0/1
172.16.0.0/30 is subnetted, 2 subnets
S 172.16.0.0 [1/0] via 172.16.1.1
C 172.16.1.0 is directly connected, FastEthernet0/0
10.0.0.0/24 is subnetted, 1 subnets
S 10.10.10.0 [1/0] via 172.16.1.1
S 192.168.0.0/24 [1/0] via 172.16.1.1
R3#ping 192.168.0.1
Sending 5, 100-byte ICMP Echos to 192.168.0.1, timeout is 2 seconds:!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 20/23/32 ms







