CCAAK · Question #40
By default, what do Kafka broker network connections have?
The correct answer is A. No encryption, no authentication and no authorization. By default, Kafka brokers use the PLAINTEXT protocol for network communication. This means: No encryption - data is sent in plain text. No authentication - any client can connect without verifying identity. No authorization - there are no access control checks by default…
Question
By default, what do Kafka broker network connections have?
Options
- ANo encryption, no authentication and no authorization
- BEncryption, but no authentication or authorization
- CNo encryption, no authorization, but have authentication
- DEncryption and authentication, but no authorization
How the community answered
(49 responses)- A84% (41)
- B2% (1)
- C4% (2)
- D10% (5)
Explanation
By default, Kafka brokers use the PLAINTEXT protocol for network communication. This means: No encryption - data is sent in plain text. No authentication - any client can connect without verifying identity. No authorization - there are no access control checks by default. Security features like TLS, SASL, and ACLs must be explicitly configured.
Topics
Community Discussion
No community discussion yet for this question.