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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
See how to configure and compile pmacct for PostgreSQL use in the "Configuring
pmacct for compilation and installing" chapter of QUICKSTART.
To create the database and grant default permission to the daemon you have to execute
the two scripts below, in the same order; which user has to execute them and how to
autenticate with the PostgreSQL server depends upon your current configuration.
Keep in mind that both scripts need postgres superuser permissions to execute commands
successfully:
shell> cp -p *.pgsql /tmp
shell> su - postgres
- To create v1 tables:
* psql -d template1 -f /tmp/pmacct-create-db.pgsql
* psql -d pmacct -f /tmp/pmacct-create-table_v1.pgsql
- To use v1 tables:
* data will be available in 'acct' table of 'pmacct' DB.
* Add 'sql_table_version: 1' line to your configuration.
- To create v2 tables:
* psql -d template1 -f /tmp/pmacct-create-db.pgsql
* psql -d pmacct -f /tmp/pmacct-create-table_v2.pgsql
- 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 v7 or v8 tables:
* psql -d template1 -f /tmp/pmacct-create-db.pgsql
* psql -d pmacct -f /tmp/pmacct-create-table_v7_v8.pgsql
- To use v7 or v8 tables:
* data will be available in 'acct_v7' table of 'pmacct' DB.
* Add 'sql_table_version: 7' line to your configuration.
Similarly, BGP tables:
- To create BGP v1 tables:
* psql -d template1 -f /tmp/pmacct-create-db.pgsql
* psql -d pmacct -f /tmp/pmacct-create-table_bgp_v1.pgsql
- 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.
Until SQL table schemas v5 a few tables are created in the 'pmacct' database:
'acct' (or 'acct_vN') table is the default table where data will be written
when in 'typed' mode (see 'sql_data' option in CONFIG-KEYS text file; default
value is 'typed'); 'acct_uni' (or 'acct_uni_vN') is the default table where
data will be written when in 'unified' mode. Starting with v6 unified schemas
are no longer supplied as part of the PostgreSQL table creation script.
- 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 (BIGINT NOT NULL DEFAULT 0)
- or tag => tag (BIGINT NOT NULL DEFAULT 0, if sql_table_version >= 9)
* tag2 => tag2 (BIGINT NOT NULL DEFAULT 0, see README.tag2)
* label => label (VARCHAR(255) NOT NULL DEFAULT ' ', see README.label)
* src_as => as_src (BIGINT NOT NULL DEFAULT 0)
- or src_as => ip_src (BIGINT NOT NULL DEFAULT 0, if sql_table_version < 6)
* dst_as => as_dst (BIGINT NOT NULL DEFAULT 0)
- or dst_as => ip_dst (BIGINT NOT NULL DEFAULT 0, if sql_table_version < 6)
* peer_src_as => peer_as_src (BIGINT NOT NULL DEFAULT 0)
* peer_dst_as => peer_as_dst (BIGINT NOT NULL DEFAULT 0)
* peer_src_ip => peer_ip_src (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* peer_dst_ip => peer_ip_dst (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* 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 (BIGINT NOT NULL DEFAULT 0)
* med => med (BIGINT 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 (BIGINT NOT NULL DEFAULT 0)
* src_med => med_src (BIGINT NOT NULL DEFAULT 0)
* src_roa => roa_src (CHAR(1) NOT NULL DEFAULT ' ')
* in_iface => iface_in (BIGINT NOT NULL DEFAULT 0, see README.iface)
* out_iface => iface_out (BIGINT NOT NULL DEFAULT 0, see README.iface)
* src_mask => mask_src (SMALLINT NOT NULL DEFAULT 0, see README.mask)
* dst_mask => mask_dst (SMALLINT NOT NULL DEFAULT 0, see README.mask)
* cos => cos (SMALLINT 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 (BIGINT 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 (macaddr NOT NULL DEFAULT '0:0:0:0:0:0')
* dst_mac => mac_dst (macaddr NOT NULL DEFAULT '0:0:0:0:0:0')
* vlan => vlan (INT NOT NULL DEFAULT 0)
* in_vlan => vlan_in (INT NOT NULL DEFAULT 0)
* out_vlan => vlan_out (INT NOT NULL DEFAULT 0)
* src_as => as_src (BIGINT NOT NULL DEFAULT 0)
* dst_as => as_dst (BIGINT NOT NULL DEFAULT 0)
* src_host => ip_src (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* dst_host => ip_dst (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* src_net => net_src (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* dst_net => net_dst (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* src_port => port_src (INT NOT NULL DEFAULT 0)
* dst_port => port_dst (INT NOT NULL DEFAULT 0)
* tcpflags => tcp_flags (SMALLINT NOT NULL DEFAULT 0)
* proto => ip_proto (SMALLINT NOT NULL DEFAULT 0)
* tos => tos (INT NOT NULL DEFAULT 0)
* post_nat_src_host => post_nat_ip_src (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* post_nat_dst_host => post_nat_ip_dst (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* post_nat_src_port => post_nat_port_src (INT NOT NULL DEFAULT 0)
* post_nat_dst_port => post_nat_port_dst (INT NOT NULL DEFAULT 0)
* nat_event => nat_event (INT NOT NULL DEFAULT 0)
* fwd_status => fwd_status (INT NOT NULL DEFAULT 0)
- or (VARCHAR(50) NOT NULL DEFAULT ' ', if fwd_status_encode_as_string: true)
* mpls_label_top => mpls_label_top (INT NOT NULL DEFAULT 0)
* mpls_label_bottom => mpls_label_bottom (INT NOT NULL DEFAULT 0)
* mpls_label_stack => mpls_label_stack (VARCHAR(255) NOT NULL DEFAULT ' ')
* tunnel_src_mac => tunnel_mac_src (macaddr NOT NULL DEFAULT '0:0:0:0:0:0')
* tunnel_dst_mac => tunnel_mac_dst (macaddr NOT NULL DEFAULT '0:0:0:0:0:0')
* tunnel_src_host => tunnel_ip_src (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* tunnel_dst_host => tunnel_ip_dst (inet NOT NULL DEFAULT '0.0.0.0', see README.IPv6)
* tunnel_proto => tunnel_ip_proto (SMALLINT NOT NULL DEFAULT 0)
* tunnel_tos => tunnel_tos (INT NOT NULL DEFAULT 0)
* tunnel_src_port => tunnel_port_src (INT NOT NULL DEFAULT 0)
* tunnel_dst_port => tunnel_port_dst (INT NOT NULL DEFAULT 0)
* tunnel_tcpflags => tunnel_tcp_flags (SMALLINT NOT NULL DEFAULT 0)
* timestamp_start => timestamp_start, timestamp_start_residual:
- timestamp_start timestamp without time zone NOT NULL DEFAULT '0000-01-01 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 timestamp without time zone NOT NULL DEFAULT '0000-01-01 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 timestamp without time zone NOT NULL DEFAULT '0000-01-01 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 timestamp without time zone NOT NULL DEFAULT '0000-01-01 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 timestamp without time zone NOT NULL DEFAULT '0000-01-01 00:00:00', see README.timestamp)
- timestamp_max_residual INT NOT NULL DEFAULT 0, see README.timestamp)
* export_proto_seqno => export_proto_seqno (INT NOT NULL DEFAULT 0, see README.export_proto)
* export_proto_version => export_proto_version (SMALLINT NOT NULL DEFAULT 0, see README.export_proto)
* export_proto_sysid => export_proto_sysid (INT NOT NULL DEFAULT 0, see README.export_proto)
- If not using COPY statements (sql_use_copy, sql_dont_try_update both enabled)
'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; if instead COPY
is in use, 'packets' and 'bytes' counters are mandatory. 'stamp_inserted' and
'stamp_updated' time references are mandatory only if temporal aggregation
(sql_history) is enabled:
* packets (INT NOT NULL)
- or (packets BIGINT NOT NULL)
* flows (INT NOT NULL)
- or (flows BIGINT NOT NULL)
* bytes (BIGINT NOT NULL)
* stamp_inserted (timestamp without time zone NOT NULL DEFAULT '0000-01-01 00:00:00')
or (stamp_inserted bigint NOT NULL DEFAULT 0, if timestamps_since_epoch: true)
* stamp_updated (timestamp without time zone)
or (stamp_updated bigint DEFAULT 0, if timestamps_since_epoch: true)
- For custom-defined primitives refer to the README.custom_primitives doc.
- What is the difference between 'typed' and 'unified' modes ?
Read this section only if using a table schema v5 or below and does not apply to BGP table
schemas. The 'unified' table has IP addresses and MAC addresses specified as standard CHAR
strings, slower but flexible; 'typed' tables feature PostgreSQL own types (inet, mac, etc.),
faster but rigid. When not specifying your own 'sql_table', this switch instructs the plugin
which tables has to use, default being 'typed'. Since v6 this is all deprecated but default
typed schemas, the only still supplied as part of the PostgreSQL table creation script, can
still be customized transparently to pmacct.
- What is the 'proto' table ?
The auxiliar 'proto' table will be created by default. Its tuples are simply number-string
pairs: the protocol field of both typed and unified tables is numerical. This table helps
in looking up protocol names by their number and viceversa. Because joins are expensive,
'proto' table has been created *only* for your personal reference.
NOTE: certain primitives, ie. BGP attributtes like AS-PATH and communities
(as_path, std_comm, etc.), can get arbitrarily long if not properly scoped
(ie. bgp_aspath_radius, bgp_stdcomm_pattern, etc.) and hence not fit in
default field definitions (ie. CHAR(21) or CHAR(24)). It is possible to
define these as arbitrarily-long variable-length strings using VARCHAR or
TEXT data types. Consult latest PostgreSQL docs for examples and notes
(charset choices, etc.).
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.
|