라우터 프로토콜 변경
1. 포트접속
2.원하는 프로토콜 선택
Router(config-if)#encapsulation [프로토콜]
[프로토콜]
PPP //인증 가능
HDLC //인증 x
frame-relay //인증 x
[PPP인증]
[CHAP인증]
Router3
1. Router(config)#host R1
2. R1(config)#username R2 password 1234 //상대측 이름
3. R1(config)#int s0/0/0
4. R1(config-if)#ppp authentication chap
Router4
1. Router(config)#host R2
2. R2(config)#username R1 password 1234 //상대측 이름
3. R2(config)#int s0/0/0
4. R2(config-if)#ppp authentication chap
[PAP인증]
Router3
1. R1(config)#username R2 password 1234
2. R1(config)#int s0/0/0
3. R1(config-if)#ppp authentication pap
4. R1(config-if)#ppp pap sent-username R1 password 1234
// 자신의 이름 과 패스워드
Router4
1. R2(config)#username R1 password 1234
2. R2(config)#int s0/0/0
3. R2(config-if)#ppp authentication pap
4. R2(config-if)#ppp pap sent-username R2 password 1234
// 자신의 이름 과 패스워드
'Network Security' 카테고리의 다른 글
라우팅 (0) | 2019.01.25 |
---|---|
frame-relay (0) | 2019.01.24 |
NAT (0) | 2019.01.23 |
DHCP (0) | 2019.01.23 |
서버를 이용한 인증 (0) | 2019.01.22 |