Cisco IOS Cookbook 中文精简版第十八章日志 …

2008-02-23 04:55:11来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

18.1. 启用本地路由器日志

提问 实现路由器自身保存日志记录,而不仅仅是显示在终端上

回答

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#logging buffered informational

Router(config)#end

Router#

注释 缺省日志记录为debugging级别,例子中为informational忽略掉了debug消息。禁用使用下面命令

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#no logging buffered

Router(config)#end

Router#

18.2. 设定日志记录大小

提问 改变路由器保存日志记录的大小

回答

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#logging buffered 16000

Router(config)#end

Router#

注释 要注意的是改变了大小后,原有的日志记录会被清除。

18.3. 清除路由器日志记录

提问 清除路由器日志记录

回答

Router#clear logging

Clear logging buffer [confirm]<enter>

Router#

注释

18.4. 发送日志到屏幕显示

提问 在终端屏幕实时显示日志记录

回答

启用

Router#terminal monitor

Router#

禁用

Router#terminal no monitor

Router#

注释 缺省情况下日志记录只会在console端显示,要在VTY会话显示就必须使用上述命令

18.5. 使用远端日志服务器

提问 发送日志记录到远端日志服务器

回答

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Cisco IOS Cookbook 中文精简版第十七章 SNMP

下一篇:Cisco IOS Cookbook 中文精简版第十九章 访问列表