root/trunk/src/renetcolParam.h @ 59

Revision 59, 4.5 KB (checked in by andreu, 15 years ago)

new aggregation method, based on SNMP index. New parameters in renetcolParam.h and new compilation options in configure.in.

Line 
1/*
2 * File: renetcolParam.h
3 *
4 * Authors: ANDREU Francois-Xavier
5 *
6 * Copyright (C) 2007 GIP RENATER
7 */
8
9/*  This file is part of renetcol.
10 *
11 *  renetcol is free software; you can redistribute it and/or modify
12 *  it under the terms of the GNU General Public License as published by
13 *  the Free Software Foundation; either version 2 of the License, or
14 *  (at your option) any later version.
15 *
16 *  renetcol is distributed in the hope that it will be useful,
17 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 *  GNU General Public License for more details.
20 *
21 *  You should have received a copy of the GNU General Public License
22 *  along with renetcol; if not, write to the Free Software
23 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 */
25#ifndef RENETCOLPARAM_H
26#define RENETCOLPARAM_H
27
28/**************************************
29 * Parameters which MUST be changed:
30 **************************************/ 
31/*
32 * your collector address - syntax: 10.0.0.90
33*/
34#define RECEPTION_ADDRESS ""
35/*
36 * your collector port to recept netflow export
37 */ 
38#define RECEPTION_PORT 9999
39/*
40 * routers number + 1
41 */
42#define ROUTER_INDEX_MAX 55
43/*
44 * FILE with your routers IP address
45*/ 
46#define ROUTERS_LIST "/home/andreu/renetcol-0.0.12beta/src/routers.txt"
47/*
48 * FILE with your prefix/subnet
49 */
50#define SUBNETS_LIST "/home/andreu/renetcol-0.0.12beta/src/IPv4_prefix.txt"
51/*
52 * two constants, here a subnet is include in a prefix
53 */
54#define MAX_IPV4_PREFIX 4000
55#define MAX_IPV4_SUBNET 1000
56/*
57 * FILE for the rules
58 */
59#define RULES_FILE "/home/andreu/renetcol-0.0.12beta/src/rules.txt"
60/*
61 * FILE with SNMP index of the interfaces
62 * tagged "C"ustomers or "B"ackbone
63 */
64#define INTERFACES_TYPE_LIST "" 
65/*
66 * maximum SNMP index
67 */
68#define MAX_SNMP_INDEX 900
69/*
70 * Path to the rrd file
71 */
72#define PREFIX_RRD_LOCATION "/mnt/data/RRD/RENATER/IPv4_SUBNET/"
73#define MATRIX_RRD_LOCATION "/mnt/data/RRD/RENATER/MATRIX/"
74
75
76/****************************************************************
77 * the following parameters CAN be changed but it's NOT REQUIRED
78 ***************************************************************/
79#define STEP 5
80#define FIELD_TYPE_NUMBER 89
81#define MAX_RULES_PER_FIELD 10
82#define SHMSIZE 33554432
83#define SOCKET_BUFFER_SIZE 1500
84#define TIME_OUT 300
85#define RRD_EXTENSION ".rrd"
86#define RRD_PARAM_PREFIX_0 "rrdcreate"
87#define RRD_PARAM_PREFIX_1 "--start"
88#define RRD_PARAM_PREFIX_2 "1106560200"
89#define RRD_PARAM_PREFIX_3 "--step"
90#define RRD_PARAM_PREFIX_4 "300"
91#define RRD_PARAM_PREFIX_5 "DS:inFlows:GAUGE:600:U:U"
92#define RRD_PARAM_PREFIX_6 "DS:outFlows:GAUGE:600:U:U"
93#define RRD_PARAM_PREFIX_7 "DS:inBytes:GAUGE:600:U:U"
94#define RRD_PARAM_PREFIX_8 "DS:outBytes:GAUGE:600:U:U"
95#define RRD_PARAM_PREFIX_9 "DS:inPkts:GAUGE:600:U:U"
96#define RRD_PARAM_PREFIX_10 "DS:outPkts:GAUGE:600:U:U"
97#define RRD_PARAM_PREFIX_11 "DS:inFirstCoS:GAUGE:600:U:U"
98#define RRD_PARAM_PREFIX_12 "DS:outFirstCoS:GAUGE:600:U:U"
99#define RRD_PARAM_PREFIX_13 "DS:inSecondCoS:GAUGE:600:U:U"
100#define RRD_PARAM_PREFIX_14 "DS:outSecondCoS:GAUGE:600:U:U"
101#define RRD_PARAM_PREFIX_15 "DS:inThirdCoS:GAUGE:600:U:U"
102#define RRD_PARAM_PREFIX_16 "DS:outThirdCoS:GAUGE:600:U:U"
103#define RRD_PARAM_PREFIX_17 "DS:inFourthCoS:GAUGE:600:U:U"
104#define RRD_PARAM_PREFIX_18 "DS:outFourthCoS:GAUGE:600:U:U"
105#define RRD_PARAM_PREFIX_19 "RRA:AVERAGE:0.5:1:2100"
106#define RRD_PARAM_PREFIX_20 "RRA:AVERAGE:0.5:24:1550"
107#define RRD_PARAM_PREFIX_21 "RRA:AVERAGE:0.5:288:1594"
108#define RRD_PARAM_PREFIX_22 "RRA:AVERAGE:0.5:2016:1040"
109#define RRD_PARAM_PREFIX_23 "RRA:MAX:0.5:1:2100"
110#define RRD_PARAM_PREFIX_24 "RRA:MAX:0.5:24:1550"
111#define RRD_PARAM_PREFIX_25 "RRA:MAX:0.5:288:1594"
112#define RRD_PARAM_MATRIX_0 "rrdcreate"
113#define RRD_PARAM_MATRIX_1 "--start"
114#define RRD_PARAM_MATRIX_2 "1106560200"
115#define RRD_PARAM_MATRIX_3 "--step"
116#define RRD_PARAM_MATRIX_4 "300"
117#define RRD_PARAM_MATRIX_5 "DS:Flows:GAUGE:600:U:U"
118#define RRD_PARAM_MATRIX_6 "DS:Bytes:GAUGE:600:U:U"
119#define RRD_PARAM_MATRIX_7 "DS:Pkts:GAUGE:600:U:U"
120#define RRD_PARAM_MATRIX_8 "RRA:AVERAGE:0.5:1:2100"
121#define RRD_PARAM_MATRIX_9 "RRA:AVERAGE:0.5:24:1550"
122#define RRD_PARAM_MATRIX_10 "RRA:AVERAGE:0.5:288:1594"
123#define RRD_PARAM_MATRIX_11 "RRA:AVERAGE:0.5:2016:1040"
124#define RRD_PARAM_MATRIX_12 "RRA:MAX:0.5:1:2100"
125#define RRD_PARAM_MATRIX_13 "RRA:MAX:0.5:24:1550"
126#define RRD_PARAM_MATRIX_14 "RRA:MAX:0.5:288:1594"
127#define RRD_UPDATE_0 "rrdupdate"
128#define RECEPT_PORT "52571"
129#define VAR_SHARED_SIZE 4
130#define FILE_TEMPO "/tmp/rules.tmp"
131
132#endif /* RENETCOLPARAM_H */
Note: See TracBrowser for help on using the browser.