Problem: Service Configuration Error Messages
sometimes displays similar Error Messages during Cisco IOS software startup of a Cisco device:
% 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)
A practical example:
% SYS – 4 – CONFIG_RESOLVE_FAILURE: System config parse the from (TFTP:// 255.255.255.255 cisconet. CFG) failed
These error messages are related to the default service configuration options built into Cisco IOS software, which attempts to access the service configuration file from the (TFTP) server.
View configuration:
Type the show Run command
———————–
Router#show run
Building configuration…
Current configuration : 7722 bytes
!
version 15.4
service config
service timestamps log datetime msec
service timestamps log datetime msec
service password-encryption
.
———————–
Solutions:
To turn this feature off, the router enters global command 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
Which error messages will not appear after the router’s next restart.
Reproduced in: https://www.cnblogs.com/MomentsLee/p/10294016.html