中职学生技能大赛企业网络搭建及应用试题_第1页
中职学生技能大赛企业网络搭建及应用试题_第2页
中职学生技能大赛企业网络搭建及应用试题_第3页
中职学生技能大赛企业网络搭建及应用试题_第4页
中职学生技能大赛企业网络搭建及应用试题_第5页
已阅读5页,还剩4页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、企业网络搭建及应用试题背景介绍 下图为某企业网络的拓扑图,接入层采用二层交换机S2126,汇聚和核心层使用了两台三层交换机S3750A和S3750B,网络边缘采用一台路由器R1762用于连接到外部网络。为了实现链路的冗余备份,S2126与S3750A之间使用两条链路相连。S2126上连接一台PC,PC处于VLAN 100中。S3750B上连接一台FTP服务器和一台打印服务器,两台服务器处于VLAN 200中。S3750A使用具有三层特性的物理端口与R1762相连,在R1762的外部接口上连接一台外部的Web服务器。拓扑编址:PC:00/24S3750A VLAN 100

2、接口:/24S3750A VLAN 200接口:/24S3750A F0/20:/24FTP服务器:0/24打印服务器:0/24R1762 F1/0:/24R1762 F1/1:/24Web服务器:/24/24网络需求 为了实现网络资源的共享,需要PC机能够访问内部网络中的FTP服务器,以实现文件的上传和下载。并且PC机需要连接到打印服务器以进行远程的打印操作。PC机需要能够通过网络连接到外部的Web服务器,并能够进行Web网页的浏览。

3、实验题目 1、 在S2126与S3750B上划分VLAN,并把PC机与服务器加入到相应的VLAN中。(5分)2、 配置S2126与S3750A之间的两条交换机间链路,以及S3750A与S3750B之间的交换机间链路。(10分)3、 在S2126与S3750A之间的冗余链路中使用STP技术防止桥接环路的产生,并通过手工配置使S3750A成为STP的根。(10分)4、 为S3750A的VLAN接口和R1762的接口配置IP地址。(5分)5、 在S3750A上使用具有三层特性的物理端口实现与R1762的互联。(5分)6、 在S3750A上实现VLAN 100与VLAN 200间的通信。并在S3750

4、A与R1762上使用静态路由,实现全网的互通。(10分)7、 在一台PC上配置FTP服务器,使VLAN 100中的PC能够进行文件的上传和下载。(15分)8、 在一台PC上配置网络打印机共享,使VLAN 100中的PC能够进行远程打印。(15分)9、 在一台PC上配置Web服务器,使VLAN 100中的PC能够进行Web网页的浏览。(15分)10、 在R1762上进行访问控制,允许VLAN 100中的主机只能访问外部Web服务器的Web服务,不允许访问Web服务器上的其它服务。(10分)答案及评分标准 1. 在S2126与S3750B上划分VLAN,并把PC机与服务器加入到相应的VLAN中。(

5、5分)评分项1:在S2126上创建VLAN 100,并将F0/1接口加入到VLAN 100中(2.5分)配置过程:S2126#configure terminalS2126(config)#vlan 100S2126(config-vlan)#exitS2126(config)#interface fastEthernet 0/1S2126(config-if)#switchport access vlan 100Show结果:S2126#show running-configvlan 100!interface fastEthernet 0/1 switchport access vlan

6、100评分项2:在S3750B上创建VLAN 200,并将F0/1、F0/2接口加入到VLAN 200中(2.5分)配置过程:S3750B#configure terminalS3750B(config)#vlanS3750B(config)#vlan 200S3750B(config-vlan)#exitS3750B(config)#interface range fastEthernet 0/1-2 S3750B(config-if-range)#switchport access vlan 200Show结果:S3750B#show running-config vlan 200!int

7、erface FastEthernet 0/1 switchport access vlan 200!interface FastEthernet 0/2 switchport access vlan 2002. 配置S2126与S3750A之间的两条交换机间链路,以及S3750A与S3750B之间的交换机间链路。(10分)评分项1:将S2126的F0/23、F0/24接口设置为Trunk端口(3分)配置过程:S2126#configure terminalS2126(config)#interface range fastEthernet 0/23-24S2126(config-if-ran

8、ge)#switchport mode trunkShow结果:S2126#show running-config interface fastEthernet 0/23 switchport mode trunk!interface fastEthernet 0/24 switchport mode trunk评分项2:将S3750A的F0/23、F0/24接口设置为Trunk端口(3分)配置过程:S3750A#configure terminalS3750A (config)#interface range fastEthernet 0/23-24S3750A (config-if-ran

9、ge)#switchport mode trunkCommand rejected: An interface whose trunk encapsulation is Auto can not be configured to trunk mode.S3750A (config-if-range)#Switchport trunk encapsulation dot1qS3750A (config-if-range)#switchport mode trunkShow结果:S3750A #show running-config interface fastEthernet 0/23 swit

10、chport mode trunk!interface fastEthernet 0/24 switchport mode trunk评分项3:将S3750A的F0/10接口和S3750B的F0/10接口设置为Trunk端口(4分)配置过程:S3750A#configure S3750A (config)#interface fastEthernet 0/10S3750A (config-if)#Switchport trunk encapsulation dot1qS3750A (config-if)#switchport mode trunkS3750B#configure S3750B

