CCNA 시스코 라우터 암호 설정
- 처음 시작하는 콘솔에 암호걸기
Router(config)#line console 0 => 콘솔모드 설정 입력
Router(config-line)#password 123456 => 암호 123456 으로 설정
Router(config-line)#login => login 할때 암호 입력하라는 의미
Router(config-line)#end => 프리빌리지 모드로 빠져나감
%SYS-5-CONFIG_I: Configured from console by console
Router#sh running-config => 설정내용 확인
Router#copy running-config startup-config => 설정상태 저장
Destination filename [startup-config]? => enter 눌러준다.
Building configuration...
[OK]
Router#reload => 콘솔모드 재시작
Proceed with reload? [confirm!] => enter 눌러준다.
Router#sh running-config
----------------------------
- 패스워드 해제
Router(config)#line console 0
Router(config-line)#no password => 콘솔모드 암호 해제
Router(config-line)#no login => 로그인 암호 안 물어보게 한다.
Router(config-line)#end
Router#sh running-config
Router#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
Router#reload
Proceed with reload? [confirm!] => enter눌러준다.
------------------------------------------------
- 프리빌리지 모드에 암호 걸기
Router(config)#enable secret 123456 => 프리빌리지 모드 암호 123456 설정하기
Router#copy running-config startup-config
Destination filename [startup-config]? => enter 눌러준다.
Building configuration...
[OK]
Router#reload
Proceed with reload? [confirm!] => enter 눌러준다.
-----------------------------------------------
- 프리빌리지 모드에 암호 해제
Router(config)#no enable secret => 프리빌리지 모드 암호 해제하기
Router(config)#end
설정이 끝나면 항상 show 명령어로 설정상태 확인 후 저장할 것
Router#show running-config
Router#copy running-config startup-config
'Network > 라우터설정' 카테고리의 다른 글
라우터의 BGP 설정 (0) | 2009.09.30 |
---|---|
시스코 라우터(2600) 앞면에 ACTIVITY LED가 깜빡거릴때 (0) | 2009.09.29 |
시스코 IPv6 명령어 (1) | 2009.08.14 |
[스크랩] 시스코 라우터 IPv6 기본 세팅 명령어 (0) | 2009.08.14 |
show ip route 명령어 입력 시 Default gateway is not set 이라 나오면서 라우팅 테이블이 출력 안될 경우 (0) | 2009.08.11 |