root/trunk/src/renetcolParam.h @ 118

Revision 115, 8.0 KB (checked in by andreu, 14 years ago)

ticket#27 continuation

Line 
1/*
2 * File: renetcolParam.h
3 *
4 * Authors: ANDREU Francois-Xavier
5 *
6 * Copyright (C) 2007-2009 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, can be empty
33*/
34#define RECEPTION_ADDRESS ""
35
36/*
37 * your collector port to recept netflow export
38 */ 
39#define RECEPTION_PORT 1111
40
41/*
42 * routers index max + 1 (index of the beginning of the lines, and not number of routers)
43 */
44#define ROUTER_INDEX_MAX 55
45
46/*
47 * FILE with your routers IP address
48*/ 
49#define ROUTERS_LIST "<path to renetcol>/renetcol-0.0.14beta/conf/routers.txt"
50
51/*
52 * FILE with your prefix/subnet
53 */
54#define SUBNETS_LIST "<path to renetcol>/renetcol-0.0.14beta/conf/IPv4_Subnet_Aggregation_based_on_SNMP_index.txt"
55
56/*
57 * FILE with your IPv6 prefixes list
58 */
59#define SUBNETS_V6_LIST "<path to renetcol>/renetcol-0.0.14beta/conf/IPv6_Subnet_Aggregation_based_on_SNMP_index.txt"
60
61/*
62 * FILE with the list of AS with accounting
63 */
64#define AS_LIST "<path to renetcol>/renetcol-0.0.14beta/conf/AS.txt"
65
66/*
67 * constants, here a subnet is include in a prefix
68 */
69#define MAX_IPV4_PREFIX 4000
70#define MAX_IPV4_SUBNET 1000
71#define MAX_AS 3
72#define MAX_IPV6_PREFIX 500
73#define MAX_IPV6_SUBNET 100
74
75/*
76 * FILE for the rules
77 */
78#define RULES_FILE "<path to renetcol>/renetcol-0.0.14beta/conf/rules.txt"
79
80/*
81 * FILE with SNMP index of the interfaces
82 * tagged "C"ustomers or "B"ackbone
83 */
84#define INTERFACES_TYPE_LIST "<path to renetcol>/renetcol-0.0.14beta/conf/SNMP_INDEX.txt"
85
86/*
87 * maximum SNMP index for one router
88 */
89#define MAX_SNMP_INDEX 900
90
91/*
92 * maximum number of interfaces by router (one interface == one SNMP index)
93 */ 
94#define MAX_INDEX_BY_ROUTER 150
95
96/*
97 * RRD files paths
98 */
99#define PREFIX_RRD_LOCATION "/mnt/data/RRD/RENATER/IPv4_SUBNET/"
100#define MATRIX_RRD_LOCATION "/mnt/data/RRD/RENATER/MATRIX/"
101#define AS_RRD_LOCATION "/mnt/data/RRD/RENATER/AS/"
102#define SNMP_INDEX_RRD_LOCATION "/mnt/data/RRD/RENATER/SNMP_INDEX/"
103#define MIB_RRD_LOCATION "/mnt/data/RRD/RENATER/RENETCOL_MIB/"
104
105/*
106 * RRD filenames (static names), location : "MIB_RRD_LOCATION"
107 */
108#define GLOBAL_MIB_RRD_FILE "RENETCOL_GLOBAL_COUNTERS.rrd"
109#define IPV4_MIB_RRD_FILE "RENETCOL_IPV4_MIB.rrd"
110#define IPV6_MIB_RRD_FILE "RENETCOL_IPV6_MIB.rrd"
111#define L4_IPV4_MIB_RRD_FILE "RENETCOL_L4_IPV4_MIB.rrd"
112#define L4_IPV6_MIB_RRD_FILE "RENETCOL_L4_IPV6_MIB.rrd"
113#define FLOWSIZE_IPV4_MIB_RRD_FILE "RENETCOL_FLOWSIZE_IPV4_MIB.rrd"
114#define FLOWSIZE_IPV6_MIB_RRD_FILE "RENETCOL_FLOWSIZE_IPV6_MIB.rrd"
115#define L7_IPV4_MIB_RRD_FILE "RENETCOL_L7_IPV4_MIB.rrd"
116#define L7_IPV6_MIB_RRD_FILE "RENETCOL_L7_IPV6_MIB.rrd"
117
118/*
119 * Your CoS - DSCP field in decimal notation, EF PHB 101110 (46) == ToS 10111000 (184)
120 */
121#define FIRST_CoS 46  /* EF, Premium - dec 46, bin 101110 - ToS 10111000 */
122#define SECOND_CoS 34 /* AF41, Best than BE - dec 34, bin 100010 - ToS 10001000*/
123#define THIRD_CoS 8   /* CS1, Less than BE - dec 8, bin 001000 - 00100000 */
124#define FOURTH_CoS 0  /* Best Effort or All flows if not in the 3 others class */
125
126/****************************************************************
127 * the following parameters CAN be changed but it's NOT REQUIRED
128 ***************************************************************/
129#define STEP 5
130#define FIELD_TYPE_NUMBER 216
131#define MAX_RULES_PER_FIELD 100
132#define SHMSIZE 33554432
133#define SOCKET_BUFFER_SIZE 1500
134#define TIME_OUT 300
135#define RRD_EXTENSION ".rrd"
136#define RRD_PARAM_PREFIX_0 "rrdcreate"
137#define RRD_PARAM_PREFIX_1 "--start"
138#define RRD_PARAM_PREFIX_2 "1106560200"
139#define RRD_PARAM_PREFIX_3 "--step"
140#define RRD_PARAM_PREFIX_4 "300"
141#define RRD_PARAM_PREFIX_5 "DS:inFlows:GAUGE:600:U:U"
142#define RRD_PARAM_PREFIX_6 "DS:outFlows:GAUGE:600:U:U"
143#define RRD_PARAM_PREFIX_7 "DS:inBytes:GAUGE:600:U:U"
144#define RRD_PARAM_PREFIX_8 "DS:outBytes:GAUGE:600:U:U"
145#define RRD_PARAM_PREFIX_9 "DS:inPkts:GAUGE:600:U:U"
146#define RRD_PARAM_PREFIX_10 "DS:outPkts:GAUGE:600:U:U"
147#define RRD_PARAM_PREFIX_11 "DS:inFirstCoS:GAUGE:600:U:U"
148#define RRD_PARAM_PREFIX_12 "DS:outFirstCoS:GAUGE:600:U:U"
149#define RRD_PARAM_PREFIX_13 "DS:inSecondCoS:GAUGE:600:U:U"
150#define RRD_PARAM_PREFIX_14 "DS:outSecondCoS:GAUGE:600:U:U"
151#define RRD_PARAM_PREFIX_15 "DS:inThirdCoS:GAUGE:600:U:U"
152#define RRD_PARAM_PREFIX_16 "DS:outThirdCoS:GAUGE:600:U:U"
153#define RRD_PARAM_PREFIX_17 "DS:inFourthCoS:GAUGE:600:U:U"
154#define RRD_PARAM_PREFIX_18 "DS:outFourthCoS:GAUGE:600:U:U"
155#define RRD_PARAM_PREFIX_19 "RRA:AVERAGE:0.5:1:2100"
156#define RRD_PARAM_PREFIX_20 "RRA:AVERAGE:0.5:24:1550"
157#define RRD_PARAM_PREFIX_21 "RRA:AVERAGE:0.5:288:1594"
158#define RRD_PARAM_PREFIX_22 "RRA:AVERAGE:0.5:2016:1040"
159#define RRD_PARAM_PREFIX_23 "RRA:MAX:0.5:1:2100"
160#define RRD_PARAM_PREFIX_24 "RRA:MAX:0.5:24:1550"
161#define RRD_PARAM_PREFIX_25 "RRA:MAX:0.5:288:1594"
162#define RRD_PARAM_MATRIX_0 "rrdcreate"
163#define RRD_PARAM_MATRIX_1 "--start"
164#define RRD_PARAM_MATRIX_2 "1106560200"
165#define RRD_PARAM_MATRIX_3 "--step"
166#define RRD_PARAM_MATRIX_4 "300"
167#define RRD_PARAM_MATRIX_5 "DS:Flows:GAUGE:600:U:U"
168#define RRD_PARAM_MATRIX_6 "DS:Bytes:GAUGE:600:U:U"
169#define RRD_PARAM_MATRIX_7 "DS:Pkts:GAUGE:600:U:U"
170#define RRD_PARAM_MATRIX_8 "RRA:AVERAGE:0.5:1:2100"
171#define RRD_PARAM_MATRIX_9 "RRA:AVERAGE:0.5:24:1550"
172#define RRD_PARAM_MATRIX_10 "RRA:AVERAGE:0.5:288:1594"
173#define RRD_PARAM_MATRIX_11 "RRA:AVERAGE:0.5:2016:1040"
174#define RRD_PARAM_MATRIX_12 "RRA:MAX:0.5:1:2100"
175#define RRD_PARAM_MATRIX_13 "RRA:MAX:0.5:24:1550"
176#define RRD_PARAM_MATRIX_14 "RRA:MAX:0.5:288:1594"
177#define RRD_PARAM_AS_0 "rrdcreate"
178#define RRD_PARAM_AS_1 "--start"
179#define RRD_PARAM_AS_2 "1106560200"
180#define RRD_PARAM_AS_3 "--step"
181#define RRD_PARAM_AS_4 "300"
182#define RRD_PARAM_AS_5 "DS:inFlows:GAUGE:600:U:U"
183#define RRD_PARAM_AS_6 "DS:outFlows:GAUGE:600:U:U"
184#define RRD_PARAM_AS_7 "DS:inBytes:GAUGE:600:U:U"
185#define RRD_PARAM_AS_8 "DS:outBytes:GAUGE:600:U:U"
186#define RRD_PARAM_AS_9 "DS:inPkts:GAUGE:600:U:U"
187#define RRD_PARAM_AS_10 "DS:outPkts:GAUGE:600:U:U"
188#define RRD_PARAM_AS_11 "RRA:AVERAGE:0.5:1:2100"
189#define RRD_PARAM_AS_12 "RRA:AVERAGE:0.5:24:1550"
190#define RRD_PARAM_AS_13 "RRA:AVERAGE:0.5:288:1594"
191#define RRD_PARAM_AS_14 "RRA:AVERAGE:0.5:2016:1040"
192#define RRD_PARAM_AS_15 "RRA:MAX:0.5:1:2100"
193#define RRD_PARAM_AS_16 "RRA:MAX:0.5:24:1550"
194#define RRD_PARAM_AS_17 "RRA:MAX:0.5:288:1594"
195#define RRD_PARAM_INDEX_0 "rrdcreate"
196#define RRD_PARAM_INDEX_1 "--start"
197#define RRD_PARAM_INDEX_2 "1106560200"
198#define RRD_PARAM_INDEX_3 "--step"
199#define RRD_PARAM_INDEX_4 "300"
200#define RRD_PARAM_INDEX_5 "DS:inFlows:GAUGE:600:U:U"
201#define RRD_PARAM_INDEX_6 "DS:outFlows:GAUGE:600:U:U"
202#define RRD_PARAM_INDEX_7 "DS:inBytes:GAUGE:600:U:U"
203#define RRD_PARAM_INDEX_8 "DS:outBytes:GAUGE:600:U:U"
204#define RRD_PARAM_INDEX_9 "DS:inPkts:GAUGE:600:U:U"
205#define RRD_PARAM_INDEX_10 "DS:outPkts:GAUGE:600:U:U"
206#define RRD_PARAM_INDEX_11 "RRA:AVERAGE:0.5:1:2100"
207#define RRD_PARAM_INDEX_12 "RRA:AVERAGE:0.5:24:1550"
208#define RRD_PARAM_INDEX_13 "RRA:AVERAGE:0.5:288:1594"
209#define RRD_PARAM_INDEX_14 "RRA:AVERAGE:0.5:2016:1040"
210#define RRD_PARAM_INDEX_15 "RRA:MAX:0.5:1:2100"
211#define RRD_PARAM_INDEX_16 "RRA:MAX:0.5:24:1550"
212#define RRD_PARAM_INDEX_17 "RRA:MAX:0.5:288:1594"
213#define RRD_UPDATE_0 "rrdupdate"
214#define RECEPT_PORT "52571"
215#define VAR_SHARED_SIZE 4
216#define FILE_TEMPO "/tmp/rules.tmp"
217
218#endif /* RENETCOLPARAM_H */
Note: See TracBrowser for help on using the browser.