Fastnetmon配置与使用

Fastnetmon

介绍

FastNetmon是一个基于多种抓包引擎来对数据包进行统计分析的DOS/DDOS工具,可以探测和分析网络中的异常流量情况,同时,也可以对捕获的异常调用外部脚本进行处理警报啊或者进行阻断处理,全靠外部脚本是如何定义。

安装和配置方法

安装
配置
  • 配置文件,cd到你刚刚克隆的项目里面。
    cp src/Fastnetmon.conf 到/etc/
    cp src/fastnetmon_init_script_centos6 /etc/init.d/fastnetmon #cp启动脚本到/etc/init.d/
    chmod 755 /etc/init.d/fastnetmon #修改启动脚本权限
    cp src/notify_about_attack.sh /usr/local/bin/ #cp 通知脚本
  • /etc/fastentmon配置项
    ban_time = 1900 #对检测到攻击的ip进行多久封锁。
    enable_subnet_counters = on #检测每个子网进出流量
    enable_connection_tracking = on #开启攻击追踪检测,通过这个选项在日志文件里可以详细看见攻击者ip和其他一些详细情况
    ban_for_pps = on,ban_for_bandwidth = on,ban_for_flows = on #检测的选项pps(每秒包),bandwidth(带宽),flows(流量)。
    threshold_pps = 20000,threshold_mbps = 1000,threshold_flows = 3500 #监控的限定值
    抓包引擎选择
    mirrof=off
    没有安装PF_RING就不要开启,不然会启动报错。
    pfring_sampling_ratio = 1 #端口镜像采样率
    mirror_netmap = off
    没有安装Netmap就不要开启,不然会会启动报错。
    mirror_snabbswitch=on #开启snabbswitch流量捕获。
    mirror_afpacket =on #AF_PACKET捕获引擎开启
    netmap_sampling_ratio = 1 #端口镜像抽样比
    pcap=on #pcap引擎开启
    netflopw=on #使用Netflow捕获方法
    interfaces=enp5s0f1 #监控的端口,我这里使用的是镜像端口,不然监控不到整个网端流量
    notify_script_path=/usr/local/bin/notify_about_attack.sh #触发脚本位置
    monitor_local_ip_addresses = on #监控本地地址
    sort_parameter = packets #在控制台排序单位,包
    max_ips_in_list =400 #在控制台显示多少地址
编辑要监控的网段

vim /etc/networks_list #编辑networks_list加入要监控的网段这里我加入
211.156.182.0/24 220.242.2.0/24
/etc/init.d/fastnetmon start #启动fastentmon,启动失败查看/var/log/fastnetmon.log
/opt/fastnetmon/fastnetmon #打开监控控制台

修改监控脚本

1,要先外发邮件必须配置mailx

  • 安装mailx,配置SMTP vim /etc/mail.rc 我这里配置的是我163的邮箱
    set bsdcompat
    set from=xxxxx@163.com smtp=smtp.163.com
    set smpt-auth-user=xxxx@163.com set smtp-auth-user=xxxxxx@163.com smtp-auth-password=xxxxxx smtp-auth=login
  • vim /usr/local/bin/notify_about_attack.sh #这里填要触发监控的脚本
    修改邮件地址为接受人。
    cat | mail -s “FastNetMon Guard: IP $1 blocked because $2 attack with power $3 pps” $email_notify;

测试

使用低轨道等离子炮(Loic)进行测试这里我对我们211.156.182.143进行Tcp DDOS攻击
我们先把这些值调低
threshold_pps = 2000,threshold_mbps = 100,threshold_flows = 350 #监控的限定值
然后重启Fastnetmon

测试完修改回值