본문으로 바로가기
반응형
HDLC (High level Data Link Control)

HDLC (High level Data Link Control)는 SDLC (Synchronous Data Link Control) 이후에 개발된 프로토콜로 Frame Relay, PPP, ATM 등보다 먼저 개발되었다. HDLC는 표준 HDLC와 시스코 HDLC로 나뉘는데, 표준은 하나의 네트워크 레이어 프로토콜만 전송할 수 있으나 시스코 HDLC는 복수개의 Layer 3 프로토콜을 동시에 전송할 수 있도록 변형 된 프로토콜이다.


장비 기본 설정 & 기본 설정 파일
Router>en
Router#conf t
Router(config)#hostname R1
R1(config)#enable secret cisco
R1(config)#no ip domain-lookup

R1(config)#line console 0
R1(config-li)#logging sync
R1(config-li)#exec-time 0
R1(config-li)#exit

ISP(config)#line vty 0 4
ISP(config-li)#password cisco
ISP(config-li)#exit


기본적인 HDLC 설정

기본적으로 인터페이스에 IP 설정을 하면 시스코 라우터 시리얼 인터페이스의 기본적인 링크 레이어 프로토콜HDLC이기 때문에 자동으로 HDLC가 동작하는 것을 확인할 수 있다. 또한 이더넷 인터페이스가 아니므로 ARP가 동작하지 않고 바로 ping이 가는 것을 확인할 수 있다. 혹 다른 링크 레이어 프로토콜로 설정이 되어있다면 encapsulation 명령어를 이용하여 HDLC로 변경할 수 있다.

Router#show interface s1/1
Serial1/1 is administratively down, line protocol is down 
  Hardware is M4T
  MTU 1500 bytes, BW 1544 Kbit/sec, DLY 20000 usec, 
     reliability 255/255, txload 1/255, rxload 1/255
  Encapsulation HDLC, crc 16, loopback not set
....

여기에 IGP인 EIGRP 라우팅 프로토콜을 와일드카드 마스크를 사용하지 않고 설정하면 해당 네트워크 주소로 시작하는(10.x.x.x) 모든 서브넷이 광고된다.

R1(config)#router eigrp 1
R1(config-router)#network 10.0.0.0

R2(config)#router eigrp 1
R2(config-router)#network 10.0.0.0

R3(config)#router eigrp 1
R3(config-router)#network 10.0.0.0

R4(config)#router eigrp 1
R4(config-router)#network 10.0.0.0

R1의 라우팅 테이블을 확인해보면 10.10.34.0/24 네트워크도 입력되어있는 것을 확인할 수 있다.

R1#sh ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
       a - application route
       + - replicated route, % - next hop override

Gateway of last resort is not set

      10.0.0.0/8 is variably subnetted, 4 subnets, 2 masks
C        10.10.12.0/24 is directly connected, Ethernet0/0
L        10.10.12.1/32 is directly connected, Ethernet0/0
D        10.10.23.0/24 [90/2195456] via 10.10.12.2, 00:04:54, Ethernet0/0
D        10.10.34.0/24 [90/2221056] via 10.10.12.2, 00:04:45, Ethernet0/0


  1. ROUTER, SWITCH는 각각 L3 IOU, L2 IOU 이미지를 사용하였다. [본문으로]
  2. 복사하여 터미널 프로그램에 붙여넣기 하면 편하게 사용할 수 있다. [본문으로]
반응형