




已阅读5页,还剩2页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
内网监控论文:公安内部网络安全监控系统管理系统的设计与实现【中文摘要】公安内网管理监控系统已经在全国得到了部署和使用,一些现成的商业或者组织研制的监控系统已经能很好的解决了“一机两用”问题和公安内网客户端安全管理等关键问题。课题研究开发了一款简易初步的局域网监控系统,适合于地市级单位使用,以节约成本。论文首先对目前的内网使用安全状况及其原因分析做了简要介绍,并介绍了课题研究的背景,提出了本课题的研发内容。其次,对系统研发过程中所用到的数据库知识、开发环境知识进行了介绍,为后续的描述做了铺垫。随后,对系统的用户需求进行了详细的分析,并设计了各个功能的用例。在通过对用例的初步分析的基础上,对系统进行了概要设计,得到了系统框架结构与类结构。第四章则重点阐述了系统各个模块的详细设计。最后,讲述了系统的实现与测试方案设计。本研究实现了如下模块:1)检测和发现网络中存在的计算机通过MODEM,ADSL,双网卡及其离线方式等设备接入网络行为。2)记录各种非法上网的计算机信息,如上网时间,持续时间,客户端地址,计算机的IP地址,MAC地址等。3)详细记录非法上网计算机的计算机名称,单位,上网方式(代理,拨号)。4)便捷的查询设计功能,多种条件查询支持对一机两用信息进行信息查询统计。5)能够将本级监控系统管辖范围内的监控信息以数据库形式分类存储并上报,并实现监控或者病毒信息发布平台,实现数据上传邮箱备分。本文所设计的内网监控管理信息平台特点如下:1)本文所构建的监控平台采用服务器/浏览器(B/S)框架构建系统,在服务器端以ACCESS和SQL Server 2000作为数据库服务器提供了数据库服务功能。2)本系统设计采用面向对象的分析和设计策略,用了三层架构的框架进行开发,使各模块的类结构非常清晰。在数据库设计方面,使用了数据关系图,比较直观、易懂。在整个系统的研发过程中,有效的提高了效率,同时最小化了设计错误。3)本系统充分利用了Visual Studio 2005的集成开发环境在界面和数据库开发上的优势进行了系统实现,使用了.Net Framework 2.0的框架和VB.Net的开发语言,使得开发效率非常高,并且框架比较成熟和稳定。4)在系统测试方案设计上,本文在对传统V型和X型测试设计方案的分析基础上,采用了一种改进的测试方案对系统各个模块进行了测试。整个测试方案以黑盒和白盒单元测试相结合的方式实现,使测试更有效,更灵活。【英文摘要】At present, the network controlling and management systems have been widely applied in the whole nation for security purposes. Currently, a series of available monitoring systems have been developed by a number of commercial and organizational agencies, for solving the problem of“one machine, dual use”. Here, we developed a simple preliminary LAN monitoring system, suitable for being applied in city-level governments to reduce costs.The first chapter is dealing with the current security situatuion of internal network of the security departments. We also give a brief introduction, describe the research background, and propose the major contents of the present study. In the second chapter, we introduce the knowledge of database and programming environmet in detail. In the third chapter, we analyze the customer requirements for security monitoring, and design the principal modules for the whole system. In the fourth chapter, we mainly present the implementation of the modules of the systems. Finally, in the last chapter, the test design and cases for the system are present.Our study achieved the following modules:1) Detecting and identifying the connection way for the computers being monitored, including MODEM, ASDL, pairs of network cards, and offline behaviors.2) Recording the information all kinds of illegal access to internet for the computer, including online time, duration time, computers IP and MAC addresses and so on.3) Recording the detailed information on the illegal computer, including name, department, network connection ways (proxy or dial-up).4) Easy query of data sets for the purpose of security searching and checking.5) Saving and uploading the suspected alert data to the high-level security monitoring center; developing the platform of information sharing and publishing; realizing the submission of alert data using email system.Features of present network monitoring security system:1) The monitoring platform is built on the basis of server/browser (B/S) framework. On the server side, SQL Server 2000 and ACCESS database software are used. 2) The system design follows the object-oriented strategy, developed under the three-tier framework, therefore the class structure for each module can be clearly present. In the design of database, we graph the relationships among the data, which can be vividly understood. In the whole development process, we can effectively accelerate the programming and reduce the design mistakes.3) Our system extensively used the developing environment of Visual Studio 2005, which can easily make the system realized. By using .Net Framework 2.0 and VB.Net, the developing effectiveness is very high, and the system is stable.4) On the design of system testing, we not only used the traditional V- and X-type testing design, but also introduced an improved testing method. The entire testing is carried out by the combination of the black and white box units, to make the testing more efficient and flexible.【关键词】内网监控 一机两用 数据上报 信息发布 系统测试【英文关键词】Monitoring within the network One machine Data reporting Information dissemination System testing【目录】公安内部网络安全监控系统管理系统的设计与实现摘要4-6Abstract6-7第一章 绪论11-171.1 公安内网建设背景11-121.2 课题研究现状121.3 一机两用问题12-131.4 课题主要内容13-151.5 论文组织结构15-161.6 本章小结16-17第二章 系统技术背景介绍17-262.1 网络安全监控系统17-182.2 系统技术基础分析18-192.2.1 软件开发技术18-192.2.2 数据库技术192.3 开发技术和编程语言19-222.3.1 系统开发体系19-202.3.2 ASP.NET 技术20-222.4 系统开发工具22-242.4.1 ASP.NET 开发环境22-232.4.2 数据库工具选择23-242.5 UML 建模工具24-252.6 本章小结25-26第三章 系统需求分析与概要设计26-323.1 成熟系统案例263.2 系统架构设计26-283.3 系统数据流分析28-303.4 数据管理功能30-313.5 本章小结31-32第四章 系统详细设计32-414.1 监控系统功能设计324.2 系统性能设计32-334.2.1 以XML 传递数据32-334.2.2 业务逻辑处理334.2.3 统一管理业务接口334.3 数据库逻辑设计33-364.3.1 数据E-R 图设计33-344.3.2 数据库表设计34-364.4 系统主要流程设计36-384.4.1 信息查询流程设计36-374.4.2 信息删除流程设计374.4.3 信息添加流程设计37-384.5 系统安全体系设计38-404.5.1 CA 认证体系38-394.5.2 数据加密394.5.3 用户权限控制39-404.5.4 日志管理404.6 本章小结40-41第五章 系统实现与测试41-615.1 系统实现平台415.2 数据接口格式规范41-425.3 监控网络布线模块实现42-445.4 系统功能模块实现44-575.4.1 联机设备
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 跨界投资与颠覆性创新-洞察及研究
- 小学体育课件跳绳教学
- 2025至2030中国静脉采血装置行业项目调研及市场前景预测评估报告
- 供应链年中工作总结
- 物控工作总结报告
- 信息技术产业园区空地租赁与云计算数据中心合作合同
- 高端酒店品牌代理售后服务与客户满意度调查协议
- 子女权益优先离婚协议书:财产分割示范文本
- 物业总经理任期战略规划与执行监督合同
- 离职补偿协议范本(含离职补偿及全球服务)
- 小儿腺病毒感染护理查房
- 毒品成瘾原因课件
- 金太阳福建省2025-2026学年高三上学期9月开学联考数学试卷
- 2025年公需课《人工智能赋能制造业高质量发展》试题及答案
- 造口凸面底盘临床应用共识
- 2025-2026学年外研版七年级英语上册(全册)教学设计(附目录)
- 2025-2026学年人美版(2024)小学美术三年级上册教学计划及进度表
- 连锁药店考勤管理制度
- 安全防范系统升级和服务协议
- 2025年吉林省教育系统后备干部考试题及答案
- 整合照护课件
评论
0/150
提交评论