問題:服務配置錯誤消息(Service Configuration Error Messages)
有時,在通過Cisco IOS軟件啟動Cisco設備期間,會顯示與這些類似的錯誤消息:
-
%Error opening tftp://255.255.255.255/network-confg (Socket error)
-
%Error opening tftp://255.255.255.255/cisconet.cfg (Socket error)
-
%Error opening tftp://255.255.255.255/3620-confg (Socket error)
-
%Error opening tftp://255.255.255.255/3620.cfg (Socket error)
實際的示例:
%SYS-4-CONFIG_RESOLVE_FAILURE: System config parse from (tftp://255.255.255.255/cisconet.cfg) failed
這些錯誤消息與Cisco IOS軟件內置的默認服務配置選項有關,該軟件嘗試從 (TFTP)服務器訪問服務配置文件。
查看配置:
輸入show run命令
-----------------------
Router#show run
Building configuration...
Current configuration : 7722 bytes
!
version 15.4
service config
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
......
-----------------------
解決方法:
為了關閉這個feature, 路由器全局輸入命令 no service config
Router#config terminal Enter configuration commands, one per line. Router(config)#no service config Router(config)#exit Router#copy running-config startup-config
哪些錯誤信息將在路由器下次重啟之后不再出現。