mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
openvswitch: Add timeout support to ct action
Add support for fine-grain timeout support to conntrack action. The new OVS_CT_ATTR_TIMEOUT attribute of the conntrack action specifies a timeout to be associated with this connection. If no timeout is specified, it acts as is, that is the default timeout for the connection will be automatically applied. Example usage: $ nfct timeout add timeout_1 inet tcp syn_sent 100 established 200 $ ovs-ofctl add-flow br0 in_port=1,ip,tcp,action=ct(commit,timeout=timeout_1) CC: Pravin Shelar <pshelar@ovn.org> CC: Pablo Neira Ayuso <pablo@netfilter.org> Signed-off-by: Yi-Hung Wei <yihung.wei@gmail.com> Acked-by: Pravin B Shelar <pshelar@ovn.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
717700d183
commit
06bd2bdf19
2 changed files with 32 additions and 1 deletions
|
@ -734,6 +734,7 @@ struct ovs_action_hash {
|
|||
* be received on NFNLGRP_CONNTRACK_NEW and NFNLGRP_CONNTRACK_DESTROY groups,
|
||||
* respectively. Remaining bits control the changes for which an event is
|
||||
* delivered on the NFNLGRP_CONNTRACK_UPDATE group.
|
||||
* @OVS_CT_ATTR_TIMEOUT: Variable length string defining conntrack timeout.
|
||||
*/
|
||||
enum ovs_ct_attr {
|
||||
OVS_CT_ATTR_UNSPEC,
|
||||
|
@ -746,6 +747,8 @@ enum ovs_ct_attr {
|
|||
OVS_CT_ATTR_NAT, /* Nested OVS_NAT_ATTR_* */
|
||||
OVS_CT_ATTR_FORCE_COMMIT, /* No argument */
|
||||
OVS_CT_ATTR_EVENTMASK, /* u32 mask of IPCT_* events. */
|
||||
OVS_CT_ATTR_TIMEOUT, /* Associate timeout with this connection for
|
||||
* fine-grain timeout tuning. */
|
||||
__OVS_CT_ATTR_MAX
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue