01-CLI命令
本章节下载: 01-CLI命令 (145.56 KB)
command-alias enable命令用来使能命令关键字别名功能。
undo command-alias enable命令用来关闭命令关键字别名功能。
使能命令关键字别名功能后,command-alias mapping命令的配置才生效。如果暂时不使用这些别名,可以先关闭命令关键字别名功能。关闭命令关键字别名功能不会删除已经配置的别名。
# 使能命令关键字别名功能。
[Sysname] command-alias enable
command-alias mapping命令用来给指定的命令关键字配置别名。
undo command-alias mapping命令用来取消相应配置。
command-alias mapping cmdkey alias
undo command-alias mapping cmdkey
cmdkey:表示设备支持的命令行的第一个关键字或者undo命令的第二关键字,必须是完整的关键字名,取值范围为1~64个字符的字符串。
alias:表示关键字的别名,该别名不能与设备当前支持的命令行的第一个关键字或者undo命令的第二关键字相同,取值范围为1~20个字符的字符串。
通过本命令用户可以为命令行的第一个关键字指定一个别名,使其符合用户的使用习惯。比如将display关键字的别名配置为show后,就可以用show关键字来代替display关键字。如果要执行display clock命令,就可以用show clock来代替。
只有配置command-alias enable后,配置的别名才生效。
# 配置关键字display的别名为show。
[Sysname] command-alias mapping display show
display | { begin | exclude | include }命令用来使用正则表达式对显示信息进行过滤。
display command | { begin | exclude | include } regular-expression
command:命令关键字,取值可以通过输入?来获得。
begin:从包含指定正则表达式的行开始显示。
exclude:只显示不包含指定正则表达式的行。
include:只显示包含指定正则表达式的行。
regular-expression:表示正则表达式,为1~256个字符的字符串,区分大小写。
用display命令查看显示信息时,用户可以使用正则表达式来过滤显示信息,以便快速的找到自己关注的信息。关于正则表达式的详细描述请参考“基础配置指导”中的“CLI”。
# 查看包含VLAN的配置。
<Sysname> display current-configuration | include vlan
vlan 1
vlan 999
port access vlan 999
display | by-linenum命令用来查看带行号的显示信息。
command:命令关键字,取值可以通过输入?来获得。
使用本命令时,系统在显示信息的同时会自动在每行显示信息的前面添加行号,以便当显示信息较多时,能够迅速定位到某行信息。
行号占5个字符,通常行号后面接“:”。当by-linenum和begin参数一起使用时,行号后面还可能接“-”,其中“:”表示该行符合匹配规则,“-”表示该行不符合匹配规则。
# 显示设备CPU使用情况信息的同时显示行号。
<Sysname> display cpu-usage | by-linenum
1: Slot 1 CPU 0 CPU usage:
2: 14% in last 5 seconds
3: 14% in last 1 minute
4: 13% in last 5 minutes
# 查看当前配置,从包含“user-group”字符串的行开始到最后一行配置信息,并同时显示行号。(行号后为“:”表示该行包含“user-group”字符串,行号后为“-”表示该行不包含“user-group”字符串。)
<Sysname> display current-configuration | by-linenum begin user-group
114: user-group system
115- #
display >命令用来将显示信息独立保存到指定文件。
command:命令关键字,取值可以通过输入?来获得。
filename:文件名称,为1~63个字符的字符串。
display命令显示的内容通常是统计信息、功能是否使能以及功能的相关参数配置,这些信息在设备运行过程中会随着时间或者用户的配置而改变。使用本命令可以将当前显示信息保存到指定文件,可供用户随时比对和查看。
执行本命令时,如果filename不存在,系统会先创建该文件,再保存;如果filename已存在,则会覆盖原文件的内容。
# 将display cpu-usage的显示信息保存到指定文件cpu.txt。
<Sysname> display cpu-usage > cpu.txt
查看cpu.txt的内容,验证display >命令的执行效果。
Slot 1 CPU 0 CPU usage:
13% in last 5 seconds
13% in last 1 minute
13% in last 5 minutes
display >>命令用来将显示信息以追加方式保存到指定文件。
command:命令关键字,取值可以通过输入?来获得。
filename:文件名称,为1~63个字符的字符串。
display命令显示的内容通常是统计信息、功能是否使能以及功能的相关参数配置,这些信息在设备运行过程中会随着时间或者用户的配置而改变。使用本命令可以将当前显示信息保存到指定文件,可供用户随时比对和查看。
执行本命令时,如果filename不存在,系统会先创建该文件,再保存。如果filename已存在,则新保存的内容会追加到文件filename的尾部。
# 将display clock的显示信息以追加方式保存到指定文件cpu.txt。
<Sysname> display clock >> cpu.txt
查看cpu.txt的内容,验证display >>命令的执行效果。
Slot 1 CPU 0 CPU usage:
13% in last 5 seconds
13% in last 1 minute
13% in last 5 minutes
02:03:27 UTC Tue 01/01/2013
display command-alias命令用来显示命令关键字别名功能的相关配置。
# 显示命令关键字别名功能的相关配置。
<Sysname> display command-alias
Command alias is enabled
Index Alias Command key
1 ping1 ping
2 ssh1 ssh
表1-1 display command-alias命令显示信息描述表
命令关键字别名功能的使能状态:enabled表示已使能;disabled表示未使能 |
|
display history-command命令用来显示当前登录用户成功执行的历史命令。
用户登录设备后,系统会给每个用户自动分配一个历史命令缓冲区,用于存放用户本次登录、成功执行的命令行,以便用户查看和调用。历史命令缓存区有大小限制,缺省保存10条命令,用户也可以通过history-command max-size命令来修改大小。当数目达到上限时,系统会自动删除最早的记录,来保存最新成功执行的命令。
如果用户退出登录,系统会自动清除该历史命令缓存区的所有记录。
# 显示历史命令缓存区内保存的命令。
<Sysname> display history-command
system-view
vlan 2
quit
· history-command max-size(基础配置命令参考/登录设备)
display history-command all命令用来显示所有登录用户成功执行的历史命令。
系统中有一个共享历史命令缓冲区,用于存放所有登录用户成功执行的命令行,以便用户查看(不能调用)。历史命令缓存区的大小固定为1024条,不可配置。当数目达到上限时,系统会自动删除最早的记录,来保存最新成功执行的命令。
即便用户退出登录,系统也不会清除共享历史命令缓存区中该用户的历史命令记录。
# 显示所有登录用户成功执行的历史命令。
<Sysname> display history-command all
Date Time Terminal Ip User
03/16/2012 20:03:33 vty0 192.168.1.26 **
Cmd:dis his all
03/16/2012 20:03:29 vty0 192.168.1.26 **
Cmd:sys
表1-2 display history-command all命令显示信息描述表
display hotkey命令用来显示系统支持的快捷键及其含义。
# 显示系统支持的快捷键及其含义。
----------------- Hotkeys -----------------
-Defined command hotkeys-
CTRL_G display current-configuration
CTRL_L display ip routing-table
CTRL_O undo debugging all
-Undefined command hotkeys-
CTRL_T NULL
CTRL_U NULL
-System-reserved hotkeys-
CTRL_A Move the cursor to the beginning of the line.
CTRL_B Move the cursor one character to the left.
CTRL_C Stop the current command.
CTRL_D Erase the character at the cursor.
CTRL_E Move the cursor to the end of the line.
CTRL_F Move the cursor one character to the right.
CTRL_H Erase the character to the left of the cursor.
CTRL_K Abort the connection request.
CTRL_N Display the next command in the history buffer.
CTRL_P Display the previous command in the history buffer.
CTRL_R Redisplay the current line.
CTRL_V Paste text from the clipboard.
CTRL_W Delete the word to the left of the cursor.
CTRL_X Delete all characters from the beginning of the line to the cursor.
CTRL_Y Delete all characters from the cursor to the end of the line.
CTRL_Z Return to the User View.
CTRL_] Kill incoming connection or redirect connection.
ESC_B Move the cursor back one word.
ESC_D Delete all characters from the cursor to the end of the word.
ESC_F Move the cursor forward one word.
ESC_N Move the cursor down a line.
ESC_P Move the cursor up a line.
ESC_< Move the cursor to the beginning of the clipboard.
ESC_> Move the cursor to the end of the clipboard.
表1-3 display hotkey命令显示信息描述表
hotkey命令用来为快捷键指定对应的命令行。
undo hotkey命令用来恢复缺省情况。
hotkey { ctrl_g | ctrl_l | ctrl_o | ctrl_t | ctrl_u } command
undo hotkey { ctrl_g | ctrl_l | ctrl_o | ctrl_t | ctrl_u }
· <Ctrl+G>对应命令display current-configuration(显示当前配置)。
· <Ctrl+L>对应命令display ip routing-table(显示IPv4路由表信息)。
· <Ctrl+O>对应命令undo debugging all(关闭设备支持的所有功能项的调试开关)。
· <Ctrl+T>没有关联任何命令行。
· <Ctrl+U>没有关联任何命令行。
ctrl_g:表示为快捷键<Ctrl+G>指定一条命令。
ctrl_l:表示为快捷键<Ctrl+L>指定一条命令。
ctrl_o:表示为快捷键<Ctrl+O>指定一条命令。
ctrl_t:表示为快捷键<Ctrl+T>指定一条命令。
ctrl_u:表示为快捷键<Ctrl+U>指定一条命令。
command:快捷键关联的命令行。
通过快捷键用户可以简便、快捷的操作设备,使用display hotkey命令可以查看设备支持的所有快捷键及其含义。
# 指定命令display tcp status的快捷键为<Ctrl+T>。
[Sysname] hotkey ctrl_t display tcp status
quit命令用来使用户从当前视图退回到上一层视图。
如果当前是用户视图,执行quit后,会断开当前连接,退出系统。
# 从接口vlan 1的视图退回到系统视图,再退回到用户视图。
[Sysname] quit
<Sysname>
return命令用来从当前视图(非用户视图)直接退回到用户视图。
用户也可以使用组合键<Ctrl+Z>从当前视图(非用户视图)直接退回到用户视图,效果等同于执行return命令。
# 从接口vlan 1视图退回到用户视图。
<Sysname>
screen-length disable命令用来禁用当前用户的分屏显示功能。
undo screen-length disable命令用来启用当前用户的分屏显示功能。
用户登录后将遵循用户线下的screen-length设置。screen-length设置的缺省情况为:允许分屏显示,下一屏显示24行数据。
禁止分屏显示时,会一次显示所有信息,如果信息较多,则会连续刷屏,不方便立即查看。
需要注意的是,该配置只对当前用户本次登录有效,用户重新登录后将恢复到缺省情况。
# 禁用当前用户的分屏显示功能。
<Sysname> screen-length disable
· screen-length(基础配置命令参考/登录设备)
system-view命令用来从用户视图进入系统视图。
# 从用户视图进入系统视图。
System View: return to User View with Ctrl+Z.
[Sysname]
不同款型规格的资料略有差异, 详细信息请向具体销售和400咨询。H3C保留在没有任何通知或提示的情况下对资料内容进行修改的权利!