3.8 实验6:PPP over frame-relay的配置
3.8.1 实验内容
l 在Frame Relay的PVC上建立端到端的PPP会话,注意:只能在PVC处于active状态时才能建立。能够在一条Frame-relay链路上的多个虚链路上存在多个PPP会话。(也就是说要PVC仅允许一个PPP会话)。
l 一个PPP连接建立在一个虚拟访问接口上。
l PPP over Frame Relay仅在IP上支持。
l 硬件压缩和一些队列不能应用于虚拟接口之上像weighted fair queueing, custom queueing, and priority queueing。
l 默认,一个virtual template interface的封装类型是PPP,所以encapsulation PPP不会显示在你的配置中。
3.8.2 实验拓扑
在图3-9 PPP over frame-relay的拓扑示意图中,R5和R6在frame-relay上封装PPP协议。
图3-9 PPP over frame-relay
<?XML:NAMESPACE PREFIX = V /><?XML:NAMESPACE PREFIX = O />
3.8.3 所需设备
l 路由器3台,一台模拟帧中继交换机。
l V.35线缆公头两条。
3.8.4 实验步骤
第1步 在接口上配置帧中继封装。
第2步 在子接口上配置Frame-relay 支持PPP。
第3步 配置虚拟接口,包括IP地址。
第4步 配置PPP认证类型(可选),虚拟接口封装默认PPP。见例3-20 所示接口封装。
例3-20 show interface virtual-template 1信息
R5# sho int virtual-TEmplate 1
Virtual-Template1 is down, line protocol is down
Hardware is Virtual Template interface
Internet address is 172.16.11.5/24
MTU 1500 bytes, BW 100000 Kbit, DLY 100000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation PPP, loopback not set <-默认封装PPP
DTR is pulsed for 5 seconds on reset
LCP Closed
Closed: OSICP, BRIDGECP, TAGCP, IPCP, CCP, CDPCP, LLC2, IPXCP, NBFCP
BACP, ATCP, IPV6CP
Last input never, output never, output hang never
Last clearing of "show interface" counters 00:24:25
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue :0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
0 packets input, 0 bytes, 0 no buffer
Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
0 packets output, 0 bytes, 0 underruns
0 output errors, 0 collisions, 0 interface resets
0 output buffer failures, 0 output buffers swapped out
0 carrier transitions
R5# sho run
R5#
3.8.5 完整配置
例3-21 R5的完整配置
hostname R5
!
interface Serial1/1
no ip address
encapsulation frame-relay
serial restart_delay 0
!
interface Serial1/1.1 point-to-point
frame-relay interface-dlci 516 ppp Virtual-Template1
!
interface Virtual-Template1
ip address 172.16.11.5 255.255.255.0
!
例3-21 R6的完整配置
hostname R6
!
interface Serial1/0
no ip address
encapsulation frame-relay
serial restart_delay 0
!
interface Serial1/0.1 point-to-point
frame-relay interface-dlci 615 ppp Virtual-Template1
!
interface Virtual-Template1
ip address 172.16.11.6 255.255.255.0
!
3.8.6 验证配置
使用show interface virtual-template 1显示接口状态。
使用show running-config 显示配置信息。
使用ping测试连通性。
转载于:https://blog.51cto.com/82880/70689