2024/5/23
所花时间:3小时
代码行:160行
博客量:1篇
了解到的知识点
一、实验目的:
1.通过对网络设备的连通和对拓扑的分析,加深对常见典型局域网拓扑的理解;
2.通过路由建立起网络之间的连接,了解网络路由的设计与配置;
3.进一步熟悉交换机、路由器的基本操作命令。
二、实验设备:
计算机、二层交换机、三层交换机、路由器
三、实验拓扑图:
场景描述:在一家专注于游戏系统开发的公司,该公司分为代码编写部门和渲染场景部门。代码开发部门负责研究代码和测试新的代码原型,而渲染场景部门则负责想出场景和渲染。公司需要在两个部门之间建立高效的数据交换和通信机制,同时也需要确保员工能够访问互联网和内部资源。
网络拓扑结构
① 代码编写部门:分为研究代码和代码测试两个办公区域。每个办公区域分别用两名程序员
② 渲染场景部门:分为想出场景和渲染两个办公区域。每个办公区域分别用两名程序员
③财务部,管理公司的日常开销,该部门有一个财务经理。
硬件部门与软件部门的工作人员可以项目通信,项目部与财务部的经理直接可以通信,其他人员直接可以相互通信。
四、实验过程:
第一步:划分vlan
①配置二层交换机S1
S1>enable
S1#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
S1(config)#vlan 11
S1(config-vlan)#interface fastethernet 0/1
S1(config-if)#switchport access vlan 11
S1(config-if)#interface fastethernet 0/2
S1(config-if)#switchport access vlan 11
S1(config-if)#interface fastethernet 0/3
S1(config-if)#switchport access vlan 11
S1(config-if)#exit
②配置二层交换机S2
S2>enable
S2#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
S2(config)#vlan 13
S2(config-vlan)#interface fastethernet 0/1
S2(config-if)#switchport access vlan 13
S2(config-if)#interface fastethernet 0/2
S2(config-if)#switchport access vlan 13
S2(config-if)#interface fastethernet 0/3
S2(config-if)#switchport access vlan 13
S2(config-if)#end
③配置二层交换机S3
Switch>enable
Switch#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname S3
S3(config)#vlan 15
S3(config-vlan)#exit
S3(config)#interface vlan 15
S3(config-if)#
%LINK-5-CHANGED: Interface Vlan15, changed state to up
S3(config-if)#interface fastethernet 0/1
S3(config-if)#switchport access vlan 15
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan15, changed state to upS3(config-if)#
S3(config-if)#exit
S3(config)#interface fastethernet 0/2
S3(config-if)#switchport access vlan 15
S3(config-if)# interface fastethernet 0/3
S3(config-if)#switchport access vlan 15
S3(config-if)#end
④配置二层交换机S4
Switch>enable
Switch#config
Configuring fr,om terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname S4
S4(config)#vlan 20
S4(config-vlan)#exit
S4(config)#interface vlan 20
S4(config-if)#
%LINK-5-CHANGED: Interface Vlan20, changed state to up
S4(config-if)#interface fastethernet 0/1
S4(config-if)#switchport access vlan 20
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan20, changed state to upS4(config-if)#
S4(config-if)#exit
S4(config)#interface fastethernet 0/2
S4(config-if)#switchport access vlan 20
S4(config-if)# interface fastethernet 0/3
S4(config-if)#switchport access vlan 20
S4(config-if)#end