计算机网络综合实训

合集下载
相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

计算机网络综合实训

作者:李传芹吴美萍

来源:《电脑知识与技术》2012年第20期

摘要:计算机网络技术专业在各高等院校都有设置,尤其是在高职类院校。计算机网络课程设置随着专业的发展在日益完善,但是课程综合应用实践方面有所忽视,或者说重视度不够高。该文,从理论指导实践的层面出发、任务驱动的方式,探讨、讲解和完成现实和课堂理论的真实接轨,以点盖面的完成一个大型综合网络部署实训,通过该文可以加深学生对课程知识的深入理解,锻炼了学生运用学过的知识独立完成项目的能力。

关键词:计算机网络;网络部署;任务驱动;课程;探讨

中图分类号:TP311文献标识码:A文章编号:1009-3044(2012)20-4830-05

Comprehensive Training Computer Network

LI Chuan-qin,WU Mei-ping

(Guangzhou Sontian Polytechnic College,Guangzhou 511300,China)

Abstract: Computer Network Technology has set up in various institutions of higher learning, especially in vocational colleges. With the computer network curriculum and professional development in the increasingly sophisticated, but practical aspects of integrated application programs have neglected, or that attention is not high enough. This paper, from the starting level of theory to guide practice, task-driven way, to explore, explain and complete the true reality and the integration of classroom theory to cover up the completion point of a large integrated network deployment training, through this paper can enhance the students in-depth understanding of course knowledge, train the students to use knowledge learned ability to complete the project independently.

Key words: computer network;network deployment;task-driven;course;investigate 按照下面的要求分别配置网吧,电信以及校园网三个模块的设备,使得全网互通。

实验环境:5台2610路由器,4台2950交换机,一个LINKSYS无线路由,一台无线网卡主机,无真实设备可使用packettracer专用模拟器。实验拓扑图如图1所示。

1网吧模块

任务一网吧采用10Mbps光纤线路接入到电信网络,内部使用私有地址192.168.1.0/24的网络,外部电信提供了一个固定IP地址202.96.48.9/30,请配置网吧路由接入接入电信网络。

网吧接入网代表了多数中小企业公司的接入网技术,通常只需要两个步骤,一是地址转换,二是默认路由。

1.1任务实施-地址转换配置

把内网192.168.1.0/24私有地址转换成F1/0光纤口公有地址202.96.48.9/30。

Router(config)#hostname WB

WB(config)#interface f0/0

WB(config-if)#ip address 192.168.1.1 255.255.255.0(f0/0为内网接口)

WB(config-if)#no shutdown

WB(config-if)#interface f1/0

WB(config-if)#ip address 202.96.48.9 255.255.255.252(f1/0为连接外网光纤接口)

WB(config-if)#no shutdown

WB(config-if)#exit

WB(config)#access-list 1 permit any

WB(config)#ip nat inside source list 1 interface f1/0 overload WB(config)#interface f0/0

WB(config-if)#ip nat inside(应用转换到内部转换接口)

WB(config-if)#interface f1/0

WB(config-if)#ip nat outside(应用转换到外部转换接口)

测试:可先为电路路由配置IP地址以方便测试

WB#debug ip nat

从主机上使用PING命令进行测试,同时观察路由器上的转换情况,关闭调试使用

WB#no debug all

1.2任务实施-默认路由配置

WB(config)#ip route 0.0.0.0 0.0.0.0 f1/0

任务二做如下访问控制,在路由器上开启远程登陆并限制外网以及内网的网管机192.168.1.100可以登陆,在交换机上也开启远程登陆,限制只有网管机可以登陆。

1.3任务实施-路由器访问控制

WB(config)#access-list 2 permit host 192.168.1.100(注意列表编号不要和前面的重复) WB(config)# access-list 2 deny 192.168.1.0 0.0.0.255

WB(config)# access-list 2 permit any

WB(config)# line vty 0 4

WB(config-line)#password cisco

WB(config-line)#login

WB(config-line)#access-class 2 in

WB(config-line)#exit

WB(config)#enable password 123

测试:

分别从外网以及内网主机进行远程登陆操作。

1.4任务实施-交换机的远程登陆限制配置

Switch(config)#interface vlan 1

Switch(config-if)#ip address 192.168.1.200 255.255.255.0

Switch(config-if)#no shutdown

Switch(config)#access-list 1 permit host 192.168.1.100

Switch(config)#line vty 0 15

Switch(config-line)#password 123

相关文档
最新文档