1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
See how to configure and compile pmacct for SQLite use in the "Configuring
pmacct for compilation and installing" chapter of QUICKSTART.
To create the database and the table you have to execute the following scripts.
Remember that SQLite - unlike MySQL and PostgreSQL - does not endorse concepts
of authentication (username and password couple) and permissions which are
embedded into the filesystem instead. The database filename '/tmp/pmacct.db'
is just a trivial example: you are free to build the database wherever fits
better for you on the system (e.g., to follow a partitioning scheme, impose
specific permissions, etc.).
- To create v1 tables:
* sqlite3 /tmp/pmacct.db < pmacct-create-table.sqlite3
- To use v1 tables:
* data will be available in 'acct' table of 'pmacct' DB.
* Add 'sql_table_version: 1' line to your configuration.
Similarly, v2 to v9 tables:
- To create v2 tables:
* sqlite3 /tmp/pmacct.db < pmacct-create-table_v2.sqlite3
- To use v2 tables:
* data will be available in 'acct_v2' table of 'pmacct' DB.
* Add 'sql_table_version: 2' line to your configuration.
[ ... ]
- To create v9 tables:
* sqlite3 /tmp/pmacct.db < pmacct-create-table_v9.sqlite3
- To use v9 tables:
* data will be available in 'acct_v9' table of 'pmacct' DB.
* Add 'sql_table_version: 7' line to your configuration.
Similarly, BGP tables:
- To create BGP v1 tables:
* sqlite3 /tmp/pmacct.db < pmacct-create-table_bgp_v1.sqlite3
- To use BGP v1 tables:
* data will be available in 'acct_bgp' table of 'pmacct' DB.
* Add 'sql_table_version: 1' line to your configuration.
* Add 'sql_table_type: bgp' line to your configuration.
- To understand difference between the various table versions:
* Do you need any of the BGP primitives ? Then look the next section.
* Do you need tags for traffic tagging ? Then you have to use v9.
* Do you need TCP flags ? Then you have to use v7.
* Do you need both IP addresses and AS numbers in the same table ? Then you have to use v6.
* Do you need packet classification ? Then you have to use v5.
* Do you need flows (other than packets) accounting ? Then you have to use v4.
* Do you need ToS/DSCP field (QoS) accounting ? Then you have to use v3.
* Do you need VLAN traffic accounting ? Then you have to use v2.
* If all of the above points sound useless, then use v1.
* v8 changes field names so to bring all supported databases to the same naming convention.
- To understand difference between the various BGP table versions:
* Only BGP table v1 is currently available.
- Aggregation primitives to SQL schema mapping. Although default schemas
come all with "NOT NULL", this is optional and depending on the scenario:
for example, if mixed L2 (containing L2 only info) and L3 (containing L2
and L3 info) flows are collected, maybe L3-related fields like src_host
or dst_host are best defined without the "NOT NULL" constraint.
Aggregation primitive => SQL table field
* tag => agent_id (INT(8) NOT NULL DEFAULT 0)
- or tag => tag (INT(8) NOT NULL DEFAULT 0, if sql_table_version >= 9)
* tag2 => tag2 (INT(8) NOT NULL DEFAULT 0, see README.tag2)
* label => label (VARCHAR(255) NOT NULL DEFAULT ' ', see README.label)
* src_as => as_src (INT(8) NOT NULL DEFAULT 0)
- src_as => ip_src (INT(8) NOT NULL DEFAULT 0, if sql_table_version < 6)
* dst_as => as_dst (INT(8) NOT NULL DEFAULT 0)
- dst_as => ip_dst (INT(8) NOT NULL DEFAULT 0, if sql_table_version < 6)
* peer_src_as => peer_as_src (INT(8) NOT NULL DEFAULT 0)
* peer_dst_as => peer_as_dst (INT(8) NOT NULL DEFAULT 0)
* peer_src_ip => peer_ip_src (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* peer_dst_ip => peer_ip_dst (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* mpls_vpn_rd => mpls_vpn_rd (CHAR(18) NOT NULL DEFAULT ' ')
* std_comm => comms (CHAR(24) NOT NULL DEFAULT ' ')
* ext_comm => ecomms (CHAR(24) NOT NULL DEFAULT ' ')
* lrg_comm => lcomms (CHAR(24) NOT NULL DEFAULT ' ')
* as_path => as_path (CHAR(21) NOT NULL DEFAULT ' ')
* local_pref => local_pref (INT(8) NOT NULL DEFAULT 0)
* med => med (INT(8) NOT NULL DEFAULT 0)
* dst_roa => roa_dst (CHAR(1) NOT NULL DEFAULT ' ')
* src_std_comm => comms_src (CHAR(24) NOT NULL DEFAULT ' ')
* src_ext_comm => ecomms_src (CHAR(24) NOT NULL DEFAULT ' ')
* src_lrg_comm => lcomms_src (CHAR(24) NOT NULL DEFAULT ' ')
* src_as_path => as_path_src (CHAR(21) NOT NULL DEFAULT ' ')
* src_local_pref => local_pref_src (INT(8) NOT NULL DEFAULT 0)
* src_med => med_src (INT(8) NOT NULL DEFAULT 0)
* src_roa => roa_src (CHAR(1) NOT NULL DEFAULT ' ')
* in_iface => iface_in (INT(8) NOT NULL DEFAULT 0, see README.iface)
* out_iface => iface_out (INT(8) NOT NULL DEFAULT 0, see README.iface)
* src_mask => mask_src (INT(2) NOT NULL DEFAULT 0, see README.mask)
* dst_mask => mask_dst (INT(2) NOT NULL DEFAULT 0, see README.mask)
* cos => cos (INT(2) NOT NULL DEFAULT 0, see README.cos)
* etype => etype (CHAR(5) NOT NULL DEFAULT ' ', see README.etype)
* src_host_country => country_ip_src (CHAR(2) NOT NULL DEFAULT '--', see README.GeoIP)
* dst_host_country => country_ip_dst (CHAR(2) NOT NULL DEFAULT '--', see README.GeoIP)
* src_host_pocode => pocode_ip_src (CHAR(12) NOT NULL DEFAULT ' ', see README.GeoIP)
* dst_host_pocode => pocode_ip_dst (CHAR(12) NOT NULL DEFAULT ' ', see README.GeoIP)
* src_host_coords => lat_ip_src (REAL NOT NULL DEFAULT 0, see README.GeoIP)
* src_host_coords => lon_ip_src (REAL NOT NULL DEFAULT 0, see README.GeoIP)
* dst_host_coords => lat_ip_dst (REAL NOT NULL DEFAULT 0, see README.GeoIP)
* dst_host_coords => lon_ip_dst (REAL NOT NULL DEFAULT 0, see README.GeoIP)
* sampling_rate => sampling_rate (INT(8) NOT NULL DEFAULT 0, see README.sampling)
* sampling_direction => sampling_direction (CHAR(1) NOT NULL DEFAULT ' ', see README.sampling)
* class => class_id (CHAR(16) NOT NOT NULL DEFAULT ' ')
* src_mac => mac_src (CHAR(17) NOT NULL DEFAULT '0:0:0:0:0:0')
* dst_mac => mac_dst (CHAR(17) NOT NULL DEFAULT '0:0:0:0:0:0')
* vlan => vlan (INT(4) NOT NULL DEFAULT 0)
* in_vlan => vlan_in (INT(4) NOT NULL DEFAULT 0)
* out_vlan => vlan_out (INT(4) NOT NULL DEFAULT 0)
* src_as => as_src (INT(8) NOT NULL DEFAULT 0)
* dst_as => as_dst (INT(8) NOT NULL DEFAULT 0)
* src_host => ip_src (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* src_net => net_src (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* dst_net => net_dst (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* src_port => src_port (INT(4) NOT NULL DEFAULT 0)
- or src_port => port_src (INT(4) NOT NULL DEFAULT 0, if sql_table_version >= 8 or sql_table_type == bgp)
* dst_port => dst_port (INT(4) NOT NULL DEFAULT 0)
- or dst_port => port_dst (INT(4) NOT NULL DEFAULT 0, if sql_table_version >= 8 or sql_table_type == bgp
* tcpflags => tcp_flags (INT(2) NOT NULL DEFAULT 0)
* proto => ip_proto (CHAR(6) NOT NULL DEFAULT ' ')
- or (INT(2) DEFAULT 0, if sql_num_protos: true)
* tos => tos (INT(4) NOT NULL DEFAULT 0)
* post_nat_src_host => post_nat_ip_src (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* post_nat_dst_host => post_nat_ip_dst (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* post_nat_src_port => post_nat_port_src (INT(4) NOT NULL DEFAULT 0)
* post_nat_dst_port => post_nat_port_dst (INT(4) NOT NULL DEFAULT 0)
* nat_event => nat_event (INT(2) NOT NULL DEFAULT 0)
* fwd_status => fwd_status (INT(2) NOT NULL DEFAULT 0)
- or (VARCHAR(50) NOT NULL DEFAULT ' ', if fwd_status_encode_as_string: true)
* mpls_label_top => mpls_label_top (INT(4) NOT NULL DEFAULT 0)
* mpls_label_bottom => mpls_label_bottom (INT(4) NOT NULL DEFAULT 0)
* mpls_label_stack => mpls_label_stack (VARCHAR(255) NOT NULL DEFAULT ' ')
* tunnel_src_mac => tunnel_mac_src (CHAR(17) NOT NULL DEFAULT '0:0:0:0:0:0')
* tunnel_dst_mac => tunnel_mac_dst (CHAR(17) NOT NULL DEFAULT '0:0:0:0:0:0')
* tunnel_src_host => tunnel_ip_src (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* tunnel_dst_host => tunnel_ip_dst (CHAR(45) NOT NULL DEFAULT '0.0.0.0')
- or (INT(32) DEFAULT 0, if sql_num_hosts: true)
* tunnel_proto => tunnel_ip_proto (CHAR(6) NOT NULL DEFAULT ' ')
- or (INT(2) DEFAULT 0, if sql_num_protos: true)
* tunnel_tos => tunnel_tos (INT(4) NOT NULL DEFAULT 0)
* tunnel_src_port => tunnel_port_src (INT(4) NOT NULL DEFAULT 0)
* tunnel_dst_port => tunnel_port_dst (INT(4) NOT NULL DEFAULT 0)
* tunnel_tcpflags => tunnel_tcp_flags (INT(2) NOT NULL DEFAULT 0)
* timestamp_start => timestamp_start, timestamp_start_residual:
- timestamp_start DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', see README.timestamp)
- timestamp_start_residual INT NOT NULL DEFAULT 0, see README.timestamp)
* timestamp_end => timestamp_end, timestamp_end_residual:
- timestamp_end DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', see README.timestamp)
- timestamp_end_residual INT NOT NULL DEFAULT 0, see README.timestamp)
* timestamp_arrival => timestamp_arrival, timestamp_arrival_residual:
- timestamp_arrival DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', see README.timestamp)
- timestamp_arrival_residual INT NOT NULL DEFAULT 0, see README.timestamp)
* timestamp_min => timestamp_min, timestamp_min_residual:
- timestamp_min DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', see README.timestamp)
- timestamp_min_residual INT NOT NULL DEFAULT 0, see README.timestamp)
* timestamp_max => timestamp_max, timestamp_max_residual:
- timestamp_max DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', see README.timestamp)
- timestamp_max_residual INT NOT NULL DEFAULT 0, see README.timestamp)
* export_proto_seqno => export_proto_seqno (INT(4) NOT NULL DEFAULT 0, see README.export_proto)
* export_proto_version => export_proto_version (INT(2) NOT NULL DEFAULT 0, see README.export_proto)
* export_proto_sysid => export_proto_sysid (INT(4) NOT NULL DEFAULT 0, see README.export_proto)
- 'packets' and 'bytes' counters need to be defined as part of the SQL schema
whenever traffic flows are being accounted for; they are not required, and
are zeroed, if accounting for events, ie. using Cisco NEL; 'stamp_inserted'
and 'stamp_updated' time references are mandatory only if temporal aggregation
(sql_history) is enabled:
* packets (INT(8) NOT NULL DEFAULT 0)
* bytes (INT(8) NOT NULL DEFAULT 0)
* stamp_inserted (DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00')
- or (stamp_inserted INT(8) NOT NULL DEFAULT 0, if timestamps_since_epoch: true)
* stamp_updated (DATETIME)
- or (stamp_updated INT(8) DEFAULT 0, if timestamps_since_epoch: true)
- For custom-defined primitives refer to the README.custom_primitives doc.
NOTE: mind to specify EVERYTIME which SQL table version you
intend to adhere to by using the following config directives:
* sql_table_version: [ 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 ]
* sql_table_type: [ bgp ]
NOTE: specifying a non-documented SQL table profile will result
in an non-determined behaviour. Unless this will create crashes
to the application, such situations will not be supported.
|