반응형
Cisco Router Console 모드 패스워드 설정하는 방법
Console 패스워드 설정
enable 모드 진입
Router> enable
Router#
전역 설정 모드 진입
Router# configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#
Console 라인 설정 모드 진입
Router(config)# line console 0
Router(config-line)#
패스워드 설정
Router(config-line)# password 123456
login 명령 적용
Router(config-line)# login
login 명령이 없으면 패스워드를 설정해도 인증을 요구하지 않습니다.
설정 종료
Router(config-line)# end
%SYS-5-CONFIG_I: Configured from console by console
Router#
설정 확인(running-config)
Router#show running-config
Building configuration...
Current configuration : 228 bytes
!
version 12.2
no service password-encryption
!
hostname Router
!
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
shutdown
!
ip classless
!
!
!
!
line con 0
password 123456
line vty 0 4
login
!
!
end
설정 저장
Router#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
재부팅 후 동작 확인
Router#reload
부팅 완료 후 console 접속 시 다음과 같은 화면이 나타납니다.
Press RETURN to get started!
User Access Verification
Password:
- console 접속 시 패스워드 입력을 요구하는 것을 확인할 수 있습니다.
Console 패스워드 해제 방법
console 접근에 대한 인증을 제거하려면 다음과 같이 설정합니다.
Router(config)# line console 0
Router(config-line)# no password
Router(config-line)# no login
728x90
반응형
'네트워크' 카테고리의 다른 글
| Cisco Switch에서 텔넷 접속 암호를 설정하고 관리하는 방법 (0) | 2013.09.06 |
|---|---|
| Cisco Router enable secret 설정 및 해제하는 방법 (0) | 2013.09.06 |
| Cisco Router 기초 설정부터 Static Routing 설정하는 방법 (0) | 2013.09.06 |
| Cisco Switch 관리용 IP 주소 설정하는 방법 (0) | 2013.09.04 |
| L3 스위치 기능 정리 – 라우팅 개념부터 멀티캐스트, VRRP까지 (0) | 2013.09.01 |