Pendahuluan
Cisco IOS (Internetwork Operating System) adalah sistem operasi yang digunakan pada perangkat jaringan Cisco seperti router dan switch. Di lab pertama ini kita akan fokus pada perintah-perintah show — perintah yang paling sering dipakai untuk membaca status dan informasi perangkat tanpa mengubah konfigurasi apapun.
Lab ini dipraktikkan menggunakan Cisco Packet Tracer.
Persiapan
Sebelum menjalankan perintah di bawah, pastikan kamu sudah berada di Privileged EXEC mode dengan prompt Router#. Kalau masih di Router>, ketik:
Router> enable
Router#
Perintah Dasar Navigasi
1. show version
Menampilkan informasi sistem: versi IOS, model hardware, RAM, dan uptime perangkat.
Router# show version
Contoh output:
Cisco IOS Software, Version 15.1(4)M4
System image file is "flash:c1900-universalk9-mz.SPA.151-4.M4.bin"
cisco CISCO1941/K9 (revision 1.0) with 491520K/32768K bytes of memory.
Processor board ID FTX152400KS
2 FastEthernet interfaces
255K bytes of non-volatile configuration memory.
249856K bytes of ATA System CompactFlash 0 (Read/Write)
Router uptime is 2 hours, 14 minutes
Configuration register is 0x2102
Penjelasan output penting:
| Baris | Artinya |
|---|---|
Version 15.1(4)M4 |
Versi IOS yang sedang berjalan |
uptime is 2 hours, 14 minutes |
Sudah berapa lama router menyala sejak boot terakhir |
flash:c1900-...bin |
File IOS yang di-load dari flash |
491520K bytes of memory |
Total RAM router |
Configuration register is 0x2102 |
Mode boot normal (0x2142 = password recovery mode) |
2. show running-config
Menampilkan konfigurasi yang sedang aktif di memory (RAM). Ini adalah konfigurasi "live" yang sedang dijalankan router saat ini.
Router# show running-config
Bisa disingkat: Router# show run
Contoh output:
Building configuration...
Current configuration : 872 bytes
!
version 15.1
!
hostname R1
!
interface FastEthernet0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
!
interface FastEthernet0/1
ip address 10.0.0.1 255.255.255.252
no shutdown
!
end
Penjelasan:
| Bagian | Artinya |
|---|---|
hostname R1 |
Nama router |
interface FastEthernet0/0 |
Blok konfigurasi per interface |
ip address 192.168.1.1 255.255.255.0 |
IP yang terpasang di interface tersebut |
no shutdown |
Interface dalam kondisi aktif |
⚠️show runhanya ada di RAM. Kalau router di-restart tanpawrite memory, konfigurasi ini hilang.
3. show ip interface brief
Perintah paling sering dipakai untuk cek status semua interface secara cepat — satu baris per interface.
Router# show ip interface brief
Bisa disingkat: Router# show ip int br
Contoh output:
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 192.168.1.1 YES manual up up
FastEthernet0/1 10.0.0.1 YES manual up up
Vlan1 unassigned YES unset administratively down down
Penjelasan kolom:
| Kolom | Artinya |
|---|---|
IP-Address |
IP yang terpasang (unassigned = belum ada IP) |
Status |
Layer 1 — kondisi fisik (up / administratively down) |
Protocol |
Layer 2 — kondisi protokol (up / down) |
Kombinasi status yang perlu diingat:
| Status | Protocol | Artinya |
|---|---|---|
| up | up | ✅ Normal, interface aktif |
| up | down | ❌ Masalah Layer 2 |
| administratively down | down | ❌ Interface di-shutdown manual |
| down | down | ❌ Kabel tidak terpasang / masalah fisik |
4. show interfaces
Menampilkan detail lengkap per interface: statistik traffic, error, duplex, speed, dan MAC address.
Router# show interfaces
Untuk melihat interface spesifik:
Router# show interfaces FastEthernet0/0
Contoh output:
FastEthernet0/0 is up, line protocol is up
Hardware is Gt96k FE, address is 0010.1122.aabb (bia 0010.1122.aabb)
Internet address is 192.168.1.1/24
MTU 1500 bytes, BW 100000 Kbit/sec, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Full-duplex, 100Mb/s, 100BaseTX/FX
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 output errors, 0 collisions, 0 interface resets
Penjelasan bagian penting:
| Info | Artinya |
|---|---|
address is 0010.1122.aabb |
MAC address interface |
MTU 1500 bytes |
Maximum Transmission Unit |
Full-duplex, 100Mb/s |
Mode dan kecepatan interface |
input errors / CRC |
Indikator masalah kualitas kabel |
output errors / collisions |
Indikator kemacetan atau duplex mismatch |
💡 Kalauinput errorsatauCRCterus naik, cek kualitas kabel atau kemungkinan duplex mismatch.
5. show clock
Menampilkan waktu dan tanggal sistem pada router.
Router# show clock
Contoh output:
*12:45:32.781 UTC Thu Jul 17 2026
Penjelasan:
| Bagian | Artinya |
|---|---|
* |
Waktu belum disinkronisasi ke NTP (tidak akurat) |
12:45:32.781 |
Jam:Menit:Detik.Milidetik |
UTC |
Timezone (default UTC) |
Untuk set waktu manual:
Router# clock set 12:45:00 17 July 2026
6. show history
Menampilkan riwayat perintah yang sudah diketik di sesi CLI saat ini.
Router# show history
Contoh output:
show version
show ip interface brief
show interfaces FastEthernet0/0
show clock
show running-config
show history
Default menyimpan 10 perintah terakhir. Bisa diperbesar:Router# terminal history size 20
💡 Tekan ↑ (panah atas) untuk recall perintah sebelumnya tanpa mengetik ulang.
7. show flash
Menampilkan isi flash memory — tempat file IOS tersimpan.
Router# show flash
Contoh output:
System flash directory:
File Length Name/status
3 50938004 c1900-universalk9-mz.SPA.151-4.M4.bin
2 28282 sigdef-category.xml
1 227537 sigdef-default.xml
[51193823 bytes used, 197522433 available, 248716256 total]
249856K bytes of processor board System flash (Read/Write)
Penjelasan:
| Info | Artinya |
|---|---|
.bin file |
File IOS utama yang di-load saat boot |
bytes used / available |
Kapasitas flash yang terpakai dan tersisa |
Read/Write |
Flash bisa ditulis (untuk upgrade IOS) |
Ringkasan Perintah
| Perintah | Singkatan | Fungsi |
|---|---|---|
show version |
— | Info IOS, hardware, uptime |
show running-config |
show run |
Konfigurasi aktif di RAM |
show ip interface brief |
show ip int br |
Status semua interface (ringkas) |
show interfaces |
— | Detail traffic & error per interface |
show clock |
— | Waktu sistem |
show history |
— | Riwayat perintah CLI |
show flash |
— | Isi flash memory |
Penutup
Perintah show adalah senjata utama seorang network engineer dalam membaca kondisi perangkat tanpa risiko mengubah konfigurasi. Kuasai perintah-perintah ini dulu sebelum lanjut ke topik konfigurasi.
Lab berikutnya : Cisco IOS Command Mode