Contents

Cisco - 網路設備指令操作入門

Cisco 設備在設定上有一定的方式,來設定網路組態或是密碼,如果要控制這些設備必須要掌握相關指令操作。

1. 操作模式種類

操作模式有分為不同總類,只有在管理員狀況下才能執行多數的操作,大略可以區分為四種 :

  1. 一般使用者模式
  2. 管理員模式
  3. 管理員全域設定模式
  4. 管理員設備設定模式

1.1.1 一般使用者模式

一開始登入時候預設就是一般使用者模式,在這個模式下幾乎什麼事情都無法做,算是第一道把關的,以 設備名稱 加上 > 符號來表示目前為一般使用者模式。

1
switch001>

1.1.2 管理者模式

在管理者模式下就可以查看 IP 、 網路介面等各種功能,在使用者模式下輸入 enable 後切換成管理員模式,並以設備名稱 加上 # 符號來表示目前為管理員模式。

1
2
switch001>enable 
switch001#
Tip
縮寫指令為 en

1.1.3 管理員全域設定模式

如果要設定切換成管理員密碼或是設定密碼顯示亂碼等功能, 在管理員模式下輸入 configure terminal ,即可進入全域管理模式。

1
2
3
4
switch001#enable 
switch001#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
switch001(config)#
Tip
縮寫指令為 conf t

1.1.3 管理員設備設定模式

設定指定端口可以使用該模式,例如要修改 console port 設備,在管理員全域設定模式下輸入 line console 0 ,即可設定 console 。

1
2
3
4
5
switch001#enable 
switch001#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
switch001(config)#line console 0
switch001(config-line)#

1.1.4 脫離目前模式

透過輸入 exit 即可脫離目前的模式到上一層,也可以輸入 ctrl + z 快速切換至管理者模式。


2. 指令求助

在一開始操作時或是相關指令少用會不知到該如何下手,可以透過輸入 ? 來提示有哪些指令可以操作。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
switch001#?
Exec commands:
  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
  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
  setup       Run the SETUP command facility
  show        Show running system information
 --More-- 
Note
當出現 More 可以透過空白鍵往下捲動,來查看更多訊息。

3. 將設定檔永久儲存

在設備上的操作都是暫時存放在記憶體內,一旦電源關閉重新啟動後又恢復原本設定,必須要透過指令 copy running-config startup-config 將已經配置好的設定寫入 Flash 記憶卡內。

1
2
3
4
switch001#copy running-config startup-config 
Destination filename [startup-config]? 
Building configuration...
[OK]

4. 小結

指令多操作幾次就能越來越熟悉,對於管理人員而言掌握基礎指令是很重要。



如果你還沒有註冊 Like Coin,你可以在文章最下方看到 Like 的按鈕,點下去後即可申請帳號,透過申請帳號後可以幫我的文章按下 Like,而 Like 最多可以點五次,而你不用付出任何一塊錢,就能給我寫這篇文章的最大的回饋!