## ## OSSP flow2rrd -- NetFlow to Round-Robin Database ## Copyright (c) 2004 Ralf S. Engelschall ## Copyright (c) 2004 The OSSP Project ## ## This file is part of OSSP flow2rrd, a tool for storing NetFlow data ## into an RRD which can be found at http://www.ossp.org/pkg/tool/flow2rrd/. ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, ## USA, or contact Ralf S. Engelschall . ## ## flow2rrd.cfg: run-time configuration ## # Round-Robin Database Database @LOCALSTATEDIR@/flow2rrd.rrd { Stepping 1m; Storage 1m:1W 2m:2W 5m:1M 15m:3M 1h:6M 2h:1Y 6h:2Y 12h:4Y; }; # Protocol Definitions Protocol icmp 1; Protocol tcp 6; Protocol udp 17; Protocol vrrp 112; # Service Definitions Service icmp icmp:*; Service vrrp vrrp:*; Service ftp tcp:20 tcp:21; Service ssh tcp:22; Service telnet tcp:23; Service smtp tcp:25; Service dns udp:53 tcp:53; Service tftp udp:69; Service http tcp:80; Service pop3 tcp:110; Service sunrpc udp:111 tcp:111; Service ident tcp:113; Service nntp tcp:119; Service ntp udp:123 tcp:123; Service imap tcp:142 tcp:143; Service snmp udp:161 udp:162; Service ldap tcp:389; Service https tcp:443; Service syslog udp:514; Service uucp tcp:540; Service nntps tcp:563; Service ldaps tcp:636; Service rsync tcp:873; Service ftps tcp:989 tcp:990; Service imaps tcp:993; Service pop3s tcp:995; Service radius udp:1645 udp:1646 udp:1812 udp:1813; Service irc tcp:194 tcp:6665 tcp:6666 tcp:6667 tcp:6668 tcp:6669; # Host Definitions Host host1.example.com { Target host1.example.com { Network 192.168.0.1/32; Service icmp vrrp dns ntp ssh smtp; }; Target service1.example.com { Network 10.0.0.1/32 10.0.0.2/32; Service dns smtp uucp; }; Target service2.example.com { Network 10.0.0.3/32; Service dns smtp; }; }; Host host2.example.com { Target host2.example.com { Network 192.168.0.2/32; Service icmp vrrp dns ntp ssh smtp; }; Target service3.example.com { Network 10.0.0.4/32 10.0.0.5/32; Service dns smtp uucp; }; Target service4.example.com { Network 10.0.0.6/32; Service dns smtp; }; }; # Color Themes Colors colorful 666699 9999cc cc3333; Colors grey f0f0f0 -101010(15); Colors red cc3333 -101010(3) 000000; Colors green ccffcc -333333(3) 000000; Colors blue ccccff -333333(3) 000000;