-
在Python中实现画图工具对串行链路上封装概念的应用
资源介绍
(1) 串行链路上的封装概念
(2) HDLC 封装
(3) PPP 封装
2. 实验拓扑
图 7-1 实验 1--实验 3 拓扑图
3. 实验步骤
(1) 步骤 1:在 R1 和 R2 路由器上配置 IP 地址、保证直连链路的连通性
R1(config)#int s0/0/0
R1(config-if)#ip address 192.168.12.1 255.255.255.0
R1(config-if)#no shutdown
R2(config)#int s0/0/0
R2(config-if)#clock rate 128000
R2(config-if)#ip address 192.168.12.2 255.255.255.0
R2(config-if)#no shutdown
R1#show interfaces s0/0/0
Serial0/0/0 is up, line protocol is up
Hardware is GT96K Serial
Internet address is 192.168.12.1/24
MTU 1500 bytes, BW 128 Kbit, DLY 20000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation HDLC, loopback not set //该接口的默认封装为 HDLC 封装
(此处省略)
(2) 步骤 2:改变串行链路两端的接口封装为 PPP 封装
R1(config)#int s0/0/0
R1(config-if)#encapsulation ppp
R2(config)#int s0/0/0
R2(config-if)#encapsulation ppp
R1#show int s0/0/0
Serial0/0/0 is up, line protocol is up
Hardware is GT96K Serial
Internet address is 192.168.12.1/24
- 上一篇: 路由协议-CCNA中文版PPT
- 下一篇: 检查路由表-CCNA中文版PPT