IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> CentOS7.6安装suricata6.0.4 -> 正文阅读

[系统运维]CentOS7.6安装suricata6.0.4

由于通过源码编译依赖开源库比较多,而官方又没有指定开源库的版本范围,导致编译过程遇到的问题较多,因此这里把编译过程中遇到的问题整理汇总。

1.安装依赖环境

yum install -y libpcap zlib libyaml libpcap-devel jansson-devel pcre-devel lua-devel libmaxminddb-devel epel-release libnetfilter_queue-devel nss-devel libyaml-devel zlib-devel luajit-devel?

yum install -y rustc cargo

2.安装PIP?

?yum -y install epel-release
yum -y install python-pip
pip install --upgrade pip

3.下载suricata源码

wget ?https://www.openinfosecfoundation.org/download/suricata-6.0.4.tar.gz
?tar -xvf suricata-6.0.4.tar.gz

4.开始安装

./configure --disable-gccmarch-native --localstatedir=/var --prefix=/usr/ --sysconfdir=/etc --enable-lua --enable-geoip?

注意检查依赖库的版本号,我这里rustc版本为 1.58.1?

Suricata Configuration:
? AF_PACKET support: ? ? ? ? ? ? ? ? ? ? ? yes
? eBPF support: ? ? ? ? ? ? ? ? ? ? ? ? ? ?no
? XDP support: ? ? ? ? ? ? ? ? ? ? ? ? ? ? no
? PF_RING support: ? ? ? ? ? ? ? ? ? ? ? ? no
? NFQueue support: ? ? ? ? ? ? ? ? ? ? ? ? no
? NFLOG support: ? ? ? ? ? ? ? ? ? ? ? ? ? no
? IPFW support: ? ? ? ? ? ? ? ? ? ? ? ? ? ?no
? Netmap support: ? ? ? ? ? ? ? ? ? ? ? ? ?no
? DAG enabled: ? ? ? ? ? ? ? ? ? ? ? ? ? ? no
? Napatech enabled: ? ? ? ? ? ? ? ? ? ? ? ?no
? WinDivert enabled: ? ? ? ? ? ? ? ? ? ? ? no

? Unix socket enabled: ? ? ? ? ? ? ? ? ? ? yes
? Detection enabled: ? ? ? ? ? ? ? ? ? ? ? yes

? Libmagic support: ? ? ? ? ? ? ? ? ? ? ? ?no
? libnss support: ? ? ? ? ? ? ? ? ? ? ? ? ?yes
? libnspr support: ? ? ? ? ? ? ? ? ? ? ? ? yes
? libjansson support: ? ? ? ? ? ? ? ? ? ? ?yes
? hiredis support: ? ? ? ? ? ? ? ? ? ? ? ? no
? hiredis async with libevent: ? ? ? ? ? ? no
? Prelude support: ? ? ? ? ? ? ? ? ? ? ? ? no
? PCRE jit: ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?yes
? LUA support: ? ? ? ? ? ? ? ? ? ? ? ? ? ? yes
? libluajit: ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? no
? GeoIP2 support: ? ? ? ? ? ? ? ? ? ? ? ? ?yes
? Non-bundled htp: ? ? ? ? ? ? ? ? ? ? ? ? no
? Old barnyard2 support:
? Hyperscan support: ? ? ? ? ? ? ? ? ? ? ? no
? Libnet support: ? ? ? ? ? ? ? ? ? ? ? ? ?no
? liblz4 support: ? ? ? ? ? ? ? ? ? ? ? ? ?no

? Rust support: ? ? ? ? ? ? ? ? ? ? ? ? ? ?yes
? Rust strict mode: ? ? ? ? ? ? ? ? ? ? ? ?no
? Rust compiler path: ? ? ? ? ? ? ? ? ? ? ?/root/.cargo/bin/rustc
? Rust compiler version: ? ? ? ? ? ? ? ? ? rustc 1.58.1 (db9d1b20b 2022-01-20)
? Cargo path: ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?/root/.cargo/bin/cargo
? Cargo version: ? ? ? ? ? ? ? ? ? ? ? ? ? cargo 1.58.0 (f01b232bc 2022-01-19)
? Cargo vendor: ? ? ? ? ? ? ? ? ? ? ? ? ? ?yes

