cisco_net_flow_flowtools_export = { # Cisco NetFlow # The name of the log format log.format.format_label = "Cisco NetFlow (FlowTools ASCII Export)" log.miscellaneous.log_data_type = "firewall" log.miscellaneous.log_format_type = "network_device" # The log is in this format if any of the first ten lines match this regular expression log.format.autodetect_regular_expression = "^Start[ ]+End[ ]+Sif[ ]+SrcIPaddress[ ]+SrcP[ ]+DIf[ ]+DstIPaddress[ ]+DstP[ ]+P[ ]+Fl[ ]+Pkts[ ]+Octets" # The regular expression to parse lines log.format.parsing_regular_expression = "^([0-9]+)\.([0-9:]+)\.[0-9]+[ ]+([0-9]+)\.([0-9:]+)\.[0-9]+[ ]+([0-9]+)[ ]+([0-9.]+)[ ]+([0-9]+)[ ]+([0-9]+)[ ]+([0-9.]+)[ ]+([0-9]+)[ ]+([0-9]+)[ ]+([0-9]+)[ ]+([0-9]+)[ ]+([0-9]+)" # The format of dates and times in this log log.format.date_format = "mmdd" log.format.time_format = "auto" # Log fields log.fields = { date.type = "date" time.type = "time" end_date = "" end_time = "" source_interface = "" source_ip.type = "host" source_port = "" destination_interface = "" destination_ip = "" destination_port = "" protocol = "" flow = "" packets = "" octets = "" } # log.fields # Database fields database.fields = { date_time.suppress_bottom = 3 day_of_week.display_format_type = "day_of_week" hour_of_day.display_format_type = "hour_of_day" source_interface = "" source_ip = "" source_port = "" destination_interface = "" destination_ip = "" destination_port = "" protocol = "" flow = "" } # database.fields # Log Filters log.filters = { mark_entry = { label = '$lang_admin.log_filters.mark_entry_label' comment = '$lang_admin.log_filters.mark_entry_comment' value = 'events = 1;' } # mark_entry } # log.filters database.numerical_fields = { events = { default = true requires_log_field = false type = "int" display_format_type = "integer" entries_field = true } # events unique_source_ips = { type = "unique" display_format_type = "integer" } # unique_source_ips packets = { type = "int" display_format_type = "integer" } # packets octets = { type = "float" display_format_type = "bandwidth" } # octets } # database.numerical_fields create_profile_wizard_options = { date_time_tracking = true host_tracking = true # How the reports should be grouped in the report menu report_groups = { date_time_group = "" source_group = { source_interface = true source_ip = true source_port = true } destination_group = { destination_interface = true destination_ip = true destination_port = true } protocol = true } # report_groups } # create_profile_wizard_options } # cisco_net_flow_flowtools_export