医院网络建设和综合布线设计

目 录
摘 要 I
Abstract II
1.医院网络建设需求分析 1
1.1对用户需求进行分析 1
1.2主要设计的目标 2
2.医院网络建设整体设计 4
2.1医院网络整个架构 4
2.2技术的选择 5
2.2.1 接入层的技术选择方案 5
2.2.2 汇聚层的技术选择方案 5
2.2.3 核心层的技术选择方案 5
2.2.4网络安全技术选择方案 6
2.3设备的选型 7
2.3.1 SW2960介绍 7
2.3.2 SW3560介绍 8
2.3.3 Router大概介绍 9
3.医院网络建设综合布线 10
3.1 信息点数量 10
3.2 设备间布局 10
3.3 耗材数量 11
4.医院网络建设的配置和实施 13
4.1 划分VLAN 13
4.2 配置trunk 15
4.3 配置RSTP 15
4.4 配置SVI 16
4.5 配置GLBP 16
4.6 配置OSPF协议 20
4.7配置OSPF下的发默认路由 22
4.8配置NAT 22
4.9配置出口备份默认路由技术 23
5医院的网络测试与验收 24
5.1测试与验收网络效果参数 24
5.2测试阶段 28
5.2.1测试门诊楼访问医技大楼 28
5.2.2测试医院门诊楼访问急诊楼 29
5.2.3测试医院医技大楼访问化验大楼 29
5.2.4测试医院行政楼访问医技楼 30
5.2.5测试医院医技楼访问网络服务器 30
5.2.6测试医院门诊楼访问服务器 31
5.2.7测试医院住院楼访问服务器 31
5.2.8测试医院办公楼访问服务器 32
5.2.9测试医技楼访问公网 32
5.2.10测试急诊楼访问公网 33
5.2.11测试住院楼访问公网 33
5.2.12测试行政楼访问公网 34
5.3验收阶段 34
6.结论 35
参考文献 36
致 谢 37
2.医院网络建设整体设计
2.1医院网络整个架构
对医院网络拓扑设计是本次建设网络的最关键的任务
现代医院网络的组网一般情况下可以分为三层,依次可以称为:核心层、汇聚层和接入层。
通常情况下,可以根据用户需求以及建设资金的不同,把其中的几层进行合并后再进行处理。本次医院网络拓扑结构设计采用三层架构方式进行设计。
1.医院网络架构核心层:
核心层作用:高速的数据通信交换,提供稳定可靠的冗余性,并且可以不用配置很复杂的策略
2.医院网络架构汇聚层:
汇聚层作用:汇聚层进行流量控制和进行复杂的控制策略,以及要求必要的冗余设计等等
3.医院网络架构接入层:
接入层作用:方便用户接入使用,与此同时,接入层还为用户提供了丰富的接入控制以及大量的接口。
下图是医院的网络拓扑结构图:
在这里插入图片描述

图2.1医院的网络拓扑结构图


!
version 15.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname ISP
!
boot-start-marker
boot-end-marker
!
aqm-register-fnf
!
!
no aaa new-model
clock timezone EET 2 0
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
!
!
!
!
!
!


!
!
!
!
ip cef
no ipv6 cef
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
redundancy
!
!
! 
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
 no shutdown
 ip address 8.8.8.8 255.255.255.255
!
interface Ethernet0/0
 no shutdown
 no ip address
 shutdown
!
interface Ethernet0/1
 no shutdown
 no ip address
 shutdown
!
interface Ethernet0/2
 no shutdown
 no ip address
 shutdown
!
interface Ethernet0/3
 no shutdown
 no ip address
 shutdown
!
interface Serial1/0
 no shutdown
 ip address 100.1.1.2 255.255.255.0
 serial restart-delay 0
 clock rate 64000
!
interface Serial1/1
 no shutdown
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial1/2
 no shutdown
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial1/3
 no shutdown
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial2/0
 no shutdown
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial2/1
 no shutdown
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial2/2
 no shutdown
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial2/3
 no shutdown
 no ip address
 shutdown
 serial restart-delay 0
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
line con 0
 logging synchronous
line aux 0
line vty 0 4
 login
 transport input none
!
!
end

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/newlw/article/details/131602285