| 88b86bb0 | 17-Jul-2020 |
Cy Schubert <[email protected]> |
Historically ipfstat listings and stats only listed IPv4 or IPv6 output. ipfstat would list IPv4 outputs by default while -6 would produce IPv6 outputs. This commit combines the ipfstat -i and -o out
Historically ipfstat listings and stats only listed IPv4 or IPv6 output. ipfstat would list IPv4 outputs by default while -6 would produce IPv6 outputs. This commit combines the ipfstat -i and -o outputs into one listing of IPv4 and IPv6 rules. The -4 option lists only IPv4 rules (as the default before) while -6 continues to list only rules that affect IPv6.
PR: 247952 Reported by: [email protected] MFC after: 1 week
show more ...
|
| 53176601 | 17-Jul-2020 |
Cy Schubert <[email protected]> |
fr_family (the protocol family) must be AF_INET or AF_INET6, as in the kernel, not an arbitrary 4 or 6.
This only affected printing ipfilter stats and rules from a kernel dump. (This is currently un
fr_family (the protocol family) must be AF_INET or AF_INET6, as in the kernel, not an arbitrary 4 or 6.
This only affected printing ipfilter stats and rules from a kernel dump. (This is currently undocumented.)
PR: 247952 MFC after: 1 week
show more ...
|
| a97e8d2f | 27-Sep-2019 |
Cy Schubert <[email protected]> |
Implement the dynamic add (-A) and removal (-R) of ippool pools from the command line. Prior to this the functionality was mostly there however since the pool type (-t) was not recognized by the -A a
Implement the dynamic add (-A) and removal (-R) of ippool pools from the command line. Prior to this the functionality was mostly there however since the pool type (-t) was not recognized by the -A and -R command options -- not recognized by getopt(). Additionally the code to implement the dynamic add and removal of pools didn't work.
When dynamically adding (-A) a pool a type (-t) to specify if the pool is a tree or hash pool must be specified. When dynamically removing (-R) a pool, omitting -t will cause a search-and-destroy which will remove both types of pools matching the name given (-m).
PR: 218433 MFC after: 1 week
show more ...
|