Sponsored Content
Full Discussion: filter errors in log
Top Forums UNIX for Advanced & Expert Users filter errors in log Post 302253190 by nobo on Friday 31st of October 2008 06:34:02 AM
Old 10-31-2008
Yes, many.

Here is something I use to give me summaries of iptables action by port #:

Code:
[root@gna ~]# cat bin/portActivity
#! /bin/bash
LOGFILE='/var/log/messages'
[ -n "$1" ] && LOGFILE=$1
egrep 'iptables' $LOGFILE | egrep -v 'PROTO=2' | sed 's/DF//' | awk '{ print $22}' \
| cut -b '5-' | sort -n | uniq -c | awk '{ print "port " $2 " had " $1 " hits" }'
[root@gna ~]# portActivity | head
port 21 had 15 hits
port 22 had 36 hits
port 23 had 20 hits
port 52 had 2 hits
port 53 had 1 hits
port 57 had 3 hits
port 60 had 2 hits
port 80 had 9 hits
port 110 had 1 hits
port 111 had 1 hits
[root@gna ~]#

YMWV depending on how your firewall logs stuff.

Learn the toolbox!

nobo
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

grep a log file to filter previous dates

Hi, I have problem of filtering a log file from my perl script. #cat /data/pinpe.csv_20070731 | nawk -v FS=, '{print $1','$18','$22','$26}' | grep -w 100 | grep -w 1 | nawk '{print $4}' Below is the output: 2009-06-16 2009-01-29 2009-06-02 2008-03-05 2007-08-05 2007-09-24... (5 Replies)
Discussion started by: pinpe
5 Replies

2. Shell Programming and Scripting

redirect errors to log file

I am working on a generic script that will run a shell script with the arguments passed and redirect errors to one file, and all other output to another file. Then if there is anything in the error file it emails the error to me, otherwise it exits. The advantage for this approach is that I... (0 Replies)
Discussion started by: gandolf989
0 Replies

3. Shell Programming and Scripting

To filter a log file

Hi All, I have a log File and i have to make a report in desired format.can anybody help me......... log file ------ <<<<< BESI14 >>>>> <RLGAP:CELL=ALL; CELL CHANNEL GROUP ALLOCATION DATA CELL CHGR SAS ODPDCHLIMIT BUNYM18 0 MULTI 100 -------- desired format... (1 Reply)
Discussion started by: dattatraya
1 Replies

4. Shell Programming and Scripting

track the errors in log file

OS: SuSE Linux Enterprise Server 10 Goal: To track the errors in log file, If they exits users will be notify by email. We have a script below: SrchKey="SRVE0242I:" LogFile=/PATHtemOut.log MailTo="DN@mail.com http:// ! -f PATH/alert.last && touch PATH/alert.last egrep $SrchKey $LogFile... (3 Replies)
Discussion started by: sdhn1900
3 Replies

5. UNIX for Dummies Questions & Answers

Log in as root and it errors out

Hello I tried to log in as root, through console access, and this is what I got. >root ksh: root: not found Can you tell me why I got this and what causes it. Thanks. (2 Replies)
Discussion started by: iamnew2solaris
2 Replies

6. Solaris

about log errors

How would you truncate a log file that is growing too large if you don't have space to compress it or to move it somewhere else? How would you do it? (2 Replies)
Discussion started by: rajaramrnb
2 Replies

7. Linux

Filter log file contents between date

Hi, Could you please provide me command to filter contents between date in a log file? Say for example, in a log file I want to capture contents between date May 01 from 5am to 9 am. OS -- Linux Regards, Maddy (1 Reply)
Discussion started by: Maddy123
1 Replies

8. Shell Programming and Scripting

Outputting Errors to a Log file

Good Morning, Every so often, I have copy scripts that to don't complete, but I don't immediately know why. It usually ends up being a permissions issue or a length issue. The scripts edit a log file, so I'd like to include any copy errors/issues in that file to check if the copies... (4 Replies)
Discussion started by: Stellaman1977
4 Replies

9. Shell Programming and Scripting

Can we filter the below log data into CSV format?

HI , I m looking for help here!!! Can we filter the below log data into CSV format ? timestamp INFO <text > - Some text Drive .. Need a format of separate field such as 1 2 3 4 ... (2 Replies)
Discussion started by: MohSalNiz
2 Replies

10. UNIX for Beginners Questions & Answers

Filter records from a log file based on timestamp

Dear Experts, I have a log file that contains a timestamp, I would like to filter record from that file based on timestamp. For example refer below file - cat sample.txt Jan 19 20:51:48 mukul-Vostro-14-3468 systemd: pam_unix(systemd-user:session): session opened for user root by (uid=0)... (6 Replies)
Discussion started by: mukulverma2408
6 Replies
SPAMALYZE(1p)						User Contributed Perl Documentation					     SPAMALYZE(1p)

NAME
spamalyze - Apply multiple Realtime Blackhole Lists to all messages in an mbox SYNOPSIS
spamalyze myspam.mbox spamalyze goodstuff.mbox tail -3000 some.mbox | spamalzse DESCRIPTION
Spamalyze reads in an mbox file containing multiple mail messages and looks up the originating server of each message on multiple Realtime Blackhole Lists. Spamalyze uses Net::RBLClient. Spamalyze lets you find out what the impact would be of filtering via various RBL's. The output report contains two sections. The first section has one line per email message, showing: * Sending IP address * Sending hostname if any * Whether the IP is on a small list of possibly spammish netblocks * A list of letters representing RBL's which returned responses for this IP address The second section contains one line for each of the top RBL's. That is, the RBL's which produced the most hits. The RBL's are listed in decreasing order of hits. Each line contains: * The letter assigned to the RBL - "A" is the one with the most hits * The domain name of the RBL * The number of hits from the RBL OPTIONS
No options. SEE ALSO
Net::RBLClient(3) AUTHOR
Asher Blum <asher@wildspark.com> COPYRIGHT
Copyright (C) 2004 Asher Blum. All rights reserved. This code is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.8.8 2008-03-04 SPAMALYZE(1p)
All times are GMT -4. The time now is 11:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy