通过对PPP协议的了解,我们也进入到了配置阶段。那么我们知道,PPP协议:(point to point protocol)点队点协议的前身是SLIP,PPP协议提供了一种在点对点链路上封状多种网络数据报文的标准方法。现在我们重点讲解一下PPP协议配置和PAP认证配置的内容。
PPP相对SLIP的协议的优点:
1、支持同步、异步串行链路;
2、支持多种网络协议;
3、支持各种连接参数的协商;
4、支持错误检测;
5、支持用户认证;
6、允许进行数据的压缩。
PPP协议的组成:
1、协议封装方式
2、LCP
3、NCP
PPP运行过程:
1、链接不可用阶段
2、链路建立阶段
3、认证阶段
4、网络层协议阶段
5、链路终止阶段
LCP协议协商:
MRU 最大数据单元/Magic Number魔术字/人证方式/链路压缩
NCP协议协商:
IP地址;TCP/IP头压缩
认证方式:
PAP/CHAP
PPP协议的配置:
封装PPP:
- Router(config)#inter serial 2/0
- Router(config-if)#encapsulation ppp
DCE端设置时钟频率:
- Router(config-if)#clock rate 64000
接口IP配置:
- Router(config-if)#ip address 192.168.10.1 255.255.255.0
- Router(config-if)#no shutdown
PAP认证配置:
PAP认证配置,主认证端:
- Router(config-if)#exit
- Router(config)#username derek password 0 123
- Router(config)#inter s2/0
- Router(config-if)#ppp authentication
- %SYS-5-CONFIG_I: Configured from console by console
PAP认证配置,被认证端:
- Router(config-if)#ppp pap sent-username derek password 0 123
PAP认证配置完成,测试:
- Router#ping 192.168.10.2
- Router#debug ppp packet
查看端口:
- Router#show interfaces s 2/0
- Serial2/0 is up, line protocol is up (connected)
- Hardware is HD64570
- Internet address is 192.168.10.2/24
- MTU 1500 bytes, BW 128 Kbit, DLY 20000 usec, rely 255/255, load 1/255
- Encapsulation PPP, loopback not set, keepalive set (10 sec)
- LCP Open
- Open: IPCP, CDPCP
- Last input never, output never, output hang never
- Last clearing of "show interface" counters never
- Input queue: 0/75/0 (size/max/drops); Total output drops: 0
- Queueing strategy: weighted fair
- Output queue: 0/1000/64/0 (size/max total/threshold/drops)