Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

racount(1) [debian man page]

RACOUNT(1)						      General Commands Manual							RACOUNT(1)

NAME
racount - count things from an argus(8) data file/stream. COPYRIGHT
Copyright (c) 2000-2003 QoSient. All rights reserved. SYNOPSIS
racount -r argus-file [ra options] DESCRIPTION
Racount reads argus data from an argus-file list, and prints out various counts from the data in the file. OPTIONS
Racount, like all ra based clients, supports a number of ra options including filtering of input argus records through a terminating filter expression. See ra(1) for a complete description of ra options. EXAMPLE INVOCATION
racount -r argus.file racount records total_pkts src_pkts dst_pkts total_bytes src_bytes dst_bytes sum 279 1112 661 451 165567 94561 71006 racount -ar argus.file racount records total_pkts src_pkts dst_pkts total_bytes src_bytes dst_bytes tcp 47 777 405 372 119782 66541 53241 udp 135 180 137 43 35987 20466 15521 icmp 18 47 40 7 3318 2814 504 ip 50 50 50 0 3000 3000 0 arp 29 58 29 29 3480 1740 1740 sum 279 1112 661 451 165567 94561 71006 racount -r argus.file - tcp and retrans racount records total_pkts src_pkts dst_pkts total_bytes src_bytes dst_bytes tcp 15 276 141 135 22073 8758 13315 AUTHORS
Carter Bullard (carter@qosient.com). SEE ALSO
ra(1), rarc(5), argus(8) tcpdump(1), 07 November 2000 RACOUNT(1)

Check Out this Related Man Page

RAGATOR(1)						      General Commands Manual							RAGATOR(1)

NAME
ragator - aggregate argus(8) data file entries. COPYRIGHT
Copyright (c) 2000-2003 QoSient. All rights reserved. SYNOPSIS
ragator [-f ragator.conf] [raoptions] DESCRIPTION
Ragator reads argus(8) data from an argus-file, and merges matching argus flow activity records together. In its default mode of options, this effectively converts argus(8) files from detail to non-detail mode, and merges periodic flow report records to a single argus record, thus compressing the argus(8) file to a reduced size. You can modify the aggregation strategy used by ragator to merge records together, by using the -f ragator.conf option. See ragator(5) for a complete description of the format and syntax of the flow model file. OPTIONS
Ragator, like all ra based clients, supports a number of ra options including filtering of input argus records through a terminating filter expression. See ra(1) for a complete description of ra options. AUTHORS
Carter Bullard (carter@qosient.com). SEE ALSO
ragator(5) ra(1), rarc(5), argus(8) tcpdump(1), 21 July 1995 RAGATOR(1)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

getting the average of a list of decimals.

Whats up fellas, I am new here... just wanted to see if anyone knew a way to get an avergage of a list of numbers... I am trying to use bc (number of records in file divided by sum of all records in file) but it is not giving me accurate data. IE: ... (2 Replies)
Discussion started by: djsal
2 Replies

2. Shell Programming and Scripting

Need help with Regular Expressions

Hi, In ksh, I am trying to compare folder names having -141- in it's name. e.g.: 4567-141-8098 should match this expression '*-141-*' but, -141-2354 should fail when compared with '*-141-*' simlarly, abc should fail when compared with '*-141-*' I tried multiple things but nevertheless,... (5 Replies)
Discussion started by: jidsh
5 Replies

3. Shell Programming and Scripting

adding a list of numbers 3 by 3

i have a list of numbers like this; 124 235 764 782 765 451 983 909 ... and i want to make a sum with the first 3 of them then the next 3 and so on. 124+235+764=1123 782+765+451=1998 ... some ideas? (4 Replies)
Discussion started by: Tártaro
4 Replies

4. Shell Programming and Scripting

Change text at a variable position

Hi there script guru's I have an input file /tmp/in.txt of which the data is seperated by a : (example of the data) test1:zz:2000:2000:zzz te:a:2000:3333:bbb testabs:x:2004:3000:cccc I would like to run a scrip (bash) changing the data after the second ":" example Test for the value of... (3 Replies)
Discussion started by: KobusE
3 Replies

5. Shell Programming and Scripting

How to introduce the missing number sequentially?

Dear Help, I have an input file which looks like below 002 1000 2000 3000 003 2000 3000 4000 005 1000 2000 6000 I would like to have an output which inserts the missing number in sequential sorting as shown below... 001 0 0 0 002 1000 2000 3000 003 2000 3000 4000 004 0 0 0 005 1000... (5 Replies)
Discussion started by: Indra2011
5 Replies