WAN

  • Lan과 Man을 포괄하는 크기의 네트워크를 지칭
  • ATM : 지연에 민감해 음성이나 영상정보, 실시간 데이터 전송
  • Frame-relay : 하나의 물리적인 회선에 여러 개의 논리 가상회선을 만들어 통신
  • PPP : 시스코 - 비시스코 연결 시 사용
  • SDLC -> HDLC : 시스코 전용

연결 방법

PPP(Point-to-Point Protocol)

PAP(Password Authentication Protocol - 평문)

  1. Router0 # show int s0/0/0 -> HDLC 프로토콜인 것을 확인(디폴트 값), 이제 타종 간의 통신을 위해 ppp 설정
  2. Router0(config) # username 상대장치name(ex.R1) pasword password(ex.cisco) -> R1과 연결한다고 네이밍
  3. Router0(config) # int s0/0/0
  4. Router0(config-if) # encapsulation ppp
  5. Router0(config-if) # ppp authentication pap -> 인증방식 pap
  6. Router0(config-if) # ppp pap sent-username 현장치name(ex.R0) password cisco -> login
  7. 모든 Router에도 적용
  8. Router0 # show int s0/0/0 -> ppp 프로토콜로 변경된 것을 확인
  9. Rotuer1 # debug ppp authentication -> 비밀번호를 다르게 입력해 Authentication fail 메시지 확인

CHAP(Challeng Handshackes Authentication Protocol - 암호문)

  1. PAP와 1~4 동일
  2. Router0(config-if) # ppp authentication chap
  3. 나머지 동일

Frame-relay

  1. Router0(config) # int 외부port(ex.s0/0/0)
  2. Router0(config) # encapsulation frame-relay
  3. Router0(config) # frame-relay map ip 상대 ip(ex.203.230.7.2) name(ex.102) broadcast -> 상대 ip는 frame-relay 할모든 Router를 의미
  4. 라우팅
  5. 모든 Router에 적용
  6. Cloud Config에서 DLCI 추가
  7. Cloud Frame Relay에서 포트와 서브링크 지정
  8. 이제 PC0->1, 0->2는 연결이 가능하지만, 1->2는 불가능(split horizon 때문)
  9. 이를 해결하기 위해 Router0(config) # int 외부port(ex.s0/0/0)
  10. Router0(config-if) # no ip split-horizon
  11. Router0(config-if) # shut
  12. Router0(config-if) # no shut
  13. Router0 # show frame-relay map
    Router0 # show frame-relay pvc -> 확인