计算机网络课程设计--小型局域网的构建
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
计算机网络课程设计--小型局域网的构建
计算机网络
课程设计
姓名:
学号: 1040407208 年级专业:信息管理与信息系统
指导教师:
计算机网络课程设计
——小型局域网的构建
1040407208
企业有公司办公室、财务部、销售部、设计部、生产部5个部门。每个部门预算配置200台电脑,公司使用一个B类网络地址129.250.0.0,要求建立局域网,如下:
一.所需网络设备、PC机的设备清单:
PC各部门200台,合计1000台;
2960-24TT交换机45台;
3560-24PS交换机两台;
Copper Cross-Over线,若干;
Copper Straight-Though线,若干。
二.拓扑设计:
每个部门需要200台电脑,而一个三层交换机有24个端口,每个部门需要9个端口
(9X24=216),故设计部需要放在两个不同的交换机上。
三.部门PC机的IP地.址分配方案及VLAN设计方案:
要求划分5个子网,即划分5个VLAN。由于各个部门预算有200台电脑,所以用IP地址的后8个二进制位可以划分28–2台主机,对于这200台就够用了,故划分如下:
VLAN号 VLAN名网段IP VLAN IP 子网掩码
2 caiwu 129.250.2.0 129.250.2.1 255.255.255.
3 Xiaoshou 129.250.3.0 129.250.3.1 255.255.255.
4 Sheji 129.250.4.0 129.250.4.1 255.255.255.
5 Shichang 129.250.5.0 129.250.5.1 255.255.255.
6 bangongsh 129.250.6.0 129.250.6.1 255.255.255.
在switcho上配置vlan2,vlan3.vlan4
在switcho上配置vlan4,vlan5,vlan6
四.第三层VLAN设计方案:
用switch 0为例:
Switch>enable
Switch#configure terminal
Enter configuration commands, one per line.
End with CNTL/Z.
Switch(config)#vlan 2 //创建VLAN 2
Switch(config-vlan)#name caiwu //取名caiwu,以下类同
Switch(config-vlan)#
Switch(config-vlan)#exit
Switch(config)#vlan 3
Switch(config-vlan)#name xiaoshou
Switch(config-vlan)#exit
Switch(config)#vlan 4
Switch(config-vlan)#name sheji
Switch(config-vlan)#exit
Switch(config)#
Switch(config)#exit
Switch(config)#int vlan 2
%LINK-5-CHANGED: Interface Vlan2, changed state to up
Switch(config-if)#ip add 129.250.2.2 255.255.255.0 //配置VLAN2的IP地址,以下类同
Switch(config-if)#exit
Switch(config)#int vlan 3
%LINK-5-CHANGED: Interface Vlan3, changed state to up
Switch(config-if)#ip add 129.250.3.2 255.255.255.0
Switch(config-if)#exit
Switch(config)#int vlan 4
%LINK-5-CHANGED: Interface Vlan4, changed state to up
Switch(config-if)#ip add 129.250.4.2 255.255.255.0
Switch(config-if)#exit
Switch(config)#int fas0/24
Switch(config-if)#sw tr en do
Switch(config-if)#sw mo tr //将端口设置成TRUNK模式
Switch(config-if)#
Switch(config-if)#exit
Switch(config)#exit
Switch#configure terminal
Switch(config)#interface FastEthernet0/24
Switch(config-if)#exit
Switch(config)#int fas0/23
Switch(config-if)#sw tr en do
Switch(config-if)#sw mo tr
Switch(config-if)#ex
Switch(config)#int fas0/22
Switch(config-if)#sw tr en do
Switch(config-if)#sw mo tr
Switch(config-if)#
Switch(config-if)#exit
Switch(config)#interface FastEthernet0/24