zmq_plain.txt 914 B

12345678910111213141516171819202122232425262728293031323334353637
  1. zmq_plain(7)
  2. ============
  3. NAME
  4. ----
  5. zmq_plain - clear-text authentication
  6. SYNOPSIS
  7. --------
  8. The PLAIN mechanism defines a simple username/password mechanism that
  9. lets a server authenticate a client. PLAIN makes no attempt at security
  10. or confidentiality. It is intended for use on internal networks where
  11. security requirements are low. The PLAIN mechanism is defined by this
  12. document: <http://rfc.zeromq.org/spec:24>.
  13. USAGE
  14. -----
  15. To use PLAIN, the server shall set the ZMQ_PLAIN_SERVER option, and the
  16. client shall set the ZMQ_PLAIN_USERNAME and ZMQ_PLAIN_PASSWORD socket
  17. options. Which peer binds, and which connects, is not relevant.
  18. SEE ALSO
  19. --------
  20. linkzmq:zmq_setsockopt[3]
  21. linkzmq:zmq_null[7]
  22. linkzmq:zmq_curve[7]
  23. linkzmq:zmq[7]
  24. AUTHORS
  25. -------
  26. This page was written by the 0MQ community. To make a change please
  27. read the 0MQ Contribution Policy at <http://www.zeromq.org/docs:contributing>.