Minggu, 15 Desember 2013

Sebagai pemula seperti saya ini patut dan wajib mengetahui hirarki router mode pada Command Line Interface (CLI) Cisco. Sebelumnya apa itu CLI Cisco?

CLI Cisco adalah tipe antarmuka dimana pengguna berinteraksi dengan sistem operasi IOS melalui text-terminal. Pengguna menjalankan perintah dan program di sistem operasi IOS tersebut dengan cara mengetikkan perintah-perintah tertentu. Contohnya jika di sistem operasi Windows adalah Command Prompt (CMD).

Oke baiklah, berikut ini gambar hirarki router mode pada CLI Cisco :


User Exec Mode
Mode ini adalah tingkatan pertama dengan ditandai Router> prompt. Mode ini dipakai hanya untuk fungsi-fungsi yang terbatas. Misalnya, untuk melihat status router atau statistik router. Perintah yang dapat dijalankan pada mode ini adalah :

Router>?
Exec commands:
  <1-99>      Session number to resume
  connect     Open a terminal connection
  disable     Turn off privileged commands
  disconnect  Disconnect an existing network connection
  enable      Turn on privileged commands
  exit        Exit from the EXEC
  logout      Exit from the EXEC
  ping        Send echo messages
  resume      Resume an active network connection
  show        Show running system information
  ssh         Open a secure shell client connection
  telnet      Open a telnet connection
  terminal    Set terminal line parameters
  traceroute  Trace route to destination

Untuk berpindah dari User Exec Mode ke Priveleged Exec Mode ketikkan perintah :
Router> enable
atau
Router> en

Priveleged Exec Mode
Pada mode ini kita dapat memverifikasi hasil konfigurasi router, dll ditandai dengan Router# prompt. Namun, jika ingin mengkonfigurasi router, harus berpindah ke Global Configuration Mode. Perintah yang dapat dijalankan pada mode ini adalah :

Router#?
Exec commands:
  <1-99>      Session number to resume
  auto        Exec level Automation
  clear       Reset functions
  clock       Manage the system clock
  configure   Enter configuration mode
  connect     Open a terminal connection
  copy        Copy from one file to another
  debug       Debugging functions (see also 'undebug')
  delete      Delete a file
  dir         List files on a filesystem
  disable     Turn off privileged commands
  disconnect  Disconnect an existing network connection
  enable      Turn on privileged commands
  erase       Erase a filesystem
  exit        Exit from the EXEC
  logout      Exit from the EXEC
  mkdir       Create new directory
  more        Display the contents of a file
  no          Disable debugging informations
  ping        Send echo messages
  reload      Halt and perform a cold restart
  resume      Resume an active network connection
  rmdir       Remove existing directory
  send        Send a message to other tty lines
  setup       Run the SETUP command facility
  show        Show running system information
  ssh         Open a secure shell client connection
  telnet      Open a telnet connection
  terminal    Set terminal line parameters
  traceroute  Trace route to destination
  undebug     Disable debugging functions (see also 'debug')
  vlan        Configure VLAN parameters
  write       Write running configuration to memory, network, or terminal

Untuk berpindah dari Priveleged Exec Mode ke Global Configuration Mode ketikkan perintah :
Router# configure terminal
atau
Router# conf t

Global Configuration Mode
Pada mode ini kita dapat melakukan konfigurasi router. Perintah-perintah pada tingkatan ini pada umumnya digunakan untuk mengubah konfigurasi router secara global. Perintah yang dapat dijalankan pada mode ini adalah :

Router(config)#?
Configure commands:
  aaa                Authentication, Authorization and Accounting.
  access-list        Add an access list entry
  banner             Define a login banner
  boot               Modify system boot parameters
  cdp                Global CDP configuration subcommands
  class-map          Configure Class Map
  clock              Configure time-of-day clock
  config-register    Define the configuration register
  crypto             Encryption module
  do                 To run exec commands in config mode
  dot11              IEEE 802.11 config commands
  enable             Modify enable password parameters
  end                Exit from configure mode
  exit               Exit from configure mode
  hostname           Set system's network name
  interface          Select an interface to configure
  ip                 Global IP configuration subcommands
  ipv6               Global IPv6 configuration commands
  line               Configure a terminal line
  logging            Modify message logging facilities
  login              Enable secure login checking
  mac-address-table  Configure the MAC address table
  no                 Negate a command or set its defaults
  ntp                Configure NTP
  parser             Configure parser
  policy-map         Configure QoS Policy Map
  priority-list      Build a priority list
  privilege          Command privilege parameters
  queue-list         Build a custom queue list
  radius-server      Modify Radius query parameters
  router             Enable a routing process
  secure             Secure image and configuration archival commands
  security           Infra Security CLIs
  service            Modify use of network based services
  snmp-server        Modify SNMP engine parameters
  spanning-tree      Spanning Tree Subsystem
  tacacs-server      Modify TACACS query parameters
  username           Establish User Name Authentication
  vpdn               Virtual Private Dialup Network
  vpdn-group         VPDN group configuration
  zone               FW with zoning
  zone-pair          Zone pair command

Saya berikan satu contoh kasus untuk konfigurasi IP Address pada router, buatlah design seperti ini :


Pada kasus ini, saya ingin memberikan IP Address pada port FastEthernet0/0 router0. Jika ingin melakukan konfigurasi, maka harus masuk ke mode Global Configuration Mode. Berikut perintahnya :

User Exec Mode
Router>en

Privileged Exec Mode
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.

Global Configuration Mode
Router(config)#int fa0/0

Interface Mode
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#no shutdown

Sekian, semoga bermanfaat :)

0 komentar:

Posting Komentar