D. Stussy wrote:
>
> That depends on implementation. It's quite possible that such means all
> values 0-65535 are in use (so it actually prints the top value +1). This is
> a "border value" and therefore suspect. One could still be using a short
> int to do indexing into an associative array. That also means that although
> it allowed me to set a larger value, that value might not be honored over a
> pre-compiled limit.
In include/net/netfilter/nf_conntrack.h, one finds
extern int nf_conntrack_max
It is a 32-bit integer. As it is signed, you will be limited to roughly 2
billion connections, but I doubt you have that much RAM.
Larry