▣ 라우터 접속을 위한 telnet, ssh 설정입니다.
① telnet 접속시 다음과 같은 error 후 접속이 불가한 경우
Xshell:\> telnet 192.168.56.104 |
R1(config)#line vty 0 4 R1(config-line)#password ? 0 Specifies an UNENCRYPTED password will follow 7 Specifies a HIDDEN password will follow LINE The UNENCRYPTED (cleartext) line password R1(config-line)#password cisco |
② vty에 password 설정후 접속, enable시 error 발생?
Xshell:\> telnet 192.168.56.104 |
R1(config)#enable password cisco |
cf1) 권한 조정으로 enable 없이 로그인시 바로 Privilege mode로 접속하기
R1(config)#username cisco privilege 15 password cisco R1(config)#line vty 0 4 R1(config-line)#login local |
cf2) ssh 접속허용
R1(config)#ip http secure-server R1(config)#line vty 0 4 R1(config)#transport input telnet ssh |
ssh접속을 위해 다른 방법으로 rsa key를 생성할 수도 있습니다.
'Network > Network' 카테고리의 다른 글
[DDNS] 유동IP환경에서 Dynamic DNS를 이용한 Cisco Device 접근/관리하기 (0) | 2013.03.27 |
---|---|
[Cisco] SDM 설치하기 (0) | 2013.03.27 |
[Cisco] 시스코 툴인 CCP 설치 및 사용해 보기 (0) | 2013.03.27 |
[Cisco] NAT 기본1(Dynamic NAT) (0) | 2013.03.27 |
[Cisco] PAT 기본 (0) | 2013.03.27 |