这是一个很简单的帧中继配置,在PT5.1上完成。需要说明以下几点
1.
无法使用no frame-relay inverse-arp命令,故为动态
2.
无法使用frame-relay intf dte|dce 命令
3.
无法使用no ip direct-brocast命令
4.
使用rip ver2 发布网络成功,用eigrp发布成功(
已验证!!!
)
5.
需要对帧中继云进行接口连接手工设置
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
配置命令
R1:
Int s0/1/0
Ip add 192.168.1.1 255.255.255.0
Encap frame
Frame lmi ansi (
必须配置,虽支持自动检测,但是还是要手动配置!!
)
Frame inter 201
No sh
Int fa0/0
Ip add 192.168.10.1 255.255.255.0
No sh
Router eigrp 100
Net 192.168.1.0
Net 192.168.10.0
R2(略)
检测命令
Sh frame map
R1#sh frame map
Serial0/1/0 (up): ip 192.168.1.2 dlci 201, dynamic, broadcast, CISCO, status defined, active
R1#
R2#sh frame map
Serial0/1/0 (up): ip 192.168.1.1 dlci 102, dynamic, broadcast, CISCO, status defined, active
R2#
R1#sh ip rou
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" />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, E - EGP
i - IS-IS, 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
Gateway of last resort is not set
C 192.168.1.0/24 is directly connected, Serial0/1/0
C 192.168.10.0/24 is directly connected, FastEthernet0/0
D 192.168.20.0/24 [90/20514560] via 192.168.1.2, 00:01:43, Serial0/1/0
R1#
转载于:https://blog.51cto.com/edges/180934