|
Cisco Switch Password Recovery | Cisco System 2005.06.27 18:40
### 스위치 암호 복구하기
1. 스위치 패널에 Mode 버튼을 누른 상태에서 전원을 입력한다.
2. Flash 초기화
switch:
switch: flash_init
Initializing Flash...
flashfs[0]: 143 files, 4 directories
flashfs[0]: 0 orphaned files, 0 orphaned directories
flashfs[0]: Total bytes: 3612672
flashfs[0]: Bytes used: 2729472
flashfs[0]: Bytes available: 883200
flashfs[0]: flashfs fsck took 86 seconds
....done Initializing Flash.
Boot Sector Filesystem (bs:) installed, fsid: 3
Parameter Block Filesystem (pb:) installed, fsid: 4
switch:
3. Helper Load한다.
switch: load_helper
switch:
4. flash 정보를 확인한다.
switch: dir flash:
Directory of flash:/
2 -rwx 1803357 <date> c3500xl-c3h2s-mz.120-5.WC7.bin
4 -rwx 1131 <date> config.text
5 -rwx 109 <date> info
6 -rwx 389 <date> env_vars
7 drwx 640 <date> html
18 -rwx 109 <date> info.ver
403968 bytes available (3208704 bytes used)
switch:
5. 스위치 설정파일인 config.text 파일에 이름을 변경해서 다음 부팅시 Load하지 못하도록
설정 한다..
switch: rename flash:config.text flash:config.old
switch:
6. 스위치를 다시 시작한다.
switch: boot
Loading "flash:c3500xl-c3h2s-mz.120-5.WC7.bin"...###############################
######################################################################################################################################################
File "flash:c3500xl-c3h2s-mz.120-5.WC7.bin" uncompressed and installed, entry po
int: 0x3000
executing...
7. 스위치가 Setup Mode로 부팅한다. (? config.text 없으므로 SetupMode가 뜬다.)
--- System Configuration Dialog ---
At any point you may enter a question mark '?' for help.
Use ctrl-c to abort configuration dialog at any prompt.
Default settings are in square brackets '[]'.
Continue with configuration dialog? [yes/no]: n
Switch>en
Switch#
8. 이름을 변경한 config 파일을 원래대로 다시 변경한다.
Switch#rename flash:config.old flash:config.text
Destination filename [config.text]
9. 변경후 config.text 파일을 running-config 로 로드한다...
Switch#copy flash:config.text system:running-config
Destination filename [running-config]?
10. 암호를 변경한 후 저장한다..
Switch#configure terminal
Switch(config)#no enable secret
Switch(config)#enable secret Cisco
Switch#(config)#^Z
the configuration file with the write memory command.
Switch#copy running-config startup-config or write memory
Building configuration...
[OK]
Switch#
스위치 패스워드 복구법
1. 전원 off (전원이 없으면 파워케이블을 뽑는다.) 그리고 스위치 앞에보면 mode라는 버튼이 있다. 이것을 누른 상태에서 전원을 on한다.
2. switch : flash_init
라는 명령어로 플래시를 초기화한다.
3. switch : rename flash:config.text flash:config.old
라는 명령어로 config.text 파일 이름을 바꾼다. 이것은 현제의 스위치 설정파일이다.
4. 재부팅한다.
5. #rename flash:config.old flash:config.text
로 config.text 파일을 원래대로 복구한다.
6. 패스워드를 바꾼후 저장...
config)#enable secret cisco
#copy running-config startup-config |