Bird
0
0

You want to configure Kafka to accept only clients with valid SSL certificates. Which broker config should you set?

hard📝 Application Q8 of 15
Kafka - Security
You want to configure Kafka to accept only clients with valid SSL certificates. Which broker config should you set?
Assl.keystore.location=/path/keystore.jks
Bssl.client.auth=required
Csecurity.protocol=PLAINTEXT
Dssl.client.auth=none
Step-by-Step Solution
Solution:
  1. Step 1: Understand client authentication setting

    The 'ssl.client.auth' property controls if clients must present certificates.
  2. Step 2: Setting to require client certs

    Setting 'ssl.client.auth=required' forces clients to provide valid SSL certificates.
  3. Final Answer:

    ssl.client.auth=required -> Option B
  4. Quick Check:

    Require client certs with ssl.client.auth=required = D [OK]
Quick Trick: Use ssl.client.auth=required to enforce client certs [OK]
Common Mistakes:
MISTAKES
  • Setting ssl.client.auth=none allows any client
  • Using PLAINTEXT disables SSL
  • Confusing keystore location with client auth

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes