diff options
author | Arturo Borrero <arturo.borrero.glez@gmail.com> | 2014-11-06 09:05:28 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2014-11-06 12:51:40 +0100 |
commit | 31f031b0d348afd1c343692eca4b496c4bf5d05d (patch) | |
tree | 7012e6344f70274e8cfcdcd093241730ec4270ff /include | |
parent | 3cc636eda67c9dd416e584e21ccb9031d44dcbd0 (diff) |
nft: don't resolve hostnames by default
This patch changes the default behaviour of nft to not translate IP
addresses to hostnames when printing rules if no options are passed.
The options regarding translations after this patch are:
<no -n/-N> show IP addresses numerically (default behaviour)
-n show IP addresses numerically
-nn show Internet services and uid/gid numerically
-nnn show protocols numerically
-N (--reversedns) translate IP addresses to names
The idea is to avoid breaking existing scripts that most likely rely on
'-n' to save the ruleset, so we reduce the impact of this patch and
provide a default behaviour that doesn't generate network traffic when
listing / saving the ruleset.
Joint work with Pablo.
Suggested-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/nftables.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/nftables.h b/include/nftables.h index c3d3dbfb..4c33ec63 100644 --- a/include/nftables.h +++ b/include/nftables.h @@ -26,6 +26,7 @@ enum debug_level { extern unsigned int max_errors; extern unsigned int numeric_output; +extern unsigned int ip2name_output; extern unsigned int handle_output; extern unsigned int debug_level; extern const char *include_paths[INCLUDE_PATHS_MAX]; |