附錄: 使用指令
在 IOS 的 CLI 之下, 指令可以以查詢的方式來輸入,
例如不清楚 clock 的參數要如何下, 可以輸入 clock ?,
如:
c6200# clock ?
read-calendar Read the hardware calendar into the clock
set Set the time and date
update-calendar Update the hardware calendar from the clock
c6200# clock
此時游標會停在 clock 後面格一個控格之後,
使用者可以根據輸出的輔助訊息來決定後面的參數要接什麼,
例如要設定時間, 便可以再輸入 clock set ? 來得到參數 set
後面該接什麼:
c6200# clock set ?
hh:mm:ss Current time
c6200# clock set
此時當然游標會停留在 clock set 後面控一個的地方,
方便繼續輸入參數. 如果你輸入的參數不夠的話, 則 CLI
會輸出:
c6200# clock set 13:32:00
% Incomplete command.
c6200#
你可以按下 Ctrl-P 來重複前一次所下的指令.
如果你在之後繼續輸入 ?:
c6200# clock set 13:32:00 ?
<1-31> Day of the month
MONTH Month of the year
c6200# clock set 13:32:00
如果使用者輸入的參數或是格式錯誤了, CLI 會以一個 ^
的符號指示使用者哪裡錯了:
c6200# clock set 13:32:00 19 May 98
^
% Invalid input detected at '^' marker.
所以使用者可以在 ^ 所指示的地方繼續輸入 ?
來得到輔助訊息:
c6200# clock set 13:32:00 19 May ?
<1993-2035> Year
c6200# clock set 13:32:00 19 May
最後使用者就可以正確無誤的輸入指令了.
c6200# clock set 13:32:00 19 May 1998
|