Description
HDFS-5910 introduces encryption negotiation between client and server based on a customizable TrustedChannelResolver class. The TrustedChannelResolver is invoked on both client and server side. If the resolver indicates that the channel is trusted, then the data transfer will not be encrypted even if dfs.encrypt.data.transfer is set to true.
The default trust channel resolver implementation returns false indicating that the channel is not trusted, which always enables encryption. HDFS-5910 also added a build-int whitelist based trust channel resolver. It allows you to put IP address/Network Mask of trusted client/server in whitelist files to skip encryption for certain traffics.
This ticket is opened to add a blacklist based trust channel resolver for cases only certain machines (IPs) are untrusted without adding each trusted IP individually.
Attachments
Attachments
Issue Links
- is depended upon by
-
HADOOP-15203 Support composite trusted channel resolver that supports both whitelist and blacklist
- Patch Available
- relates to
-
HADOOP-15202 Deprecate CombinedIPWhiteList to use CombinedIPList
- Open