点对点帧中继网络的配置

      接上一篇《帧中继网络的配置
      如果路由器直接连接的不是相同的网络,那么需要配置子接口来实现互联。现在在RB上配置子接口,RA和RB之间的网络是192.168.10.0网段,RB和RC之间是172.16.10.0网段,拓扑图和前面的一样。
      在FR、RA和RC上的配置和前面的一样,但是在RB上有所不同,配置一下子接口形式。
      RB上的配置如下:
RB(config)#int s0/1
RB(config-if)#no sh
RB(config-if)#no ip add
RB(config-if)#en fr         
RB(config-if)#int s0/1.201 point-to-point
RB(config-subif)#ip add 192.168.10.2 255.255.255.0
RB(config-subif)#frame-relay interface-dlci 201
RB(config-fr-dlci)#end
RB(config)#int s0/1.301 point-to-point
RB(config-subif)#ip add 172.16.10.2 255.255.255.0
RB(config-subif)#frame-relay interface-dlci 301
RB(config-fr-dlci)#end
RB#
      现在在RB上就可以ping通RA和RC,如果想要RC和RA之间进行通信,那么需要在RA和RC上删除原来的配置,配置子接口模式,假如还有一个路由器RD存在,如果RA想和RD通信,那么需要再配置一个子接口。
在RB上pingRA和RC:
RB#ping 192.168.10.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.10.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/74/136 ms
RB#ping 172.16.10.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.10.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 32/96/160 ms