summaryrefslogtreecommitdiff
path: root/pmacct/sbSetupCustom.mysql
diff options
context:
space:
mode:
authorDaniel Langesten <daniel.langest@gmail.com>2015-03-13 13:15:55 +0100
committerDaniel Langesten <daniel.langest@gmail.com>2015-03-13 13:15:55 +0100
commit4b16059c4e7f3735c016d4f47c9f87371bf22d8e (patch)
tree5892e2daab0dcefb47a9f1398523159a53e5b1ed /pmacct/sbSetupCustom.mysql
parent114328feccb6ce3dbd16219fc456a34d00f72ec6 (diff)
added config files for pmacct
Diffstat (limited to 'pmacct/sbSetupCustom.mysql')
-rw-r--r--pmacct/sbSetupCustom.mysql16
1 files changed, 16 insertions, 0 deletions
diff --git a/pmacct/sbSetupCustom.mysql b/pmacct/sbSetupCustom.mysql
new file mode 100644
index 0000000..dafc638
--- /dev/null
+++ b/pmacct/sbSetupCustom.mysql
@@ -0,0 +1,16 @@
+drop database if exists pmacct;
+create database pmacct;
+use pmacct;
+
+drop table is exists acct;
+create table acct (
+ ip_src CHAR(15) NOT NULL,
+ ip_dst CHAR(15) NOT NULL,
+ src_port INT(2) UNSIGNED NOT NULL,
+ dst_port INT(2) UNSIGNED NOT NULL,
+ packets INT UNSIGNED NOT NULL,
+ bytes BIGINT UNSIGNED NOT NULL,
+ stamp_inserted DATETIME NOT NULL,
+ stamp_updated DATETIME,
+ PRIMARY KEY (ip_src, ip_dst, src_port, dst_port, stamp_inserted)
+);