1、1计算机网络实训项目七静态路由协议 RIP一、构建如下的网络结构图完成 3 个异构网络之间的通信。要求如下描述:1、路由器 r3 为 DCE 端,底下两个路由器 r1 和 r2 为 DTE 端。即连线时用 Serial DCE 线先点 r3,再点 r1、r2。 (只有 DCE 端要设置同步时钟频率,DTE 端不需要设置)2、其中 x1,x2 为客户终端,server 为网络服务器。3、本题共设置了 5 个子网:192.168.1.0 pc 机 x1 连入的子网192.168.2.0 pc 机 x2 连入的子网192.168.3.0 服务器连入的子网10.1.1.0/24 路由器 r1 与 r3
2、 连接的网络10.1.2.0/24 路由器 r2 与 r3 连接的网络2二、路由器基本配置1、配置路由器的 ip 地址(1)在路由器 r1(DTE 端)中完成如下的配置:RouterenRouter#conf tRouter(config)#int f0/0 该接口与交换机相连Router(config-if)#ip address 192.168.1.1 255.255.255.0Router(config-if)#no shutRouter(config)#int s0/0 该接口是串口,与路由器 r3 连接Router(config-if)#ip address 10.1.1.1 255
3、.255.255.0Router(config-if)#no shut(2)同理,在路由器 r2(DTE 端)的配置:RouterenRouter#conf tRouter(config)#int f0/0 该接口与交换机相连Router(config-if)#ip address 192.168.2.1 255.255.255.0Router(config-if)#no shutRouter(config-if)#int s0/0 该接口是串口,与路由器 r3 连接Router(config-if)#ip address 10.1.2.1 255.255.255.0Router(config
4、-if)#no shut(3)在路由器 r3(DCE 端)的配置Routeren3Router#conf tRouter(config)#int f0/0 该接口与服务器相连Router(config-if)#ip address 192.168.3.1 255.255.255.0Router(config-if)#no shutRouter(config-if)#int s0/0 该接口是串口,与路由器 r1 连接Router(config-if)#ip address 10.1.1.2 255.255.255.0Router(config-if)#cl rate 64000 DCE 端要设
5、置时钟同步频率Router(config-if)#no shutRouter(config-if)#int s0/1 该接口是串口,与路由器 r2 连接Router(config-if)#ip address 10.1.2.2 255.255.255.0Router(config-if)#cl rate 64000 DCE 端要设置时钟同步频率Router(config-if)#no shut2在 3 台路由器上分别设置路由协议 RIP(x1 和 x2 在非同一个路由器连接的网段上,故它们间的通信一定要路由协议)(1)路由器 r1:Router(config)#route ripRouter(
6、config-router)#ver 2Router(config-router)#network 192.168.1.0Router(config-router)#network 10.1.1.0Router(config-router)#exit(2)路由器 r2:4Router(config)#route ripRouter(config-router)#ver 2Router(config-router)#network 192.168.2.0Router(config-router)# network 10.1.2.0Router(config-router)#exit(3)路由器
7、r3:Router(config)#route ripRouter(config-router)#ver 2Router(config-router)# network 10.1.1.0Router(config-router)# network 10.1.2.0Router(config-router)#network 192.168.3.0Router(config-router)#exit3、配置 2 个 pc 终端和服务器 server 的 ip 地址和网关,例如:x1:IP 192.168.1.11, 网关 192.168.1.1x2:IP 192.168.2.11,网关 192.1
8、68.2.1server:IP 192.168.3.11,网关 192.168.3.1,注:x1 在子网 192.168.1.0 内,x2 在子网 192.168.2.0 内,server 在子网 192.168.3.0 内。4、测试结果在 r3 路由器上查看路由表,得到如下结果。5Router#show ip routeGateway of last resort is not set10.0.0.0/24 is subnetted, 2 subnetsC 10.1.1.0 is directly connected, Serial0/0C 10.1.2.0 is directly connected, Serial0/1R 192.168.1.0/24 120/1 via 10.1.1.1, 00:00:16, Serial0/0R 192.168.2.0/24 120/1 via 10.1.2.1, 00:00:07, Serial0/1C 192.168.3.0/24 is directly connected, FastEthernet0/0测试 2 个主机 192.168.1.1,192.168.2.1 与服务器 192.168.3.1 之间的连通性。