论文格式
电气工程 会计论文 金融论文 国际贸易 财务管理 人力资源 轻化工程 德语论文 工程管理 文化产业管理 信息计算科学 电气自动化 历史论文
机械设计 电子通信 英语论文 物流论文 电子商务 法律论文 工商管理 旅游管理 市场营销 电视制片管理 材料科学工程 汉语言文学 免费获取
制药工程 生物工程 包装工程 模具设计 测控专业 工业工程 教育管理 行政管理 应用物理 电子信息工程 服装设计工程 教育技术学 论文降重
通信工程 电子机电 印刷工程 土木工程 交通工程 食品科学 艺术设计 新闻专业 信息管理 给水排水工程 化学工程工艺 推广赚积分 付款方式
  • 首页 |
  • 毕业论文 |
  • 论文格式 |
  • 个人简历 |
  • 工作总结 |
  • 入党申请书 |
  • 求职信 |
  • 入团申请书 |
  • 工作计划 |
  • 免费论文 |
  • 合作期刊 |
  • 论文同学网 |
搜索 高级搜索

当前位置:论文格式网 -> 毕业论文 -> 计算机论文
毕业论文标题:

基于Linux的一种快速数据包捕获方法

 本文ID:LWGSW13652 价格:收费积分/100
扫一扫 扫一扫
本站会员可自行下载:下载地址 基于Linux的一种快速数据包捕获方法 (收费:1000 积分)  

论文字数:20107,页数:48  有开题报告,任务书
 摘   要
 随着网络规模的不断扩大,网络异构程度不断加深,计算机网络变得日益复杂,迫切需要对网络的流量进行实时、在线的监控和管理。网络流量监测分析可以获得详细的流量特征,如流量大小、协议分布、数据包大小分布等信息,从而指导网络运维、管理与规划设计。
 网络流量监测分析必须解决的一个技术难点是如何实现高速链路的数据包捕获。采用专用硬件价格比较昂贵,且缺乏灵活性;传统的基于软件实现的捕包方法由于受到硬件性能和操作系统开销的影响,只适用于百兆及以下速率的低速链路中。除去硬件系统—CPU, PCI, Memory, Cache机制等本身固有的处理能力限制外,本文分析了传统基于软件的数据包捕获方法所存在的局限性,研究如何控制其实现过程中的开销,进而实现了一种基于Linux内核的高速链路数据包捕获方法,该方法在通用PC上实现,适应Gigabits级高速链路环境。实验表明,基于内核的捕包方法降低了系统调用和内存拷贝,提高了流量分析的能力,与libpcap捕包能力相比有明显的提高。
 
关键字:数据包捕获,libpcap,内存拷贝,系统调用,内核模块 
 An Efficient Packet Capture Method Based On Linux
 
 Abstract
 With the rapid development of network technologies, networks are becoming more and more complicated as the scale of networks are expanding, new applications are emerging, and the heterogeneity of networks is deepening. It is necessary to monitor networks traffic in real time and manage networks on-line. Through network traffic measurement, we can obtain the details of the traffic, such as link utilization, the distribution of the different protocols, the distribution of packet size, and so on. It will guide the maintenance and management of networks and facilitate the design of networks.
 There are many challenges in high-speed network traffic monitoring; one of the most important bottlenecks is packet capturing. But it is too expensive and lack of flexibility to use the special hardware. Because of hardware capability and operating system overhead limitations, the existing network traffic monitoring tools based on software can only perform well at low speed network with the link rate below 100Mbps.Except the limit of hardware system like CPU, PCI, Memory, Cache. This thesis analysis the limit of traditional methods of captured data packet. We also analysis the overhead of its process of Implementation and then Implement a methods which is based on common PC and linux kernel and suit for GE high-speed network. The method which makes use of the characters of kernel module, reduces the overhead of system calls and memory copy times. The experiments show that the method which makes use of the characters of kernel module can enhance the performance much than one traffic analysis tool based on Libpcap.
 
Key Words: Packet Capture,libpcap,Memory Copy,system call,kernel module
  
 

 目 录
 
1.绪论 1
1.1 研究背景 1
1.2 研究意义 2
1.3 研究现状 2
1.4 本文结构 3
2.网络流量监测概述 5
2.1 网络流量的基本概念 5
2.1.1 网络流量的基本定义 5
2.1.2数据包监测的定义 5
2.1.3中断活锁的概念 6
2.2 网络监听原理 6
2.2.1 以太网监听原理 6
2.2.2 网卡的四种工作模式 7
2.3 Linux操作系统数据包捕获方法 8
2.3.1 Linux系统接收数据包的过程 9
2.3.2 Linux系统中流量分析性能影响因素 10
3.基于内核捕包方案的分析 12
3.1 常规的数据包捕获方案 12
3.1.1 Libpcap 12
3.1.2 Libpcap的传统捕获机制影响 12
3.1.3 Libpcap捕包方法的不足 13
3.2存在的性能提升空间 14
3.3 基于内核捕包方案原理 15
3.3.1 Linux内核的数据包处理 15
3.3.2 基于Linux内核的捕包方案原理 16
3.4基于内核捕包方案性能分析 17
4.基于内核捕包方案的设计与实现 19
4.1设计概述 19
4.2 实现方案 20
4.2.1 实现的环境 20
4.2.2 方案的实现 20
4.3实现结果 24
5.实验结果分析 27
5.1 实验环境 27
5.1.1 libnet简介 27
5.1.2实验室环境配置 28
5.2数据包捕获能力测试 29
5.3数据包深度分析能力测试 30
5.4 结论 31
6.总结与展望 33
致谢 34
参考文献 35
附录A 主要源程序 36


相关论文
本论文在计算机论文栏目,由论文格式网整理,转载请注明来源www.lwgsw.com,更多论文,请点论文格式范文查看
上一篇:基于OSGI标准的离线系统的设计与.. 下一篇:物理教育游戏中的引擎设计与实现
Tags:基于 Linux 快速 数据 捕获 方法 【收藏】 【返回顶部】
最新文章
热门文章
计算机论文
推荐文章

本站部分文章来自网络,如发现侵犯了您的权益,请联系指出,本站及时确认删除 E-mail:349991040@qq.com

论文格式网(www.lwgsw.com--论文格式网拼音首字母组合)提供计算机论文毕业论文格式,论文格式范文,毕业论文范文

Copyright@ 2010-2018 LWGSW.com 论文格式网 版权所有 蜀ICP备09018832号