[Trouble Shootings] 라우터 부팅시 TFTP 서버로 부터 config 설정을 로드하려 하며 부팅이 지연되는 경우 (%Error opening tftp://255.255.255.255/network-config)
Trouble Shootings 2013. 12. 22. 18:25몇몇 시스코 장비들 중에서 다음과 같은 에러 메세지들을 내뿜으며 부팅이 지연되는 경우가 발생한다.
%Error opening tftp://255.255.255.255/network-config
%Error opening tftp://255.255.255.255/cisconet.cfg
%Error opening tftp://255.255.255.255/R1-config
%Error opening tftp://255.255.255.255/R1.cfg
원인은 일부 시스코 장비들에 기본적으로 service config 명령이 적용되어 있기 때문이라고 한다.
이 명령은 시스코 장비 부팅시 TFTP로 부터 설정을 로드하도록 한다.
일반적으로 이 TFTP 서버를 잘 사용하지 않기 때문에 위와 같은 에러메세지가 출력된다.
해결 방법은 다음과 같다.
R1>enable
R1#config terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#no service config
R1(config)#^Z
R1#
*Mar 1 00:13:42.375: %SYS-5-CONFIG_I: Configured from console by console
R1#write
Building configuration...
[OK]
R1#
R1#reload
Proceed with reload? [confirm]
이제 TFTP 서버 연결을 시도하려는 메세지가 나타나지 않으며 다음 부팅시에도 보통 부팅시 처럼 정상적으로 부팅이 된다.