如何在OpenWRT上启动Snort?

问题描述 投票:0回答:1

最近我用OpenWRT替换了我的路由器操作系统,并在其上安装了snort(2.9):

opkg install snort

我在/etc/snort/rules/local.rules的独一无二的规则:

alert icmp any any -> [My Router Private IP like : 192.168.0.1] any (msg: "NMAP ping sweep Scan"; dsize:0;sid:10000004; rev: 1;)

问题是我跑的时候:

snort -A console -q -c /etc/snort/snort.conf -i br-lan --daq-dir /usr/lib/daq

在命令行上,它是好的,它会检测到一些Nmap扫描攻击并在控制台中写入警报:

04/12-08:19:50.152690  [**] [1:10000005:2] NMAP TCP Scan [**] [Priority: 0] {TCP} 192.168.0.10:46287 -> 192.168.0.1:22

和日志文件,但当我通过以下方式启动服务:

/etc/init.d/snort start

当我使用相同的Nmap命令(nmap -sX -p22 192.168.0.1)时,没有任何事情发生并且没有创建日志文件。

我的问题是:

  1. 为什么服务器没有运行?如果没有Systemctl,没有办法检测每件事情是否合适。
  2. 为什么运行snort命令时创建的日志是无稽之谈?当我输入例如cat /var/log/snort/snort.log.1523473976我得到: Z 1 8Mvvn6(爈鹅湖@@ A3 <

在控制台中。

PS:1 -cat /etc/init.d/snort

#!/bin/sh /etc/rc.common
# Copyright (C) 2015 OpenWrt.org

START=90
STOP=10

USE_PROCD=1
PROG=/usr/bin/snort

validate_snort_section() {
    uci_validate_section snort snort "${1}" \
        'config_file:string' \
        'interface:string'
}

start_service() {
    local config_file interface

    validate_snort_section snort || {
        echo "validation failed"
        return 1
    }

    procd_open_instance
    procd_set_param command $PROG "-c" "$config_file" "-q" "--daq-dir" "/usr/lib/daq/" "-i" "$interface" "-s" "-N"
    procd_set_param file $CONFIGFILE
    procd_set_param respawn
    procd_close_instance
}

stop_service()
{
    service_stop ${PROG}
}

service_triggers()
{
    procd_add_reload_trigger "snort"
    procd_add_validation validate_snort_section
}

2-我实际上跟着This link配置了。但我取消注释并设置config logdir/var/log/snort/

(任何帮助将不胜感激)

linux logging service openwrt snort
1个回答
0
投票

它默认设置为localhost - lo检查uci show snort.snort.interface的输出

您可以使用uci set snort.snort.interface=br-lan更改snort以确认它实际上已采用新参数 - /etc/init.d/snort restart

您可以在top / htop中查看整个命令行如果一切正常,请将更改保存到UCI:uci commit您的日志是二进制文件,而不是文本,我有我的日志到syslog并将它们发送到远程rsyslog服务器,在snort.conf中 - output alert_syslog: LOG_AUTH LOG_ALERT

© www.soinside.com 2019 - 2024. All rights reserved.