2 releases
0.2.1 | Nov 14, 2019 |
---|---|
0.2.0 | Nov 14, 2019 |
#9 in #netflow
36KB
788 lines
netflow_v9
A simple parser for the Netflow v9 protocol. It collects the flows and outputs each in a JSON format.
Install
In your Cargo.toml file:
netflow_v9 = { git = "https://github.com/VersBinarii/netflow_v9.git" }
Example
let mut parser = Parser::new();
if let Ok(sets) = parser.parse_netflow_packet(&packet_1) {
for set in sets {
let s = set.to_json();
println!("{}",s);
}
}
Dependencies
~1.6–2.5MB
~52K SLoC