如何让 CLI 自动进入新行

网络工程 思科 路由器 命令行
2021-07-16 21:29:33

我想知道在 cisco 设备上配置 CLI 的命令,以使光标在显示消息后立即移动到新行。 例如:

Router#
Router#
*00:00:00: Interface Ethernet0 chaged state to up.Link blablalba* ***(cursor is here)**** 

然后光标停留在显示消息的同一行上..

我希望它立即自动移动到下一行。

例子:

Router#
Router#
00:00:00: Interface Ethernet0 chaged state to up. Line protocol blablalba
Router#****(cursor is here)**** 
2个回答

具体来说,你正在寻找这个:

line con 0
 logging synchronous
line vty 0 15
 logging synchronous

我认为您正在寻找“同步日志记录”。