- 浏览: 53036 次
- 性别:
- 来自: 北京
最新评论
-
lehehe:
基站定位,使用接口很方便的,这里有免费的接口,你可以试试,ht ...
google API基站定位 -
donkeyji:
yongqi 写道hi,你好,请教一个问题我在安装python ...
python zeromq 介绍 -
yongqi:
hi,你好,请教一个问题我在安装python的zeromq包时 ...
python zeromq 介绍 -
mimicom:
看着晕乎乎的....
python zeromq 介绍 -
raojl:
不错,好像zeromq就在2011年一夜之间火了,特别的blo ...
python zeromq 介绍
1. PF_RING 安装
A clean install, no other packages were installed other than mentioned(提到).
1. Uninstall libpcap and other dependent applications/library using apt-get
原因?
2. Install subversion(Get latest source codes)
flex and bison(Required to recompile pf_ring aware pcap)
ethtool(if not preinstalled, required for some basic Nic info of your computer)
sudo apt-get install subversion flex bison ethtool
3. Use Subversion to fetch source codes
svn co https://svn.ntop.org/svn/ntop/trunk/PF_RING/ PF_RING
[卸载本机网卡驱动]
4. Check your current network card/driver using ethtool
#change eth0 to your ethernet card ethtool -i eth0
Sample:
driver: e1000e
version: 1.0.2-k2
firmware-version: 0.4-3
bus-info: 0000:00:19.0
Note: The modified device drivers for some of the popular network cards can be found in PF_RING/drivers.
5. Unload the ethernet card driver(this is shown in the first line of output of above command)
sudo rmmod e1000e
[编译安装kernel]
6. Change current working directory to kernel
cd PF_RING/kernel
7. Make the source codes
make
8. Now install the newly build source
sudo make install
[编译安装用户态库]
9. Change the working directory to PF_RING/userland/lib
cd ../userland/lib
10. Again build the source codes
make
11. Install the library(This include pfring.h)
sudo make install
[注意] 在最新版本没有出现pfring_e1000e_dna.c和pfring_e1000e_dna.h这两个文件
12. One bizerre(奇异) thing that I observed(观察) is that the make install copies pfring.h to /usr/local/include but leaves the other dependent files these are:
1. pfring_e1000e_dna.c
2. pfring_e1000e_dna.h
13. Although the function in these files are not required in much of the program, they are include in pfring.h and i don't want to mess up with that.So we copy this to /usr/local/include.
cp pfring_e1000e_dna.c /usr/local/include cp pfring_e1000e_dna.h /usr/local/include
[编译安装PF_RING可用pcap库]
14. Now we have to compile PF_RING aware pcap library. Change the working directory to userland/libpcap-1.0.0-ring
cd ../libpcap-1.0.0-ring/
15. Configure
./configure
16. Build the sources
make
17. Install pf_ring aware(知道) libpcap
sudo make install
[安装PF_RING可用设备驱动, 选择适合本机的]
18. Now we need to install the device driver(pf_ring aware). Change the working directory to drivers///src
In my case it is "drivers/intel/e1000e-1.0.15/src"
cd ../../drivers/intel/e1000e-1.0.15/src
19. Build the source
make
20. Install the driver
sudo make install
[激活PF_RING使其加载到内核工作]
21. Now we need to activate PF_RING if its not already activated. You can use Ismod to check if pf_ring is started or not.
Change the working directory to /lib/modules//kernel/net/pf_ring
Use uname -r to get the kernel version
cd /lib/modules/2.6.31-14-generic/kernel/net/pf_ring
22. Enable PF_RING(if already enabled you can disable it using sudo rmmod pf_ring)
sudo insmod pf_ring.ko transparent_mode=1
Note:
• transparent_mode=0 (default)
Packets are received via the standard Linux interface. Any driver can use this mode.
• transparent_mode=1 (Both vanilla and PF_RING-aware drivers)
Packets are memcpy() to PF_RING and also to the standard Linux path.
• transparent_mode=2 (PF_RING -aware drivers only)
Packets are ONLY memcpy() to PF_RING and not to the standard Linux path (i.e. tcpdump won't see
anything).
The higher is the transparent_mode value, the faster it gets packet capture.
Other parameters:
• min_num_slots
Min number of ring slots (default — 4096).
• enable_tx_capture
Set to 1 to capture outgoing packets, set to 0 to disable capture outgoing packets (default — RX+TX).
• enable_ip_defrag
Set to 1 to enable IP defragmentation, only rx traffic is defragmented.
More on transparent mode can be found at http://www.ntop.org/blog/?p=56
[使驱动开始工作]
23. Now enable to enable your driver go to /lib/modules//kernel/drivers/net/e1000e
cd /lib/modules/2.6.31-14-generic/kernel/drivers/net/e1000e
24. Enable the driver
sudo insmod e1000e.ko
25. Now you can start working on your PF_RING application.
Note: You will have to recompile many applications such as tcpdump(modified included), network manager etc. Google for doing so.
2. PF_RING demo
概括来说PF_RING是即简单又有力量的技术,能够使开发者用在少量的时间里创建高速传输监控和应用。
Checking PF_RING Device Configuration
When PF_RING is activated, a new entry /proc/net/pf_ring is created.
cat /proc/net/pf_ring/info
cat /proc/net/pf_ring/plugins_info
libpfring and libpcap is necessary to link you PF_RING-enabled applications also against the -lpthread library.
使用相关命令来查看抓包情况(userland/examples)
dmesg或/var/log/messages可以看到PF_RING的信息
发表评论
-
rails model best practices
2011-05-11 09:50 0name_scope :active, :conditions ... -
Ruby标准库
2011-05-10 15:02 0ruby标准库一览 文本 base64 yaml ... -
rails3测试理解
2011-04-30 10:23 1350Why RSpec? Clear, concise and ... -
linux系统备注
2011-04-29 10:49 1186bin "Essential binaries&qu ... -
vim备注
2011-04-29 10:03 0vim -
ruby
2011-04-28 10:33 1092Ruby编程基础知识概括: 1. ruby is an ob ... -
Javascript简明手册
2011-04-25 10:07 0Javascript和C++,java,Python一样是一种 ... -
KVM
2011-04-24 09:36 01 kvm安装 前期准备 ... -
Jquery
2011-04-22 16:10 01. jQuery解决了什么样的问题? -
CSS相关知识
2011-04-22 16:02 7381. CSS是一种为结构化文档添加样式的计算机语言 使 ... -
Mysql相关知识
2011-04-22 14:30 11771. Mysql常规使用 安装 server: sudo ... -
thrift实践
2011-04-08 11:52 14891 安装thrift 通过svn获得源码 svn co h ... -
Cmake + protobuf-c + python自定义协议通信
2011-03-29 11:25 4825Cmake是一套跨平台的工程构建工具 sudo apt ... -
清除历史记录
2011-03-18 10:40 01. 选型 [语言] C++ [平台] wind ... -
pyzmq 使用
2011-03-16 16:02 51171. The Socket API Creating an ... -
nginx X-Accel-Redirect实现文件下载权限控制及rails devise实现
2011-03-14 13:52 3335问题1:Nginx的X-Accel-Redirect? 答: ... -
python zeromq 介绍
2011-03-10 10:38 11155简介: ZeroMQ并不是一个对socket的封装,不能用它 ... -
fabric自动部署
2011-03-09 14:00 2630Fabric commands run - run a ... -
nagios的工作场景及使用说明
2011-03-08 10:15 2066问题1:nagios配置文件说明? 答: comman ... -
在ubuntu下安装nagios监控平台
2011-03-07 16:56 1599问题1:Nagios是什么? 答:是一个监视系统运行状态和网 ...
相关推荐
pd = pfring_open(eth1, SNAP_LEN, PF_RING_PROMISC); if (pd == NULL) { printf("pfring_open error [%s]\n", strerror(errno)); exit(EXIT_FAILURE); } if (pfring_set_direction(pd, rx_only_direction) != 0)...
### PF_RING中文用户指南知识点概览 #### 一、PF_RING简介 - **定义与功能**:PF_RING是一个用于Linux平台的高速数据包捕获库,能够将普通的PC转变成高效的网络测量工具,用于实时流量分析及数据包操作。PF_RING...
- PF_RING通过ring_table维护了所有的ring sockets,每个socket对应一个struct sock,而struct ring_opt则存储了与特定协议相关联的私有信息。 - PF_RING使用了自定义的net_device notifier来处理设备状态变化的事件...
**pf_ring 4.5.0 源代码详解** `pf_ring` 是一个高性能的网络数据包捕获和分析框架,广泛应用于网络监控、安全分析以及数据中心性能优化。pf_ring 4.5.0 版本是该框架的一个特定发布,通过SVN版本控制系统同步获取...
PF_RING是网络数据包捕获和分析领域的一个关键组件,尤其在高性能网络监控和安全应用中扮演着重要角色。这个“PF_RING-7.6.0.tgz”压缩包文件包含的是PF_RING库的7.6.0版本,它是一个开源软件项目,由意大利公司Ntop...
pf_ring是一个专门用于数据包捕获的高性能库。这个库被设计用来在Linux环境下运行,专门用于网络监控和流量分析,可以极大的提高数据包捕获的速度和效率。这个库使用一种独特的内核模块架构,能够绕过标准的数据包...
PF_RING 是一个高性能的数据包捕获和分析框架,主要用于网络监控、网络安全和数据分析等领域。6.2.0 版本是该框架的一个特定发行版,提供了改进和新特性以优化性能和功能。 在PF_RING 6.2.0中,我们可能会发现以下...
在PF_RING中,提供了多种负载均衡方法,包括标准PF_RING的负载均衡、PF_RING Cluster(Kernel)和PF_RING ZC负载均衡等。这些方法可以根据不同的应用场景选择使用,提高网络流量监控和网络流量分析的效率。 标准PF_...
**pf_ring概述** pf_ring是由Nethesis公司开发的一款高性能网络数据包捕获和分析库,主要用于提升在Linux系统上的网络监控和数据处理能力。它通过优化系统内核,实现了比标准libpcap更高的数据包捕获速度。pf_ring...
**PF_Ring:高效的数据包捕获与处理技术** PF_Ring是由Ntop组织开发的一种高性能的数据包捕获和分析框架,特别适用于Linux操作系统。它为网络监控、数据分析和性能优化提供了强大的工具,通过利用环形缓冲技术显著...
PF_RING 是一个高性能的数据包处理框架,主要用于网络监控、网络安全分析和数据中心的性能优化。它由意大利电信研发,提供了一种高效的方式,让应用程序能够快速地读取和处理网络接口中的数据包,甚至超过了操作系统...
PF_RING是Luca Deri发明的提高内核处理数据包效率,并兼顾应用程序的补丁,如Libpcap和TCPDUMP等,以及一些辅助性程序(如ntop查看并分析网络流量等)。 压缩包里使用手册很详细,具有很强参考价值
PF_RING是Luca研究出来的基于Linux内核级的高效数据包捕获技术。简单来说PF_RING 是一个高速数据包捕获库,通过它可以实现将通用 PC 计算机变成一个有效且便宜的网络测量工具箱,进行数据包和现网流量的分析和操作。...
### PF_RING用户指南技术文档知识点概述 #### 一、PF_RING简介 PF_RING是一款高性能的包捕获库,能够将普通PC转变为高效的网络测量设备,适用于包和活动流量的分析与处理。它不仅提升了网络监控的效率,还开启了新...
自己破解的PF_RING DNA 5分钟授权限制的版本。
PF_RING 是一个高性能的数据包捕获和分析框架,主要用于Linux系统。这个用户指南详细介绍了如何在Linux环境中高效地抓取和处理网络数据包。PF_RING的版本为5.4.6,更新于2012年10月,由ntop.org开发。 1. **介绍** ...
**PF_RING 翻译文档** PF_RING 是一个高性能的网络数据包捕获和分发框架,主要用于提高网络数据包处理的效率。它的设计目的是解决传统libpcap库在处理高吞吐量网络数据时存在的效率问题。以下是PF_RING的核心知识点...
LINUX系统中基于PF_RING套接字的高性能包捕获技术
在IDS中,传统数据分组的捕获是从网卡复制到内核,再由内核复制到用户空间,这导致了...为了提升捕获包效率,采用多线程思想,通过PF_RING ZC技术实现零拷贝,把PF_RING ZC捕获数据分组的方法做成动态链接库,并集成到Snort中