반응형
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 프로토콜을 동시에 전송할 수 있도록 변형 된 프로토콜이다.
장비 기본 설정 & 기본 설정 파일
- Reference
- Cisco ROUTER - 라우터 기본 설정, 확인
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
반응형
'네트워크 > All about Network' 카테고리의 다른 글
RFC (Request for Comments)란? - RFC의 역사, RFC 종류, RFC 표준화 절차 (222) | 2020.09.12 |
---|---|
WAN - PPP (Point to Point Protocol) & MLPPP, PPPoE (0) | 2020.03.04 |
Routing Protocol - BGP (Border Gateway Protocol) (720) | 2020.03.03 |
Routing Protocol - OSPF (Open Shortest Path First) (906) | 2020.03.03 |
Routing Protocol - EIGRP (Enhanced Interior Gateway Routing Protocol) (316) | 2020.02.28 |