您的当前位置:首页计算机网络课程设计实验报告

计算机网络课程设计实验报告

2021-05-11 来源:哗拓教育
计算机网络课程设计报告

专业:信息安全 班级:0440802 学号:08130227 姓名:谌超 指导老师:梁峰 实验目的:

完成如下拓扑图的网络规划与设计。在bonson画出拓扑图,给出各设备端口的连接表、各设备端口的ip地址和掩码、ISDN、Frame-Relay的联结号等,均用表格形式列出,配通全网。

实验过程:

设备端口的IP地址如下表: 设备 Router 1 Router 2 Router 3 Router 4 Router 5 端口1地址 Bri:200.10.1.1 Bri:200.10.1.2 端口2地址 端口3地址 端口4地址 端口5地址 F0/0:172.10.11.1 S1:192.200.10.1 S0.1:192.168.1.1 S0.2:192.168.2.1 E0:172.10.12.1 E0:172.10.13.1 E0:172.10.14.1 E0:172.10.15.1 S0:192.168.1.2 S0:192.168.2.2 S1:192.200.10.2 PC 1 PC 2 PC 3 PC 4 PC 5 PC 6 PC 7 PC 8 E0:172.10.11.2 E0:172.10.11.3 E0:172.10.11.4 E0:172.10.11.5 E0:172.10.12.2 E0:172.10.13.2 E0:172.10.14.2 E0:172.10.15.2

一、配置静态路由

在网络互联中,通过配置静态路由,用户可以人为地指定对某一网络访问时所要经过的路径,在网络结构比较简单,且一般到达某一网络所经过的路径唯一的情况下采用静态路由。在CISCO路由器上配置静态路由的命令格式:

任务 建立静态路由 命令 ip route prefix mask {address | interface} [distance] [tag tag] [permanent] Prefix :所要到达的目的网络 mask :子网掩码

address :下一个跳的IP地址,即相邻路由器的端口地址。 interface :本地网络接口 distance :管理距离(可选) tag tag :tag值(可选)

permanent :指定此路由即使该端口关掉也不被移掉。

二、HDLC 方式

HDLC是CISCO路由器使用的缺省协议,路由器在未指定封装协议时默认使用HDLC封装。 1. 有关命令 端口设置

任务 设置HDLC封装 设置DCE端线路速度 复位一个硬件接口 显示接口状态 具体操作过程:

命令 encapsulation hdlc clockrate speed clear interface serial unit show interfaces serial [unit] 1Router1: Router>en

Router#config t

Router(config)#hostname R1 R1(config)#int s1

R1(config-if)#ip addr 192.200.10.1 255.255.255.0 R1(config-if)#Clock rate 64000 R1(config-if)#No shutdown R1(config-if)#Int f0/0

R1(config-if)#ip addr 172.10.11.1 255.255.255.0 R1(config-if)#no shutdown R1(config-if)#exit

R1(config)#ip route 172.10.12.0 255.255.255.0 192.200.10.2 R1(config)#end R1#copy run start

Router4: Router>en

Router#config t

Router(config)#hostname R2 R4(config)#int s1

R4(config-if)#ip addr 192.200.10.2 255.255.255.0 R4(config-if)#No shutdown

R4(config-if)#Clock rate 64000 R4(config-if)#Int e0

R4(config-if)#ip addr 172.10.12.1 255.255.255.0 R4(config-if)#no shutdown R4(config-if)#exit

R4(config)#ip route 172.10.11.0 255.255.255.0 192.200.10.1 R4(config)#end R4#copy run start Pc1:

c>ipconfig /ip 172.10.11.2 255.255.255.0 c>ipconfig /dg 172.10.11.1 Pc2:

c>ipconfig /ip 172.10.11.3 255.255.255.0 c>ipconfig /dg 172.10.11.1 Pc3:

c>ipconfig /ip 172.10.11.4 255.255.255.0 c>ipconfig /dg 172.10.11.1

Pc4:

