帧中继OSPF的NBMA模式
原创
©著作权归作者所有:来自51CTO博客作者cisco_wjc的原创作品,请联系作者获取转载授权,否则将追究法律责任
NBMA模式:需要手工指定邻居
BMA模式:不需要手工指定邻居
环境描述:
4台路由器,其中R2用来模拟帧中继云;R1的S0/0连接R2的S0/0,R3的S0/0连接R2的S0/1,R4的S0/0连接R2的S0/2;
配置命令:
1、将R2变为帧中继交换机
en
conf t
hostname fr-sw
frame-relay swithing
interface s0/0
no ip address
clock rate 128000
encapsulation frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 103 interface s0/1 301
frame-relay route 104 interface s0/2 401
no shutdown
interface s0/1
no ip address
clock rate 128000
encapsulation frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 301 interface s0/1 103
no shutdown
interface s0/0
no ip address
clock rate 128000
encapsulation frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 104 interface s0/0 401
no shutdown
end
sh frame-relay route
R1:
en
conf t
hostname R1
interface loopback 1
ip address 1.1.1.1 255.255.255.0
no sh
exit
interface s0/0
encapsulation frame-relay
no sh
ip address 192.168.1.1 255.255.255.0
no frame-relay inverse-arp
frame map ip 192.168.1.3 103 broadcast
frame map ip 192.168.1.4 104 broadcast
ip ospf network non-broadcast
ip ospf priority 10
exit
router ospf 1
neighbor 192.168.1.3
neighbor 192.168.1.4
network 1.1.1.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
exit
R3:
en
conf t
hostname R3
interface loopback 1
ip address 3.3.3.3 255.255.255.0
no sh
exit
interface s0/0
encapsulation frame-relay
no sh
ip address 192.168.1.3 255.255.255.0
no frame-relay inverse-arp
frame map ip 192.168.1.1 301 broadcast
ip ospf network non-broadcast
ip ospf priority 0
exit
router ospf 1
network 1.1.1.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
exit
R4:
en
conf t
hostname R4
interface loopback 1
ip address 4.4.4.4 255.255.255.0
no sh
exit
interface s0/0
encapsulation frame-relay
no sh
ip address 192.168.1.4 255.255.255.0
no frame-relay inverse-arp
frame map ip 192.168.1.1 401 broadcast
ip ospf network non-broadcast
ip ospf priority 0
exit
router ospf 1
network 1.1.1.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
exit
上一篇:路由器上配置DHCP
下一篇:ospf帧中继环境下点到点模式
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
ospf 入门
hhh
OSPF 数据库 IP -
OSPF单区域实验
华为HCIP-Datacom实验系列-OSPF单区域
OSPF Ethernet IP -
帧中继(NBMA)网络上跑OSPF协议帧中继 NBMA OSPF
-
NBMA网络帧中继交换机配置
转自http://liyongxian.blog.51cto.com/432519/138954
网络 交换机 NBMA 休闲 帧中继