yaml: default to cluster_flow type for AF_PACKET and PF_RING

pull/129/merge
Victor Julien 13 years ago
parent 72782e5a6a
commit bb14cf899b

@ -224,7 +224,7 @@ af-packet:
# * cluster_round_robin: round robin load balancing
# * cluster_flow: all packets of a given flow are send to the same socket
# * cluster_cpu: all packets treated in kernel by a CPU are send to the same socket
cluster-type: cluster_round_robin
cluster-type: cluster_flow
# In some fragmentation case, the hash can not be computed. If "defrag" is set
# to yes, the kernel will do the needed defragmentation before sending the packets.
defrag: yes
@ -266,7 +266,7 @@ af-packet:
- interface: eth1
threads: 1
cluster-id: 98
cluster-type: cluster_round_robin
cluster-type: cluster_flow
defrag: yes
# buffer-size: 32768
# disable-promisc: no
@ -638,7 +638,7 @@ pfring:
# Default PF_RING cluster type. PF_RING can load balance per flow or per hash.
# This is only supported in versions of PF_RING > 4.1.1.
cluster-type: cluster_round_robin
cluster-type: cluster_flow
# bpf filter for this interface
#bpf-filter: tcp
# Choose checksum verification mode for the interface. At the moment

Loading…
Cancel
Save