LAPORAN PRAKTIKUM
LAB I – STATIC ROUTING
1. Tujuan
Mempelajari cara mengkonfigurasi Static Routing pada router.
Memastikan setiap router dapat berkomunikasi dengan semua network meskipun tidak direct connected.
2. Topologi Jaringan
Router Interface IP Address Network Keterangan
R1 G0/0 192.168.1.1/24 192.168.1.0/24 LAN R1
G0/1 12.12.12.1/24 12.12.12.0/24 Link ke R2
R2 G0/0 12.12.12.2/24 12.12.12.0/24 Link ke R1
G0/1 23.23.23.2/24 23.23.23.0/24 Link ke R3
G0/2 192.168.2.1/24 192.168.2.0/24 LAN R2
R3 G0/0 23.23.23.3/24 23.23.23.0/24 Link ke R2
G0/1 192.168.3.1/24 192.168.3.0/24 LAN R3
3. Daftar Network
192.168.1.0/24 → LAN R1
12.12.12.0/24 → Link R1–R2
192.168.2.0/24 → LAN R2
23.23.23.0/24 → Link R2–R3
192.168.3.0/24 → LAN R3
4. Konfigurasi Static Routing
Router R1
Network yang tidak direct connected:
192.168.2.0/24
192.168.3.0/24
23.23.23.0/24
Konfigurasi:
R1(config)# ip route 192.168.2.0 255.255.255.0 12.12.12.2
R1(config)# ip route 23.23.23.0 255.255.255.0 12.12.12.2
R1(config)# ip route 192.168.3.0 255.255.255.0 12.12.12.2
Network yang tidak direct connected:
192.168.1.0/24
192.168.3.0/24
Konfigurasi:
R2(config)# ip route 192.168.1.0 255.255.255.0 12.12.12.1
R2(config)# ip route 192.168.3.0 255.255.255.0 23.23.23.3
Router R3
Network yang tidak direct connected:
192.168.1.0/24
192.168.2.0/24
12.12.12.0/24
Konfigurasi:
R3(config)# ip route 192.168.1.0 255.255.255.0 23.23.23.2
R3(config)# ip route 192.168.2.0 255.255.255.0 23.23.23.2
R3(config)# ip route 12.12.12.0 255.255.255.0 23.23.23.2
5. Pengujian Koneksi (Ping Test)
Dari Ke Hasil
PC1 (192.168.1.x) PC2 (192.168.2.x) Reply
PC1 (192.168.1.x) PC3 (192.168.3.x) Reply
PC2 (192.168.2.x) PC3 (192.168.3.x) Reply
Jika semua ping berhasil → Static Routing berhasil dikonfigurasi.
6. Kesimpulan
Dengan menggunakan Static Routing, setiap router dapat mengetahui jalur ke network lain yang tidak terhubung langsung (non-direct connected network).
Metode ini cocok untuk jaringan kecil karena sederhana, namun pada jaringan besar akan lebih efisien menggunakan Dynamic Routing.