? Python support: ? ? ? ? ? ? ? ? ? ? ? ? ?yes
? Python path: ? ? ? ? ? ? ? ? ? ? ? ? ? ? /usr/bin/python2.7
? Python distutils ? ? ? ? ? ? ? ? ? ? ? ? yes
? Python yaml ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?yes
? Install suricatactl: ? ? ? ? ? ? ? ? ? ? yes
? Install suricatasc: ? ? ? ? ? ? ? ? ? ? ?yes
? Install suricata-update: ? ? ? ? ? ? ? ? yes

? Profiling enabled: ? ? ? ? ? ? ? ? ? ? ? no
? Profiling locks enabled: ? ? ? ? ? ? ? ? no

? Plugin support (experimental): ? ? ? ? ? yes

Development settings:
? Coccinelle / spatch: ? ? ? ? ? ? ? ? ? ? no
? Unit tests enabled: ? ? ? ? ? ? ? ? ? ? ?no
? Debug output enabled: ? ? ? ? ? ? ? ? ? ?no
? Debug validation enabled: ? ? ? ? ? ? ? ?no

Generic build parameters:
? Installation prefix: ? ? ? ? ? ? ? ? ? ? /usr
? Configuration directory: ? ? ? ? ? ? ? ? /etc/suricata/
? Log directory: ? ? ? ? ? ? ? ? ? ? ? ? ? /var/log/suricata/

? --prefix ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? /usr
? --sysconfdir ? ? ? ? ? ? ? ? ? ? ? ? ? ? /etc
? --localstatedir ? ? ? ? ? ? ? ? ? ? ? ? ?/var
? --datarootdir ? ? ? ? ? ? ? ? ? ? ? ? ? ?/usr/share

? Host: ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?x86_64-pc-linux-gnu
? Compiler: ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?gcc (exec name) / g++ (real)
? GCC Protect enabled: ? ? ? ? ? ? ? ? ? ? no
? GCC march native enabled: ? ? ? ? ? ? ? ?no
? GCC Profile enabled: ? ? ? ? ? ? ? ? ? ? no
? Position Independent Executable enabled: no
? CFLAGS ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? -g -O2 -std=gnu99 -I${srcdir}/../rust/gen -I${srcdir}/../rust/dist
? PCAP_CFLAGS
? SECCFLAGS

To build and install run 'make' and 'make install'.

标准的make、make install步骤?

make
make install
make install-conf?

make install-rules

5.遇到的问题

找不到libhtp.so.2库,复制一份到/lib64/libhtp.so.2后解决

ldd /usr/bin/suricata
? ? ? ? linux-vdso.so.1 => ?(0x00007fffd93ec000)
? ? ? ? liblua-5.1.so => /lib64/liblua-5.1.so (0x00007f21f1e66000)
? ? ? ? libhtp.so.2 =>?
? ? ? ? librt.so.1 => /lib64/librt.so.1 (0x00007f21f1a36000)
? ? ? ? libm.so.6 => /lib64/libm.so.6 (0x00007f21f1734000)
?

参考资料

suricata官方安装步骤介绍:Suricata User Guide — Suricata 6.0.4 documentationicon-default.png?t=M0H8https://suricata.readthedocs.io/en/suricata-6.0.4/依赖库详细日志:

FreshPorts -- security/suricata: High Performance Network IDS, IPS and Security Monitoring engineicon-default.png?t=M0H8https://www.freshports.org/security/suricata

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-01-30 19:17:57  更:2022-01-30 19:19:55 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 7:26:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码