11、(config)#interface fastEthernet 0/10S3750B (config-if)#Switchport trunk encapsulation dot1qS3750B (config-if)#switchport mode trunkShow结果:S3750A #show running-config interface fastEthernet 0/10 switchport mode trunkS3750B #show running-config interface fastEthernet 0/10 switchport mode trunk3. 在S212

12、6与S3750A之间的冗余链路中使用STP技术防止桥接环路的产生,并通过手工配置使S3750A成为STP的根。(10分)评分项1:在S2126启用STP(3分)配置过程:S2126(config)#spanning-tree mode rapid-pvstS2126(config)#spanning-treeShow结果:S2126#show spanning-tree StpVersion : STP SysStpStatus : Enabled评分项2:在S3750A启用STP(3分)配置过程:S3750A(config)# spanning-tree mode rapid-pvstS37

13、50A (config)#spanning-treeShow结果:S3750A #show spanning-tree StpVersion : STP SysStpStatus : Enabled评分项3:在S3750A上配置优先级(小于32768,并且是4096的倍数),使其成为根(4分)S3750A(config)# spanning-tree Vlan 100 priority 4096Show结果:S2126#show spanning-tree StpVersion : STP SysStpStatus : EnabledBaseNumPorts : 24MaxAge : 20He

14、lloTime : 2ForwardDelay : 15BridgeMaxAge : 20BridgeHelloTime : 2BridgeForwardDelay : 15MaxHops : 20TxHoldCount : 3PathCostMethod : LongBPDUGuard : DisabledBPDUFilter : DisabledBridgeAddr : 00d0.f88b.ca34Priority : 32768TimeSinceTopologyChange : 0d:0h:45m:54sTopologyChanges : 0DesignatedRoot : D0F821

15、A542RootCost : RootPort : Fa0/23S3750A#show spanning-tree StpVersion : STPSysStpStatus : ENABLEDMaxAge : 20HelloTime : 2ForwardDelay : 15BridgeMaxAge : 20BridgeHelloTime : 2BridgeForwardDelay : 15MaxHops: 20TxHoldCount : 3PathCostMethod : LongBPDUGuard : DisabledBPDUFilter : DisabledBridgeAddr : 00d

16、0.f821.a542Priority: 4096TimeSinceTopologyChange : 0d:0h:47m:4sTopologyChanges : 6DesignatedRoot : 1000.00d0.f821.a542RootCost : 0RootPort : 04. 为S3750A的VLAN接口和R1762的接口配置IP地址。(5分)评分项1:在S3750A的VLAN接口配置IP地址(3分)配置过程:S3750A#configureS3750A(config)#vlan 100S3750A(config-vlan)#exitS3750A(config)#vlan 200S

17、3750A(config-vlan)#exitS3750A(config)#interface vlan 100S3750A(config-if)#ip address S3750A(config)#interface vlan 200S3750A(config-if)#ip address Show结果:S3750A#show ip interface brief Interface IP-Address(Pri) OK? Status VLAN 100 /24 Y

18、ES UP VLAN 200 /24 YES UP评分项2:在R1762的接口配置IP地址(2分)配置过程:R1762(config)#interface f0/0 R1762(config-if)#ip address R1762(config)#interface f0/1 R1762(config-if)#ip address Show结果:R1762#show ip interface brief Interface IP-Address(Pri) OK? Status Fa

19、stEthernet 1/0 /24 YES UP FastEthernet 1/1 /24 YES UP5. 在S3750A上使用具有三层特性的物理端口实现与R1762的互联。(5分)评分项1:将S3750A的F0/20配置为三层端口(5分)配置过程:S3750A(config)#interface f0/20S3750A(config-if)#no switchportS3750A(config-if)#ip address Show结果:S3750A#show ip interface brief Interfa

20、ce IP-Address(Pri) OK? Status FastEthernet 0/20 /24 YES UP 6. 在S3750A上实现VLAN 100与VLAN 200间的通信。并在S3750A与R1762上使用静态路由,实现全网的互通。(10分)评分项1:PC能够ping通FTP服务器与打印服务器(1分)评分项2:在S3750A上配置静态路由(2分)配置过程:S3750A(config)#ip route Show结果:S3750A#show ip route Codes: C - connected,

21、S - static, R - RIP B - BGP O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate defaultGateway of last resort is no se

22、tC /24 is directly connected, FastEthernet 0/20C /32 is local host. S /24 1/0 via C /24 is directly connected, VLAN 100C /32 is local host. C /24 is directly connected, VLAN 200C /32 is local host.评分项3:在R1762上配置静态路由(4分)配

23、置过程:R1762(config)#ip route R1762(config)#ip route Show结果:R1762#show ip route Codes: C - connected, S - static, R - RIP B - BGP O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF

24、 external type 1, E2 - OSPF external type 2 i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate defaultGateway of last resort is no setC /24 is directly connected, FastEthernet 1/0C /32 is local host. S /24 1/0 via S /24 1/0 via 评分项4:PC能够ping通Web服务器(3分)7.

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论