Topology
팩토리 리셋
비밀번호를 잊었을때 백업 방법
현재구성
R1#sh run
!
enable secret 5 $1$mERr$kUN91hkvOwhC8ySgJWF8q.
!
hostname R1
!
!
interface GigabitEthernet0/0
ip address 10.10.10.1 255.255.255.0
duplex auto
speed auto
!
config-register 변경
-- 원래는 실제장비에서는 ctrl +break를 통해 rommon프롬프트로 들어간다.
R1(config)#config-register 0x2120 //부팅시 rommon프롬프토로 시작한다.
R1(config)#end
R1#
%SYS-5-CONFIG_I: Configured from console by console
R1#copy run start //시작구성 저장
Destination filename [startup-config]? startconfig1
%Error copying nvram:startconfig1 (Invalid argument)
R1#reload
------------------ 암호를모르니 rommon프롬프트 화면으로들어간다.
System Bootstrap, Version 15.1(4)M4, RELEASE SOFTWARE (fc1)
Technical Support: <http://www.cisco.com/techsupport>
Copyright (c) 2010 by cisco Systems, Inc.
Total memory size = 512 MB - On-board = 512 MB, DIMM0 = 0 MB
CISCO2911/K9 platform with 524288 Kbytes of main memory
Main memory is configured to 72/-1(On-board/DIMM0) bit mode with ECC disabled
Readonly ROMMON initialized
rommon 1 > confreg 0x2142 // 부팅시 시작구성 무시 기존 hostname=R1같은거 무시
rommon 2 > reset
----------------------- 암호를 모르니 rommon을통해 다시 일반 접속화면
Router>en
Router#sh run
Building configuration... //sh run 해보니 비어져있는 상태 위에서 confreg 0x2142했기때문
Current configuration : 691 bytes
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
-------------------- 저장한 시작구성 보기
Router#sh start // 시작구성 보기
!
hostname R1
!
!
!
enable secret 5 $1$mERr$kUN91hkvOwhC8ySgJWF8q
!
---------------------------------------- 시작구성을 실행중인 구성에 복사
Router#copy start run
---------------------------------------- 암호입력없이 다시 원래상태로 돌아옴
R1#sh run
Building configuration...
Current configuration : 777 bytes
!
hostname R1
!
!
!
enable secret 5 $1$mERr$kUN91hkvOwhC8ySgJWF8q.
!
!
--------------------------------------- 이제 암호를 사용안함으로 바꾼다.
R1(config)#no enable secret
--------------------------------------- 정상 재부팅을 위한 레지스터 변경
R1(config)#no enable secret
R1(config)#config-register 0x2102
R1(config)#end
reload 시 암호없이들어갈수있 정상부팅화면으로 출력된다.
'Network' 카테고리의 다른 글
20. 정적 경로 (0) | 2023.07.13 |
---|---|
19. 라우터 로컬 경로 (0) | 2023.07.13 |
17. Duplex, Speed (0) | 2023.07.10 |
16. ARP (0) | 2023.07.07 |
15. DNS (0) | 2023.07.07 |