NETWORK & SEVER FACTORY

개인 공부 기록

Network/패킷트레이서

[Packet Tracer] PPP PAP

1nfra 2020. 2. 27. 03:58
728x90

이번 시간에는 WAN 기술에 대해 알아보겠다. 

OSI 2계층에서 WAN과 관련된 서비스로 ATM, 프레임 릴레이, HDLC, PPP가 있다.

오늘은 PPP에 대해 알아보자 !

 

오늘의 토폴로지 구성이다.

토폴로지

토폴로지 구성

 

PC0 : 192.168.0.1/24

PC1 : 172.168.0.1/24

 

Router0

Gig0/0 : 192.168.0.254/24

Se0/3/0 : 10.0.0.1/24

 

Router1

Gig0/1 : 172.168.0.254/24

Se0/3/1 : 10.0.0.2/24

 

RIPv2 동적 라우팅을 적용해보자!

기억이 안 난다면 Packet Tracer 2_1 (동적 라우팅)을 보고 오자 

 

config

 

Router> en
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname R0
R0(config)#int gi0/0
R0(config-if)#ip add 192.168.0.254 255.255.255.0
R0(config-if)#no shutdown 
R0(config-if)#int se0/3/0
R0(config-if)#ip add 10.0.0.1 255.255.255.0
R0(config-if)#no shutdown 

R0(config-if)#exit

R0(config)#router rip

R0(config-router)#v 2

R0(config-router)#net

R0(config-router)#network 192.168.0.0

R0(config-router)#network 10.0.0.0

 

Router>en
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname R1
R1(config)#int se0/3/1
R1(config-if)#ip add 10.0.0.2 255.255.255.0
R1(config-if)#no sh
R1(config-if)#no shutdown 
R1(config-if)#ip add 172.168.0.254 255.255.255.0
R1(config-if)#no shutdown 

R1(config-if)#exit

R1(config)#router rip

R1(config-router)#v 2

R1(config-router)#net

R1(config-router)#network 172.168.0.0

R1(config-router)#network 10.0.0.0

R1(config-router)#

 

설정을 다했다면 PING을 보내보자!

PING이 잘 간다면 지금까지의 설정을 완벽하게 한 것이다.

 

그럼 이제 R0에 show interface serial0/3/0 명령어를 입력하고

시리얼 인터페이스의 Encapsulation 방식을 확인해보자!

 

위에 형광펜을 확인해보면 기본 방식은 HDLC라는 것을 알 수 있다.

 

이제 캡슐화 방식을 PPP로 변경하고 인증 방식으로 PAP를 적용해 볼 것이다.

ID는 호스트 이름으로 사용하고 암호는 cisco를 사용한다.

 

R0(config-if)#username R1 password cisco
R0(config)#int se0/3/0
R0(config-if)#encapsulation ppp
R0(config-if)#ppp authentication pap
R0(config-if)#ppp pap sent-username R0 password cisco

 

R1(config)#username R0 password cisco

R1(config)#int se0/3/1

R1(config-if)#encapsulation ppp

R1(config-if)#ppp authentication pap

R1(config-if)#ppp pap sent-username R1 password cisco

 

R0에 show interface serial0/3/0 입력해보자!

 

Encapsulation 방식이 PPP로 잘 바뀐 것을 확인할 수 있다.

 

그럼 둘 중 한 개의 암호가 다를 때는 어떻게 될까? 

이번에는 R1에 debug ppp authentication 명령어를 입력한 후 R0에서 암호를 틀려보겠다.

PPP PAP는 연결 시 한 번만 인증하기 때문에 암호를 바꾸고 난 뒤 비활성화 후 활성화해야 한다.

 

config

 

R0#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R0(config)#int se0/3/0
R0(config-if)#no ppp pap sent-username R0 password cisco
R0(config-if)#ppp pap sent-username R0 password cis
R0(config-if)#shutdown 
Router(config)#int se0/3/0
Router(config-if)#no shutdown 

 

debug를 보면 인증 실패일 때 나타나는 메시지이다.

 

디버그는 여러 가지 문제가 있을 때 많은 도움을 줘서 익숙해질 필요가 있다.

 

다음 시간에는 PPP CHAP에 대해 알아보겠다.

728x90

'Network > 패킷트레이서' 카테고리의 다른 글

[Packet Tracer] Frame Relay  (0) 2020.09.07
[Packet Tracer] PPP CHAP  (0) 2020.03.10
[Packet Tracer] STP  (0) 2020.02.22
[Packet Tracer] VTP  (0) 2020.02.06
[Packet Tracer] Port-Security  (0) 2020.02.03