c>ipconfig /ip 172.10.11.5 255.255.255.0 c>ipconfig /dg 172.10.11.1 Pc7:

c>ipconfig /ip 172.10.14.2 255.255.255.0 c>ipconfig /dg 172.10.14.1 测试: Pc1:

Pc7:

三、综合数字业务网(ISDN)

综合数字业务网(ISDN)由数字电话和数据传输服务两部分组成,一般由电话局提供这种服务。ISDN的基本速率接口(BRI)服务提供2个B信道和1个D信道(2B+D)。BRI的B信道速率为64Kbps,用于传输用户数据。D信道的速率为16Kbps,主要传输控制信号。在北美和日本,ISDN的主速率接口(PRI)提供23个B信道和1个D信道,总速率可达1.544Mbps,其中D信道速率为64Kbps。而在欧洲、澳大利亚等国家,ISDN的PRI提供30个B信道和1个64Kbps D信道,总速率可达2.048Mbps。我国电话局所提供ISDN PRI为30B+D。

1.基本命令 任务 设置ISDN交换类型 接口设置 设置PPP封装 命令 isdn switch-type switch-type interface bri 0 encapsulation ppp 1设置协议地址与电话号码的映dialer map protocol next-hop-address [name hostname] [broadcast] 射 启动PPP多连接 [dial-string] ppp multilink 设置启动另一个B通道的阈值 dialer load-threshold load 显示ISDN有关信息 show isdn {active | history | memory | services | status [dsl | interface-type number] | timers} 具体操作:

R1(config)# isdn switch-type basic-ni

R1(config))# dialer-list 1 protocol ip permit R1(config)# username router2 password cisco R1(config)# interface bri0 R1(config-if)# encap ppp

R1(config-if)# no ip directed-broadcast

R1(config-if)# ip address 200.10.1.1 255.255.255.0 R1(config-if)# isdn spid1 32177820010100 R1(config-if)# dialer-group 1

R1(config-if)# dialer map ip 200.10.1.2 name router2 broadcast 7782001 R1(config-if)# ppp authentication chap R1(config-if)# no shut

R5(config)# isdn switch-type basic-ni

R5(config)# dialer-list 1 protocol ip permit R5config)# username router1 password cisco R5(config)# interface bri0/0 R5(config-if)# encap ppp

R5(config-if)# ip address 200.10.1.2 255.255.255.0 R5(config-if)# no ip directed-broadcast R5(config-if)# isdn spid1 32177820020100 R5(config-if)# dialer-group 1

R5(config-if)# dialer map ip 200.10.1.1 name router1 broadcast 7782002 R5(config-if)# ppp authentication chap R5(config-if)# no shut

PC8: c:# ipconfig /ip 172.10.15.2 255.255.255.0

c:# ipconfig /dg 172.10.15.1

测试: Pc8:

Pc1:

四、 帧中继协议

帧中继是一种高性能的WAN协议,它运行在OSI参考模型的物理层和数据链路层。它是一种数据包交换技术,是X.25的简化版本。它省略了X.25的一些强健功能,如提供窗口技术和数据重发技术,而是依靠高层协议提供纠错功能,这是因为帧中继工作在更好的WAN设备上,这些设备较之X.25的WAN设备具有更可靠的连接服务和更高的可靠性,它严格地对应于OSI参考模型的最低二层,而X.25还提供第三层的服务,所以,帧中继比X.25具有更高的性能和更有效的传输效率。

帧中继广域网的设备分为数据终端设备(DTE)和数据电路终端设备(DCE),Cisco路由器作为DTE设备。

帧中继技术提供面向连接的数据链路层的通信,在每对设备之间都存在一条定义好的通信链路,且该链路有一个链路识别码。这种服务通过帧中继虚电路实现,每个帧中继虚电路都以数据链路识别码(DLCI)标识自己。DLCI的值一般由帧中继服务提供商指定。帧中继即支持PVC也支持SVC。

