SNORT中无法启动DAQ。提示ERROR: Can't set DAQ BPF filter to '–T' (hO)!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SNORT中无法启动DAQ。提示ERROR: Can't set DAQ BPF filter to '–T' (hO)!相关的知识,希望对你有一定的参考价值。

我在win7_64上安装了Snort_2_9_6_0_Installer和WinPcap_4_1_3,想输入c:\snort\bin\snort -iX -s -l c:\snort\log\ -c c:\snort\etc\snort.conf –T测试下是否安装完整,但是提示错误,最后的内容为ERROR: Can't set DAQ BPF filter to '–T' (hO)!。
我初学snort,希望大神找找我哪儿出毛病了,不胜感激

我是用centos搭建的snort,在最后运行时,提示:Can't set DAQ BPF filter to '–D',有遇到这样的情况吗? 参考技术A 同样遇到,楼主解决了吗 参考技术B 同问,和楼主碰到一样的问题

SNORT--install ---dependency-resolve

# ./configure

 

    遇到ERROR:     

   checking for pfring_open in -lpcap... no

 

   ERROR!  Libpcap library/headers (libpcap.a (or .so)/pcap.h)

   not found, go get it from http://www.tcpdump.org

   or use the --with-libpcap-* options, if you have it installed

   in unusual place.  Also check if your libpcap depends on another

   shared library that may be installed in an unusual place

 

   在/usr/lib下找到了libpcap.so.1.1.1,于是输入:

   # sudo ln -s /usr/lib/libpcap.so.1.1.1 /usr/lib/libpcap.so

 

    再次 ./configure,遇到ERROR:

    checking for pcre.h... no

 

   ERROR!  Libpcre header not found.

   Get it from http://www.pcre.org

   

    在新立得找到libpcre3-dev安装之。再次 ./configure,新的ERROR:

    checking for dumbnet.h... no

 

   ERROR!  dnet header not found, go get it from

   http://code.google.com/p/libdnet/ or use the --with-dnet-*

   options, if you have it installed in an unusual place

 

    在新立得安装libdumbnet-dev,继续./configure,new ERROR:

    ./configure: line 15155: daq-modules-config: command not found

    checking for daq_load_modules in -ldaq_static... no

 

   ERROR!  daq_static library not found, go get it from

   http://www.snort.org/.

    从官网下载 daq-1.1.1.tar.gz,并安装,又新错误:

     checking for capable lex... insufficient

     configure: error: Your operating system‘s lex is insufficient to compile

         libsfbpf. You should install both bison and flex.

         flex is a lex replacement that has many advantages,

         including being able to compile libsfbpf.  For more

         information, see http://www.gnu.org/software/flex/flex.html .

    # sudo apt-get install flex

    # sudo apt-get install bison

 

    新错误:

    checking for libpcap version >= "1.0.0"... no

 

    ERROR!  Libpcap library version >= 1.0.0  not found.

    Get it from http://www.tcpdump.org

    发现貌似是libpcap版本太低,从新立得安装libpcap-dev

    终于顺利通过check,

    然后 # make

            # sudo make install

    daq安装完成,继续安装snort。

    # cd snort-2.9.3.1

    # ./configure           没问题了

    # make

    # sudo make install

    搞定。

 

    最后装好运行又有个错误。。

    #snort -v

    snort: error while loading shared libraries: libsfbpf.so.0: cannot open shared object file: No such file or directory

    原来是装在/usr/local/lib了。做一个链接:

    #sudo ln -s /usr/local/lib/libsfbpf.so.0.0.1 /usr/lib/libsfbpf.so.0

以上是关于SNORT中无法启动DAQ。提示ERROR: Can't set DAQ BPF filter to '–T' (hO)!的主要内容,如果未能解决你的问题,请参考以下文章

如何在Kali下安装snort

如何在Kali下安装snort

Linux系统安装IDS(snort工具)

snort-2.9.16在ubuntu16.04环境下的安装,配置与运行

Ubuntu 16.04安装snort含问题解决

计算机网络安全--snort介绍--linux下安装和使用