|
|||||||||||
|
[Snort-users] Unable to receive alerts
From: Sadanapalli, Pradeep Kumar (MED, TCS) <Pradeep.Sadanapalli(at)med.ge.com>
Date: Fri Feb 28 2003 - 14:43:14 EST
I am using a Lucent Wireless Network Card. I installed snort-1.9.0 as below.
cp snort-1.9.0.tar.gz /home/pradeep/
cd /home/pradeep
tar -xzf libpcap-0.7.1.tar.gz
cd ..
tar -xzf snort-1.9.0.tar.gz
mkdir /etc/snort cp etc/snort.conf /etc/snort/snort.conf mkdir /var/log/snort mkdir /IDS cp -ax rules /IDS/rules I am pasting below my snort.conf and snortd script for reference. /etc/rc.d/init.d/snortd start
When I execute "dmesg |tail -1"
I am losing network connection i.e I am even unable to ping to any other
computer in the network.
Please someone help what is going wrong? Thanks in advance for all your help.. Pradeep ****************SNORTD****************** #!/bin/sh
# Source function library.
# Specify your network interface here
RETVAL=0 start() {
echo -n $"Starting snort: "
daemon $SNORTBINARY -A fast -b -l /var/log/snort -d -D -i
$INTERFACE -c $CONFIGFILE
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/snortd
echo
echo -n $"(log to " $LOGDIR " with configfile " $CONFIGFILE ")"
echo
} stop() {
dostatus() { status snort RETVAL=$? } restart() { stop start RETVAL=$? } condrestart() { [ -e /var/lock/subsys/snortd ] && restart || : } # See how we were called.
start
;;
stop)
stop
;;
status)
dostatus
;;
restart|reload)
restart
;;
condrestart)
condrestart
;;
*)
echo "Usage: snortd {start|stop|status|restart|condrestart}"
exit 1
esac exit $RETVAL ****************SNORTD****************** ****************SNORTD.CONF******************
var HOME_NET x.0.0.0/24
var SMTP $HOME_NET
var RULE_PATH /IDS/rules
var SHELLCODE_PORTS !80
###################################################
# frag2: IP defragmentation support
# The following (comma delimited) options are available for frag2
# fragment will be kept around waiting for
preprocessor frag2 # stream4: stateful inspection/stream reassembly for Snort
# stateful inspection directive
preprocessor stream4: detect_scans, disable_evasion_alerts # tcp stream reassembly directive
preprocessor stream4_reassemble # http_decode: normalize HTTP requests
preprocessor http_decode: 80 # rpc_decode: normalize RPC traffic
preprocessor rpc_decode: 111 32771 # bo: Back Orifice detector
preprocessor bo # telnet_decode: Telnet negotiation string normalizer
preprocessor telnet_decode # portscan: detect a variety of portscans
preprocessor portscan: $HOME_NET 4 3 portscan.log preprocessor portscan: $EXTERNAL_NET 4 3 portscan.log # Use portscan-ignorehosts to ignore TCP SYN and UDP "scans" from
# preprocessor portscan-ignorehosts: 0.0.0.0 $DNS_SERVERS
# Spade: the Statistical Packet Anomaly Detection Engine
# unicast ARP requests, and specific ARP mapping monitoring. To make
####################################################################
# output alert_syslog: LOG_AUTH LOG_ALERT
# log_tcpdump: log packets in binary tcpdump format
# database: log to a variety of databases
# unified: Snort unified binary format alerting and logging
# trap_snmp: SNMP alerting for Snort
# You can optionally define new rule types and associate one or
#
include classification.config ####################################################################
include $RULE_PATH/bad-traffic.rules include $RULE_PATH/exploit.rules include $RULE_PATH/scan.rules include $RULE_PATH/finger.rules include $RULE_PATH/ftp.rules include $RULE_PATH/telnet.rules include $RULE_PATH/smtp.rules include $RULE_PATH/rpc.rules include $RULE_PATH/rservices.rules include $RULE_PATH/dos.rules include $RULE_PATH/ddos.rules include $RULE_PATH/dns.rules include $RULE_PATH/tftp.rules include $RULE_PATH/web-cgi.rules include $RULE_PATH/web-coldfusion.rules include $RULE_PATH/web-iis.rules include $RULE_PATH/web-frontpage.rules include $RULE_PATH/web-misc.rules include $RULE_PATH/web-attacks.rules include $RULE_PATH/sql.rules include $RULE_PATH/x11.rules include $RULE_PATH/icmp.rules include $RULE_PATH/netbios.rules include $RULE_PATH/misc.rules include $RULE_PATH/attack-responses.rules include $RULE_PATH/backdoor.rules include local.rules ****************SNORTD.CONF****************** -------------------------------------------------------This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf Snort-users mailing list Snort-users@lists.sourceforge.net Go to this URL to change user options or unsubscribe: https://lists.sourceforge.net/lists/listinfo/snort-users Snort-users list archive: http://www.geocrawler.com/redir-sf.php3?list=snort-users Received on Fri Feb 28 14:49:27 2003 This archive was generated by hypermail 2.1.8 : Wed Aug 23 2006 - 14:11:45 EDT |
||||||||||
|
|||||||||||