Difference between revisions of "Setting packet connection tracking metainformation"

From nftables wiki
Jump to navigation Jump to search
(add some bits about ct helpers)
 
(→‎helpers: update examples and clarify versions)
Line 30: Line 30:
<source>
<source>
table filter {
table filter {
       helper "sip-5060" {
       ct helper sip-5060 {
             type sip protocol ip l4proto udp;
             type sip protocol udp;
      }
 
      ct helper ftp-standar {
            type "ftp" protocol tcp;
       }
       }


Line 53: Line 57:
</source>
</source>


You need the most recent version of both nftables and the kernel to use this feature.
You need nftables >= 0.8 and the kernel >= 4.12 to use this feature.

Revision as of 10:31, 11 May 2017

You can set some bits of the packet conntrack metainformation, apart of matching on it.

notrack

You can use the notrack support to explicitly skip connection tracking for matching packets.

The example below skips traffic for 80/tcp and 443/tcp:

nft add rule ip raw prerouting tcp dport { 80, 443 } notrack

Please, note that you should use notrack before the kernel connection tracking is triggered. Use a chain with priority -300. Example:

nft add table raw
nft add chain raw prerouting { type filter hook prerouting priority -300 \; }
nft add rule raw prerouting tcp dport 80 notrack

Support for this was added in linux kernel 4.10 and in nftables v0.7.

helpers

You can assign each packet a conntrack helper.

Instantiate a helper, using a named object:

table filter {
      ct helper sip-5060 {
             type sip protocol udp;
      }

      ct helper ftp-standar {
             type "ftp" protocol tcp;
      }

      chain c {
      }
}

Then, from the rules:

nft add rule filter filter c udp dport 5060 ct helper set "sip-5060"

You can of course use a dictionary, one single rule to assign many helpers:

nft add rule x y ct helper set udp dport map { \
                        69 : "tftp-69", \
                        5060 : "sip-5060" }

You need nftables >= 0.8 and the kernel >= 4.12 to use this feature.