帧中继本地管理接口(LMI)是对基本的帧中继标准的扩展。它是路由器和帧中继交换机之间信令标准,提供帧中继管理机制。它提供了许多管理复杂互联网络的特性,其中包括全局寻址、虚电路状态消息和多目发送等功能。

帧中继有关命令:

任务 命令 12设置Frame Relay封装 encapsulation frame-relay[ietf] 设置Frame Relay LMI类frame-relay lmi-type {ansi | cisco | q933a} 型 设置子接口 interface interface-type interface-number.subinterface-number [multipoint|point-to-point] 映射协议地址与DLCI 设置FR DLCI编号 frame-relay map protocol protocol-address dlci [broadcast] frame-relay interface-dlci dlci [broadcast] 3

具体操作过程:

R1#conf t

 R1(config)#int s0 R1(config-if)#no shut

 R1(config-if)#encapsulation frame-relay  R1(config-if)#frame-relay lmi-type ansi  R1(config-if)#int se 0.1 point-to-point

 R1(config-subif)#ip add 192.168.1.1 255.255.255.0  R1(config-subif)#frame-relay interface-dlci 102  R1(config-subif)#no shut

 R1(config-subif)#int se 0.2 point-to-point

 R1(config-subif)#ip add 192.168.2.1 255.255.255.0  R1(config-subif)#frame-relay interface-dlci 103  R1(config-subif)#no shut  R1(config-subif)#end

R1(config)#ip route 172.10.12.0 255.255.255.0 192.168.1.2

R1(config)# ip route 172.10.13.0 255.255.255.0 192.168.2.2  R1#copy run start

选择路由器 R2 并按下面过程配置帧中继:  R2#conf t

 R2(config)#int s0

 R2(config-if)#encapsulation frame-relay  R2(config-if)#frame-relay lmi-type ansi

 R2(config-if)#ip add 192.168.1.2 255.255.255.0  R2(config-if)#no shut  R2(config-if)#end

R2(config)# ip route 172.10.11.0 255.255.255.0 192.168.1.1 R2(config)#ip route 172.10.13.0 255.255.255.0 192.168.1.1  R2#copy run start

选择路由器 R3 并按下面过程配置帧中继:  R3#conf t

 R3(config)#int s0

 R3(config-if)#encapsulation frame-relay  R3(config-if)#frame-relay lmi-type ansi

 R3(config-if)#ip add 192.168.2.2 255.255.255.0

 R3(config-if)#no shut  R3(config-if)#end  R3#copy run start 测试: Pc5:

Pc6:

Pc1:

五、打通全网: 具体操作:

R2(config)# ip route 172.10.14.0 255.255.255.0 192.168.1.1

R2(config)# ip route 172.10.15.0 255.255.255.0 192.168.1.1

R3(config)# ip route 172.10.15.0 255.255.255.0 192.168.2.1 R3(config)# ip route 172.10.14.0 255.255.255.0 192.168.2.1

R4(config)# ip route 172.10.12.0 255.255.255.0 192.200.10.1 R4(config)# ip route 172.10.13.0 255.255.255.0 192.200.10.1 R4(config)# ip route 172.10.15.0 255.255.255.0 192.200.10.1

R5(config)# ip route 172.10.14.0 255.255.255.0 200.10.1.1 R5(config)# ip route 172.10.12.0 255.255.255.0 200.10.1.1 R5(config)# ip route 172.10.11.0 255.255.255.0 200.10.1.1 测试: Pc1

Pc5:

Pc6:

Pc7:

Pc8:

心得体会:

通过本次计算机网络课程设计,我学会了IP地址的分配规则、HDLC方式配置、ISDN方式配置和基本帧中继配置,令我受益匪浅,很多平时觉得很抽象的东西都得到实践了,对我来说有了很大的提升。计算机就是要实践,光是知道书本上的东西根本没什么用。感觉通过自己的努力而把全网打通,觉得心里特别高兴。

因篇幅问题不能全部显示,请点此查看更多更全内容