-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ipfix probe: add --rss-goups option to bench.snabb
Also add template config to benchmark interlink setup.
- Loading branch information
Showing
2 changed files
with
49 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/program/ipfix/tests/bench_v4_v6_interlink.conf.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
snabbflow-config { | ||
interface { | ||
device %q; | ||
} | ||
rss { | ||
cpu-pool { %s } | ||
hardware-scaling { rss-groups %d; } | ||
software-scaling { | ||
exporter { name e1; embed false; instances 2;} | ||
} | ||
} | ||
flow-director { | ||
default-class { exporter e1; } | ||
remove-ipv6-extension-headers true; | ||
} | ||
ipfix { | ||
idle-timeout 30; | ||
active-timeout 600; | ||
scan-time 10; | ||
cache-size 8000000; | ||
exporter-ip 10.0.0.1; | ||
collector-pool { name c1; collector { ip 10.0.0.2; port 1234; } } | ||
maps { | ||
pfx4-to-as { file "program/ipfix/tests/maps/pfx4_to_as.csv"; } | ||
pfx6-to-as { file "program/ipfix/tests/maps/pfx6_to_as.csv"; } | ||
vlan-to-ifindex { file "program/ipfix/tests/maps/vlan_to_ifindex"; } | ||
mac-to-as { file "program/ipfix/tests/maps/mac_to_as"; } | ||
} | ||
exporter { | ||
name e1; | ||
template "v4_extended"; | ||
template "v6_extended"; | ||
collector-pool c1; | ||
} | ||
} | ||
} |