常用組合鍵
以下是在操作 Cisco 環境時,常用的組合鍵:顯示歷史命令
- Ctrl + P (show last command entered) 或 上鍵頭: 顯示前一條命令。
- Ctrl + N (show previous commands entered) 或 左鍵頭: 顯示後一條命令。
字符
- Ctrl + b (Move back one character) 或 右鍵頭: 把光標前移一格 Ctrl + f(Move forward one character) 或 左鍵頭:把光標後移一格。
行
- Ctrl + a (Move your cursor to the beginning of the line): 把光標移動至行首。
- Ctrl + e (Move your cursor to the end of the line): 把光標移動至行尾。
單詞
- Esc + b (Move back one word): 把光標往前移動一個字。
- Esc + f (Move forward one word): 把光標往後移動一個字。
復原誤刪
- Ctrl + y: 將刪除緩衝區(Buffer)的最後一個條目貼回命令行。
清理目前畫面
- Ctrl + r 或 Ctrl + l
設定登入密碼
Console Port: 即 本地端 登入時所使用的密碼。 Router(config)#line console 0
Router(config-line)#login
Router(config-line)#password cisco //設定密碼為 cisco
Virtual Port: 即利用 網路 所登入的密碼例如 telnet。
Router(config)#line vty 0 4 //允許使用 0 ~ 4 等 5 個介面
Router(config-line)#login
Router(config-line)#password cisco //設定密碼為 cisco
AUX Port: 即利用 數據機 所登入的密碼。
Router(config)#line aux 0
Router(config-line)#login
Router(config-line)#password cisco //設定密碼為 cisco
Router>? //顯示此模式可用的指令
Router>terminal length 0 //表示禁止 more 功能
Router>terminal length 24 //表示每頁可顯示 24 行 (Enter 為看下一行訊息,Space 為看下一頁訊息)
Router>show history //顯示曾經輸入過的指令,預設顯示 10 條
Router>terminal history size 0~256 //顯示 0 ~ 256 條歷史命令
輸入 Debug 命令 + 參數
- Debug dialer: 介面上正在撥號的數量訊息。
- Debug ppp: PPP 協定的流量與交換訊息。
- Debug isdn q921: ISND 的 D Channel 目前的連接狀態等,2b+d是一個 channel 的概念,D Channel 主要是控制連結、斷線的狀態。
請注意!! 若不熟悉 debug 命令時,可在使用 debug 命令前先執行 no debug all 命令,所以當執行 debug 後消息大量吐出時可利用上箭頭按鍵快速回復 nodebug 命令,來防止路由器癱瘓。
查看 Log
- 本地端用戶: 因為路由器會不斷產生 Syslog,這些 Syslog 訊息會不斷的通過 Console Port 傳送到控制主機當中。因此當遠端用戶登入時必須先使用 Terminal Monitor 命令,然後才可使用 show logging 命令來即時顯示 Syslog 訊息。
- 遠端用戶至 RAM 中提取資料: 使用 Terminal Monitor 命令後,先執行 logging buffered 命令,可將 Syslog 紀錄存至 RAM 中,再使用 show logging 命令去顯示 Syslog 訊息。
- 遠端用戶至 syslog server 中提取資料: 必須先使用 Terminal Monitor 命令,再使用 logging hostname 命令便可以至 syslog server 中提取資料。