README.turnserver 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924
  1. GENERAL INFORMATION
  2. The TURN Server project contains the source code of a TURN server and TURN client
  3. messaging library. Also, some extra programs provided, for testing-only
  4. purposes.
  5. See the INSTALL file for the building instructions.
  6. After the build, you will have the following binary images:
  7. 1. turnserver: TURN Server relay.
  8. The compiled binary image of the TURN Server program is located in bin/ sub-directory.
  9. 2. turnadmin: TURN administration tool. See README.turnadmin and turnadmin man page.
  10. 3. turnutils_uclient. See README.turnutils and turnutils man page.
  11. 4. turnutils_peer. See README.turnutils and turnutils man page.
  12. 5. turnutils_stunclient. See README.turnutils and turnutils man page.
  13. 6. turnutils_rfc5769check. See README.turnutils and turnutils man page.
  14. In the "examples/scripts" sub-directory, you will find the examples of command lines to be used
  15. to run the programs. The scripts are meant to be run from examples/ sub-directory, for example:
  16. $ cd examples
  17. $ ./scripts/secure_relay.sh
  18. RUNNING THE TURN SERVER
  19. Options note: turnserver has long and short option names, for most options.
  20. Some options have only long form, some options have only short form. Their syntax
  21. somewhat different, if an argument is required:
  22. The short form must be used as this (for example):
  23. $ turnserver -L 12.34.56.78
  24. The long form equivalent must use the "=" character:
  25. $ turnserver --listening-ip=12.34.56.78
  26. If this is a flag option (no argument required) then their usage are the same, for example:
  27. $ turnserver -a
  28. is equivalent to:
  29. $ turnserver --lt-cred-mech
  30. =====================================
  31. NAME
  32. turnserver - a TURN relay server implementation.
  33. SYNOPSIS
  34. $ turnserver [-n | -c <config-file> ] [flags] [ --userdb=<userdb-file> | --psql-userdb=<db-conn-string> | --mysql-userdb=<db-conn-string> | --mongo-userdb=<db-conn-string> | --redis-userdb=<db-conn-string> ] [-z | --no-auth | -a | --lt-cred-mech ] [options]
  35. $ turnserver -h
  36. DESCRIPTION
  37. Config file settings:
  38. -n Do not use configuration file, use only command line parameters.
  39. -c Configuration file name (default - turnserver.conf).
  40. The format of config file can be seen in
  41. the supplied examples/etc/turnserver.conf example file. Long
  42. names of the options are used as the configuration
  43. items names in the file. If not an absolute path is supplied,
  44. then the file is searched in the following directories:
  45. * current directory
  46. * current directory etc/ sub-directory
  47. * upper directory level etc/
  48. * /etc/
  49. * /usr/local/etc/
  50. * installation directory /etc
  51. User database settings:
  52. -b, --userdb User database file name (default - turnuserdb.conf),
  53. for long-term credentials mechanism only.
  54. This user file database is being dynamically checked while the
  55. turnserver is working, and the user accounts can be changed
  56. dynamically by editing the database.
  57. -e, --psql-userdb User database connection string for PostgreSQL.
  58. This database can be used for long-term and short-term
  59. credentials mechanisms, and it can store the secret value
  60. for secret-based timed authentication in TURN RESP API.
  61. The connection string format is like that:
  62. "host=<host> dbname=<dbname> user=<db-user> password=<db-user-password> connect_timeout=<seconds>"
  63. (for 8.x or newer Postgres).
  64. Or:
  65. "postgresql://username:password@hostname:port/databasename"
  66. (for 9.x or newer Postgres).
  67. See the INSTALL file for more explanations and examples.
  68. Also, see http://www.PostgreSQL.org for full PostgreSQL documentation.
  69. -M, --mysql-userdb User database connection string for MySQL or MariaDB.
  70. This database can be used for long-term and short-term
  71. credentials mechanisms, and it can store the secret value for
  72. secret-based timed authentication in TURN RESP API.
  73. The connection string format is like that:
  74. "host=<host> dbname=<dbname> user=<db-user> password=<db-user-password> connect_timeout=<seconds>"
  75. See the INSTALL file for more explanations and examples.
  76. Also, see http://www.mysql.org or http://mariadb.org
  77. for full MySQL documentation.
  78. Optional connection string parameters for the secure communications (SSL):
  79. ca, capath, cert, key, cipher
  80. (see http://dev.mysql.com/doc/refman/5.0/en/mysql-ssl-set.html for the description).
  81. -J, --mongo-userdb User database connection string for MongoDB.
  82. This database can be used for long-term and short-term
  83. credentials mechanisms, and it can store the secret value
  84. for secret-based timed authentication in TURN RESP API.
  85. The connection string format is like that:
  86. "mongodb://username:password@host:port/database?options"
  87. See the INSTALL file for more explanations and examples.
  88. Also, see http://docs.mongodb.org/manual/
  89. for full MongoDB documentation.
  90. -N, --redis-userdb User database connection string for Redis.
  91. This database can be used for long-term and short-term
  92. credentials mechanisms, and it can store the secret
  93. value for secret-based timed authentication in TURN RESP API.
  94. The connection string format is like that:
  95. "ip=<ip-addr> dbname=<db-number> password=<db-password> connect_timeout=<seconds>"
  96. See the INSTALL file for more explanations and examples.
  97. Also, see http://redis.io for full Redis documentation.
  98. Flags:
  99. -v, --verbose Moderate verbose mode.
  100. -V, --Verbose Extra verbose mode, very annoying and not recommended.
  101. -o, --daemon Run server as daemon.
  102. -f, --fingerprint Use fingerprints in the TURN messages. If an incoming request
  103. contains a fingerprint, then TURN server will always add
  104. fingerprints to the messages in this session, regardless of the
  105. per-server setting.
  106. -a, --lt-cred-mech Use long-term credentials mechanism (this one you need for WebRTC usage).
  107. This option can be used with either flat file user database or
  108. PostgreSQL DB or MySQL DB or MongoDB or Redis for user keys storage.
  109. -A, --st-cred-mech Use the short-term credentials mechanism. This option requires
  110. a PostgreSQL or MySQL or MongoDB or Redis DB for short term passwords storage.
  111. -z, --no-auth Do not use any credentials mechanism, allow anonymous access.
  112. Opposite to -a and -A options. This is default option when no
  113. authentication-related options are set.
  114. By default, no credential mechanism is used -
  115. any user is allowed.
  116. --use-auth-secret TURN REST API flag.
  117. Flag that sets a special WebRTC authorization option
  118. that is based upon authentication secret. The feature purpose
  119. is to support "TURN Server REST API" as described in
  120. the TURN REST API section below.
  121. This option uses timestamp as part of combined username:
  122. usercombo -> "timestamp:username",
  123. turn user -> usercombo,
  124. turn password -> base64(hmac(secret key, usercombo)).
  125. This allows TURN credentials to be accounted for a specific user id.
  126. If you don't have a suitable id, the timestamp alone can be used.
  127. This option is just turns on secret-based authentication.
  128. The actual value of the secret is defined either by option static-auth-secret,
  129. or can be found in the turn_secret table in the database.
  130. This option can be used with long-term credentials mechanisms only -
  131. it does not make much sense with the short-term mechanism.
  132. --dh566 Use 566 bits predefined DH TLS key. Default size of the key is 1066.
  133. --dh2066 Use 2066 bits predefined DH TLS key. Default size of the key is 1066.
  134. --no-sslv2 Do not allow SSLv2 protocol.
  135. --no-sslv3 Do not allow SSLv3 protocol.
  136. --no-tlsv1 Do not allow TLSv1 protocol.
  137. --no-tlsv1_1 Do not allow TLSv1.1 protocol.
  138. --no-tlsv1_2 Do not allow TLSv1.2 protocol.
  139. --no-udp Do not start UDP client listeners.
  140. --no-tcp Do not start TCP client listeners.
  141. --no-tls Do not start TLS client listeners.
  142. --no-dtls Do not start DTLS client listeners.
  143. --no-udp-relay Do not allow UDP relay endpoints defined in RFC 5766,
  144. use only TCP relay endpoints as defined in RFC 6062.
  145. --no-tcp-relay Do not allow TCP relay endpoints defined in RFC 6062,
  146. use only UDP relay endpoints as defined in RFC 5766.
  147. --stale-nonce Use extra security with nonce value having limited lifetime (600 secs).
  148. --no-stdout-log Flag to prevent stdout log messages.
  149. By default, all log messages are going to both stdout and to
  150. the configured log file. With this option everything will be going to
  151. the log file only (unless the log file itself is stdout).
  152. --syslog With this flag, all log will be redirected to the system log (syslog).
  153. --simple-log This flag means that no log file rollover will be used, and the log file
  154. name will be constructed as-is, without PID and date appendage.
  155. This option can be used, for example, together with the logrotate tool.
  156. --secure-stun Require authentication of the STUN Binding request.
  157. By default, the clients are allowed anonymous access to the STUN Binding functionality.
  158. -S, --stun-only Run as STUN server only, all TURN requests will be ignored.
  159. Option to suppress TURN functionality, only STUN requests will be processed.
  160. --no-stun Run as TURN server only, all STUN requests will be ignored.
  161. Option to suppress STUN functionality, only TURN requests will be processed.
  162. --no-loopback-peers Disallow peers on the loopback addresses (127.x.x.x and ::1).
  163. --no-multicast-peers Disallow peers on well-known broadcast addresses
  164. (224.0.0.0 and above, and FFXX:*).
  165. --sha256 Require SHA256 digest function to be used for the message integrity.
  166. By default, the server uses SHA1 hashes. With this option, the server
  167. requires the stronger SHA256 hashes. The client application must support
  168. SHA256 hash function if this option is used. If the server obtains a message
  169. from the client with a weaker (SHA1) hash function then the server returns
  170. error code 426.
  171. --mobility Mobility with ICE (MICE) specs support.
  172. --no-cli Turn OFF the CLI support. By default it is always ON.
  173. See also options --cli-ip and --cli-port.
  174. --server-relay Server relay. NON-STANDARD AND DANGEROUS OPTION.
  175. Only for those applications when we want to run
  176. server applications on the relay endpoints.
  177. This option eliminates the IP permissions check
  178. on the packets incoming to the relay endpoints.
  179. See http://tools.ietf.org/search/rfc5766#section-17.2.3 .
  180. --udp-self-balance (recommended for older Linuxes only)
  181. Automatically balance UDP traffic over auxiliary servers
  182. (if configured). The load balancing is using the
  183. ALTERNATE-SERVER mechanism. The TURN client must support
  184. 300 ALTERNATE-SERVER response for this functionality.
  185. -h Help.
  186. Options with required values:
  187. -d, --listening-device Listener interface device.
  188. (NOT RECOMMENDED. Optional functionality, Linux only).
  189. The turnserver process must have root privileges to bind the
  190. listening endpoint to a device. If turnserver must run as a
  191. process without root privileges, then just do not use this setting.
  192. -L, --listening-ip Listener IP address of relay server.
  193. Multiple listeners can be specified, for example:
  194. -L ip1 -L ip2 -L ip3
  195. If no IP(s) specified, then all IPv4 and
  196. IPv6 system IPs will be used for listening.
  197. The same ip(s) can be used as both listening and relay ip(s).
  198. -p, --listening-port TURN listener port for UDP and TCP listeners (Default: 3478).
  199. Note: actually, TLS & DTLS sessions can connect to the "plain" TCP & UDP
  200. port(s), too - if allowed by configuration.
  201. --tls-listening-port TURN listener port for TLS and DTLS listeners (Default: 5349).
  202. Note: actually, "plain" TCP & UDP sessions can connect to the TLS & DTLS
  203. port(s), too - if allowed by configuration. The TURN server
  204. "automatically" recognizes the type of traffic. Actually, two listening
  205. endpoints (the "plain" one and the "tls" one) are equivalent in terms of
  206. functionality; but we keep both endpoints to satisfy the RFC 5766 specs.
  207. For secure TCP connections, we currently support SSL version 3 and
  208. TLS versions 1.0, 1.1, 1.2. SSL2 "encapsulation mode" is also supported.
  209. For secure UDP connections, we support DTLS version 1.
  210. --alt-listening-port Alternative listening port for UDP and TCP listeners;
  211. default (or zero) value means "listening port plus one".
  212. This is needed for STUN CHANGE_REQUEST - in RFC 5780 sense
  213. or in old RFC 3489 sense - for NAT behavior discovery). The TURN Server
  214. supports CHANGE_REQUEST only if it is started with more than one
  215. listening IP address of the same family (IPv4 or IPv6). The CHANGE_REQUEST
  216. is only supported by UDP protocol, other protocols are listening
  217. on that endpoint only for "symmetry".
  218. --alt-tls-listening-port Alternative listening port for TLS and DTLS protocols.
  219. Default (or zero) value means "TLS listening port plus one".
  220. --aux-server Auxiliary STUN/TURN server listening endpoint.
  221. Aux servers have almost full TURN and STUN functionality.
  222. The (minor) limitations are:
  223. 1) Auxiliary servers do not have alternative ports and
  224. they do not support STUN RFC 5780 functionality (CHANGE REQUEST).
  225. 2) Auxiliary servers also are never returning ALTERNATIVE-SERVER reply.
  226. Valid formats are 1.2.3.4:5555 for IPv4 and [1:2::3:4]:5555 for IPv6.
  227. There may be multiple aux-server options, each will be used for listening
  228. to client requests.
  229. -i, --relay-device Relay interface device for relay sockets
  230. (NOT RECOMMENDED. Optional, Linux only).
  231. -E, --relay-ip Relay address (the local IP address that
  232. will be used to relay the packets to the
  233. peer). Multiple relay addresses may be used:
  234. -E ip1 -E ip2 -E ip3
  235. The same IP(s) can be used as both listening IP(s) and relay IP(s).
  236. If no relay IP(s) specified, then the turnserver will apply the
  237. default policy: it will decide itself which relay addresses to be
  238. used, and it will always be using the client socket IP address as
  239. the relay IP address of the TURN session (if the requested relay
  240. address family is the same as the family of the client socket).
  241. -X, --external-ip TURN Server public/private address mapping, if the server is behind NAT.
  242. In that situation, if a -X is used in form "-X <ip>" then that ip will be reported
  243. as relay IP address of all allocations. This scenario works only in a simple case
  244. when one single relay address is be used, and no CHANGE_REQUEST functionality is
  245. required. That single relay address must be mapped by NAT to the 'external' IP.
  246. The "external-ip" value, if not empty, is returned in XOR-RELAYED-ADDRESS field.
  247. For that 'external' IP, NAT must forward ports directly (relayed port 12345
  248. must be always mapped to the same 'external' port 12345).
  249. In more complex case when more than one IP address is involved,
  250. that option must be used several times, each entry must
  251. have form "-X <public-ip/private-ip>", to map all involved addresses.
  252. CHANGE_REQUEST (RFC5780 or RFC3489) NAT discovery STUN functionality will work
  253. correctly, if the addresses are mapped properly, even when the TURN server itself
  254. is behind A NAT.
  255. By default, this value is empty, and no address mapping is used.
  256. -m, --relay-threads Number of relay threads to handle the established connections
  257. (in addition to authentication thread and the listener thread).
  258. If set to 0 then application runs relay process in a single thread,
  259. in the same thread with the listener process (the authentication thread will
  260. still be a separate thread). In older systems (before Linux kernel 3.9),
  261. the number of UDP threads is always one threads per network listening endpoint -
  262. unless "-m 0" or "-m 1" is set.
  263. --min-port Lower bound of the UDP port range for relay
  264. endpoints allocation.
  265. Default value is 49152, according to RFC 5766.
  266. --max-port Upper bound of the UDP port range for relay
  267. endpoints allocation.
  268. Default value is 65535, according to RFC 5766.
  269. -u, --user Long-term security mechanism credentials user account,
  270. in the column-separated form username:key.
  271. Multiple user accounts may used in the command line.
  272. The key is either the user password, or
  273. the key is generated
  274. by turnadmin command. In the second case,
  275. the key must be prepended with 0x symbols.
  276. The key is calculated over the user name,
  277. the user realm, and the user password.
  278. This setting may not be used with TURN REST API or
  279. with short-term credentials mechanism.
  280. -r, --realm The default realm to be used for the users when no explicit
  281. origin/realm relationship was found in the database, or if the TURN
  282. server is not using any database (just the commands-line settings
  283. and the userdb file). Must be used with long-term credentials
  284. mechanism or with TURN REST API.
  285. -C, --rest-api-separator This is the timestamp/username separator symbol (character) in TURN REST API.
  286. The default value is :.
  287. -q, --user-quota Per-user allocations quota: how many concurrent
  288. allocations a user can create. This option can also be set
  289. through the database, for a particular realm.
  290. -Q, --total-quota Total allocations quota: global limit on concurrent allocations.
  291. This option can also be set through the database, for a particular realm.
  292. -s, --max-bps Max bytes-per-second bandwidth a TURN session is allowed to handle
  293. (input and output network streams are treated separately). Anything above
  294. that limit will be dropped or temporary suppressed (within the
  295. available buffer limits). This option can also be set through the
  296. database, for a particular realm.
  297. -B, --bps-capacity Maximum server capacity.
  298. Total bytes-per-second bandwidth the TURN server is allowed to allocate
  299. for the sessions, combined (input and output network streams are treated
  300. separately).
  301. --static-auth-secret Static authentication secret value (a string) for TURN REST API only.
  302. If not set, then the turn server will try to use the dynamic value
  303. in turn_secret table in user database (if present). The database-stored
  304. value can be changed on-the-fly by a separate program, so this is why
  305. that other mode is dynamic. Multiple shared secrets can be used
  306. (both in the database and in the "static" fashion).
  307. --cert Certificate file, PEM format. Same file
  308. search rules applied as for the configuration
  309. file. If both --no-tls and --no-dtls options
  310. are specified, then this parameter is not needed.
  311. Default value is turn_server_cert.pem.
  312. --pkey Private key file, PEM format. Same file
  313. search rules applied as for the configuration
  314. file. If both --no-tls and --no-dtls options
  315. are specified, then this parameter is not needed.
  316. Default value is turn_server_pkey.pem.
  317. --pkey-pwd If the private key file is encrypted, then this password to be used.
  318. --cipher-list Allowed OpenSSL cipher list for TLS/DTLS connections.
  319. Default value is "DEFAULT".
  320. --CA-file CA file in OpenSSL format.
  321. Forces TURN server to verify the client SSL certificates.
  322. By default, no CA is set and no client certificate check is performed.
  323. --ec-curve-name Curve name for EC ciphers, if supported by OpenSSL library (TLS and DTLS).
  324. The default value is prime256v1.
  325. --dh-file Use custom DH TLS key, stored in PEM format in the file.
  326. Flags --dh566 and --dh2066 are ignored when the DH key is taken from a file.
  327. -l, --log-file Option to set the full path name of the log file.
  328. By default, the turnserver tries to open a log file in
  329. /var/log/turnserver, /var/log, /var/tmp, /tmp and . (current)
  330. directories (which file open operation succeeds
  331. first that file will be used). With this option you can set the
  332. definite log file name.
  333. The special names are "stdout" and "-" - they will force everything
  334. to the stdout. Also, "syslog" name will redirect everything into
  335. the system log (syslog), as if the option "--syslog" was set.
  336. In the runtime, the logfile can be reset with the SIGHUP signal
  337. to the turnserver process.
  338. --alternate-server Option to set the "redirection" mode. The value of this option
  339. will be the address of the alternate server for UDP & TCP service in form of
  340. <ip>[:<port>]. The server will send this value in the attribute
  341. ALTERNATE-SERVER, with error 300, on ALLOCATE request, to the client.
  342. Client will receive only values with the same address family
  343. as the client network endpoint address family.
  344. See RFC 5389 and RFC 5766 for ALTERNATE-SERVER functionality description.
  345. The client must use the obtained value for subsequent TURN communications.
  346. If more than one --alternate-server options are provided, then the functionality
  347. can be more accurately described as "load-balancing" than a mere "redirection".
  348. If the port number is omitted, then the default port
  349. number 3478 for the UDP/TCP protocols will be used.
  350. Colon (:) characters in IPv6 addresses may conflict with the syntax of
  351. the option. To alleviate this conflict, literal IPv6 addresses are enclosed
  352. in square brackets in such resource identifiers, for example:
  353. [2001:db8:85a3:8d3:1319:8a2e:370:7348]:3478 .
  354. Multiple alternate servers can be set. They will be used in the
  355. round-robin manner. All servers in the pool are considered of equal weight and
  356. the load will be distributed equally. For example, if we have 4 alternate servers,
  357. then each server will receive 25% of ALLOCATE requests. An alternate TURN server
  358. address can be used more than one time with the alternate-server option, so this
  359. can emulate "weighting" of the servers.
  360. --tls-alternate-server Option to set alternative server for TLS & DTLS services in form of
  361. <ip>:<port>. If the port number is omitted, then the default port
  362. number 5349 for the TLS/DTLS protocols will be used. See the previous option for the
  363. functionality description.
  364. -O, --redis-statsdb Redis status and statistics database connection string, if used (default - empty,
  365. no Redis stats DB used). This database keeps allocations status information, and it can
  366. be also used for publishing and delivering traffic and allocation event notifications.
  367. This database option can be used independently of --redis-userdb option,
  368. and actually Redis can be used for status/statistics and MySQL or MongoDB or PostgreSQL can
  369. be used for the user database.
  370. The connection string has the same parameters as redis-userdb connection string.
  371. --max-allocate-timeout Max time, in seconds, allowed for full allocation establishment.
  372. Default is 60 seconds.
  373. --denied-peer-ip=<IPaddr[-IPaddr]>
  374. --allowed-peer-ip=<IPaddr[-IPaddr]> Options to ban or allow specific ip addresses or ranges
  375. of ip addresses. If an ip address is specified as both allowed and denied, then
  376. the ip address is considered to be allowed. This is useful when you wish to ban
  377. a range of ip addresses, except for a few specific ips within that range.
  378. This can be used when you do not want users of the turn server to be able to access
  379. machines reachable by the turn server, but would otherwise be unreachable from the
  380. internet (e.g. when the turn server is sitting behind a NAT). The 'white" and "black" peer
  381. IP ranges can also be dynamically changed in the database.
  382. The allowed/denied addresses (white/black lists) rules are very simple:
  383. 1) If there is no rule for an address, then it is allowed;
  384. 2) If there is an "allowed" rule that fits the address then it is allowed - no matter what;
  385. 3) If there is no "allowed" rule that fits the address, and if there is a "denied" rule that
  386. fits the address, then it is denied.
  387. --pidfile File name to store the pid of the process.
  388. Default is /var/run/turnserver.pid (if superuser account is used) or
  389. /var/tmp/turnserver.pid .
  390. --proc-user User name to run the process. After the initialization, the turnserver process
  391. will make an attempt to change the current user ID to that user.
  392. --proc-group Group name to run the process. After the initialization, the turnserver process
  393. will make an attempt to change the current group ID to that group.
  394. --cli-ip Local system IP address to be used for CLI management interface.
  395. The turnserver process can be accessed for management with telnet,
  396. at this IP address and on the CLI port (see the next parameter).
  397. Default value is 127.0.0.1. You can use telnet or putty (in telnet mode)
  398. to access the CLI management interface.
  399. --cli-port CLI management interface listening port. Default is 5766.
  400. --cli-password CLI access password. Default is empty (no password).
  401. --cli-max-output-sessions Maximum number of output sessions in ps CLI command.
  402. This value can be changed on-the-fly in CLI. The default value is 256.
  403. --ne=[1|2|3] Set network engine type for the process (for internal purposes).
  404. ==================================
  405. LOAD BALANCE AND PERFORMANCE TUNING
  406. This topic is covered in the wiki page:
  407. http://code.google.com/p/coturn/wiki/turn_performance_and_load_balance
  408. ===================================
  409. WEBRTC USAGE
  410. This is a set of notes for the WebRTC users:
  411. 1) WebRTC uses long-term authentication mechanism, so you have to use -a
  412. option (or --lt-cred-mech). WebRTC relaying will not work with anonymous access
  413. or with short-term authentication. With -a option, do not forget to set the
  414. default realm (-r option). You will also have to set up the user accounts,
  415. for that you have a number of options:
  416. a) command-line options (-u).
  417. b) userdb config file.
  418. c) a database table (PostgreSQL or MySQL or MongoDB). You will have to set keys with
  419. turnadmin utility (see docs and wiki for turnadmin). You cannot use open passwords
  420. in the database.
  421. d) Redis key/value pair(s), if Redis is used. You key use either keys or
  422. open passwords with Redis; see turndb/testredisdbsetup.sh file.
  423. e) You also can use the TURN REST API. You will need shared secret(s) set
  424. either through the command line option, or through the config file, or through
  425. the database table or Redis key/value pairs.
  426. 2) Usually WebRTC uses fingerprinting (-f).
  427. 3) -v option may be nice to see the connected clients.
  428. 4) -X is needed if you are running your TURN server behind a NAT.
  429. 5) --min-port and --max-port may be needed if you want to limit the relay endpoints ports
  430. number range.
  431. ===================================
  432. TURN REST API
  433. In WebRTC, the browser obtains the TURN connection information from the web
  434. server. This information is a secure information - because it contains the
  435. necessary TURN credentials. As these credentials are transmitted over the
  436. public networks, we have a potential security breach.
  437. If we have to transmit a valuable information over the public network,
  438. then this information has to have a limited lifetime. Then the guy who
  439. obtains this information without permission will be able to perform
  440. only limited damage.
  441. This is how the idea of TURN REST API - time-limited TURN credentials -
  442. appeared. This security mechanism is based upon the long-term credentials
  443. mechanism. The main idea of the REST API is that the web server provides
  444. the credentials to the client, but those credentials can be used only
  445. limited time by an application that has to create a TURN server connection.
  446. The "classic" long-term credentials mechanism (LTCM) is described here:
  447. http://tools.ietf.org/html/rfc5389#section-10.2
  448. http://tools.ietf.org/html/rfc5389#section-15.4
  449. For authentication, each user must know two things: the username and the
  450. password. Optionally, the user must supply the ORIGIN value, so that the
  451. server can figure out the realm to be used for the user. The nonce and
  452. the realm values are supplied by the TURN server. But LTCM is not saying
  453. anything about the nature and about the persistence of the username and
  454. of the password; and this is used by the REST API.
  455. In the TURN REST API, there is no persistent passwords for users. A user has
  456. just the username. The password is always temporary, and it is generated by
  457. the web server on-demand, when the user accesses the WebRTC page. And,
  458. actually, a temporary one-time session only, username is provided to the user,
  459. too.
  460. The temporary user is generated as:
  461. temporary-username="timestamp" + ":" + "username"
  462. where username is the persistent user name, and the timestamp format is just
  463. seconds sinse 1970 - the same value as time(NULL) function returns.
  464. The temporary password is obtained as HMAC-SHA1 function over the temporary
  465. username, with shared secret as the HMAC key, and then the result is encoded:
  466. temporary-password = base64_encode(hmac-sha1(shared-secret, temporary-username))
  467. Both the TURN server and the web server know the same shared secret. How the
  468. shared secret is distributed among the involved entities is left to the WebRTC
  469. deployment details - this is beyond the scope of the TURN REST API.
  470. So, a timestamp is used for the temporary password calculation, and this
  471. timestamp can be retrieved from the temporary username. This information
  472. is valuable, but only temporary, while the timestamp is not expired. Without
  473. knowledge of the shared secret, a new temporary password cannot be generated.
  474. This is all formally described in Justin's Uberti TURN REST API document
  475. that can be obtained following the link "TURN REST API" in the TURN Server
  476. project's page http://code.google.com/p/coturn/.
  477. Once the temporary username and password are obtained by the client (browser)
  478. application, then the rest is just 'classic" long-term credentials mechanism.
  479. For developers, we are going to describe it step-by-step below:
  480. - a new TURN client sends a request command to the TURN server. Optionally,
  481. it adds the ORIGIN field to it.
  482. - TURN server sees that this is a new client and the message is not
  483. authenticated.
  484. - the TURN server generates a random nonce string, and return the
  485. error 401 to the client, with nonce and realm included. If the ORIGIN
  486. field was present in the client request, it may affect the realm value
  487. that the server chooses for the client.
  488. - the client sees the 401 error and it extracts two values from
  489. the error response: the nonce and the realm.
  490. - the client uses username, realm and password to produce a key:
  491. key = MD5(username ":" realm ":" SASLprep(password))
  492. (SASLprep is described here: http://tools.ietf.org/html/rfc4013)
  493. - the client forms a new request, adds username, realm and nonce to the
  494. request. Then, the client calculates and adds the integrity field to
  495. the request. This is the trickiest part of the process, and it is
  496. described in the end of section 15.4:
  497. http://tools.ietf.org/html/rfc5389#section-15.4
  498. - the client, optionally, adds the fingerprint field. This may be also
  499. a tricky procedure, described in section 15.5 of the same document.
  500. WebRTC usually uses fingerprinted TURN messages.
  501. - the TURN server receives the request, reads the username.
  502. - then the TURN server checks that the nonce and the realm in the request
  503. are the valid ones.
  504. - then the TURN server calculates the key.
  505. - then the TURN server calculates the integrity field.
  506. - then the TURN server compares the calculated integrity field with the
  507. received one - they must be the same. If the integrity fields differ,
  508. then the request is rejected.
  509. In subsequent communications, the client may go with exactly the same
  510. sequence, but for optimization usually the client, having already
  511. information about realm and nonce, pre-calculates the integrity string
  512. for each request, so that the 401 error response becomes unnecessary.
  513. The TURN server may use "--stale-nonce" option for extra security: in
  514. some time, the nonce expires and the client will obtain 438 error response
  515. with the new nonce, and the client will have to start using the new nonce.
  516. In subsequent communications, the sever and the client will always assume
  517. the same password - the original password becomes the session parameter and
  518. is never expiring. So the password is not changing while the session is valid
  519. and unexpired. So, if the session is properly maintained, it may go forever,
  520. even if the user password has been already changed (in the database). The
  521. session simply is using the old password. Once the session got disconnected,
  522. the client will have to use the new password to re-connect (if the password
  523. has been changed).
  524. An example when a new shared secret is generated every hour by the TURN server
  525. box and then supplied to the web server, remotely, is provided in the script
  526. examples/scripts/restapi/shared_secret_maintainer.pl .
  527. A very important thing is that the nonce must be totally random and it must be
  528. different for different clients and different sessions.
  529. ===================================
  530. DATABASES
  531. For the user database, the turnserver has the following options:
  532. 1) Users can be set in the command line, with multiple -u or --user options.
  533. Obviously, only a few users can be set that way, and their credentials are fixed
  534. for the turnserver process lifetime.
  535. 2) Users can be set in turnusers.conf flat file DB. The turnserver process periodically
  536. re-reads this file, so the user accounts may be changed while the turnserver is running.
  537. But still a relatively small (up to a hundred ?) number of users can be handled that way.
  538. 3) Users can be stored in PostgreSQL database, if the turnserver was compiled with PostgreSQL
  539. support. Each time turnserver checks user credentials, it reads the database (asynchronously,
  540. of course, so that the current flow of packets is not delayed in any way), so any change in the
  541. database content is immediately visible by the turnserver. This is the way if you need the
  542. best scalability. The schema for the database can be found in schema.sql file.
  543. For long-term credentials, you have to set the "keys" for the users; the "keys" are generated
  544. by the turnadmin utility. For the key generation, you need username, password and the realm.
  545. All users in the database must use the same realm value; if down the road you will decide
  546. to change the realm name, then you will have to re-generate all user keys (that can be done
  547. in a batch script). If you are using short-term credentials, then you use open passwords
  548. in the database; you will have to make sure that nobody can access the database outside of
  549. the TURN server box. See the file turndb/testsqldbsetup.sql as an example.
  550. 4) The same is true for MySQL database. The same schema file is applicable.
  551. The same considerations are applicable.
  552. 5) The same is true for the Redis database, but the Redis database has aa different schema -
  553. it can be found (in the form of explanation) in schema.userdb.redis.
  554. Also, in Redis you can store both "keys" and open passwords (for long term credentials) -
  555. the "open password" option is less secure but more convenient for low-security environments.
  556. For short-term credentials, you will use open passwords only. See the file
  557. turndb/testredisdbsetup.sh as an example.
  558. 6) If a database is used, then users can be divided into multiple independent realms. Each realm
  559. can be administered separately, and each realm can have its own set of users and its own
  560. performance options (max-bps, user-quota, total-quota).
  561. 7) If you use MongoDB, the database will be setup for you automatically.
  562. 8) Of course, the turnserver can be used in non-secure mode, when users are allowed to establish
  563. sessions anonymously. But in most cases (like WebRTC) that will not work.
  564. For the status and statistics database, there are two choices:
  565. 1) The simplest choice is not to use it. Do not set --redis-statsdb option, and this functionality
  566. will be simply ignored.
  567. 2) If you choose to use it, then set the --redis-statsdb option. This may be the same database
  568. as in --redis-userdb option, or it may be a different database. You may want to use different
  569. database for security or convenience reasons. Also, you can use different database management
  570. systems for the user database and for the ststus and statistics database. For example, you can use
  571. MySQL as the user database, and you can use redis for the statistics. Or you can use Redis for both.
  572. So, we have 6 choices for the user management, and 2 choices for the statistics management. These
  573. two are totally independent. So, you have overall 6*2=12 ways to handle persistent information,
  574. choose any for your convenience.
  575. You do not have to handle the database information "manually" - the turnadmin program can handle
  576. everything for you. For PostgreSQL and MySQL you will just have to create an empty database
  577. with schema.sql SQL script. With Redis, you do not have to do even that - just run turnadmin and
  578. it will set the users for you (see the turnadmin manuals).
  579. =================================
  580. LIBRARIES
  581. In the lib/ sub-directory the build process will create TURN client messaging library.
  582. In the include/ sub-directory, the necessary include files will be placed.
  583. The C++ wrapper for the messaging functionality is located in TurnMsgLib.h header.
  584. An example of C++ code can be found in stunclient.c file.
  585. =================================
  586. DOCS
  587. After installation, run the command:
  588. $ man turnserver
  589. or in the project root directory:
  590. $ man -M man turnserver
  591. to see the man page.
  592. In the docs/html subdirectory of the original archive tree, you will find the client library
  593. reference. After the installation, it will be placed in PREFIX/share/doc/turnserver/html.
  594. =================================
  595. LOGS
  596. When the TURN Server starts, it makes efforts to create a log file turn_<pid>.log
  597. in the following directories:
  598. * /var/log
  599. * /log/
  600. * /var/tmp
  601. * /tmp
  602. * current directory
  603. If all efforts failed (due to the system permission settings) then all
  604. log messages are sent only to the standard output of the process.
  605. This behavior can be controlled by --log-file, --syslog and --no-stdout-log options.
  606. =================================
  607. TELNET CLI
  608. The turnserver process provides a telnet CLI access as statistics and basic management
  609. interface. By default, the turnserver starts a telnet CLI listener on IP 127.0.0.1 and
  610. port 5766. That can be changed by the command-cline options of the turnserver process
  611. (see --cli-ip and --cli-port options). The full list of telnet CLI commands is provided
  612. in "help" command output in the telnet CLI.
  613. =================================
  614. CLUSTERS
  615. TURN Server can be a part of the cluster installation. But, to support the "even port" functionality
  616. (RTP/RTCP streams pairs) the client requests from a particular IP must be delivered to the same
  617. TURN Server instance, so it requires some networking setup massaging for the cluster. The reason is that
  618. the RTP and RTCP relaying endpoints must be allocated on the same relay IP. It would be possible
  619. to design a scheme with the application-level requests forwarding (and we may do that later) but
  620. it would affect the performance.
  621. =================================
  622. FILES
  623. /etc/turnserver.conf
  624. /etc/turnuserdb.conf
  625. /usr/local/etc/turnserver.conf
  626. /usr/local/etc/turnuserdb.conf
  627. =================================
  628. DIRECTORIES
  629. /usr/local/share/turnserver
  630. /usr/local/share/doc/turnserver
  631. /usr/local/share/examples/turnserver
  632. =================================
  633. STANDARDS
  634. obsolete STUN RFC 3489
  635. new STUN RFC 5389
  636. TURN RFC 5766
  637. TURN-TCP extension RFC 6062
  638. TURN IPv6 extension RFC 6156
  639. STUN/TURN test vectors RFC 5769
  640. STUN NAT behavior discovery RFC 5780
  641. =================================
  642. SEE ALSO
  643. turnadmin, turnutils
  644. ======================================
  645. WEB RESOURCES
  646. project page:
  647. http://code.google.com/p/coturn/
  648. Wiki page:
  649. http://code.google.com/p/coturn/wiki/Readme
  650. forum:
  651. https://groups.google.com/forum/?fromgroups=#!forum/turn-server-project-rfc5766-turn-server
  652. ======================================
  653. AUTHORS
  654. Oleg Moskalenko <[email protected]>
  655. Gabor Kovesdan http://kovesdan.org/
  656. Daniel Pocock http://danielpocock.com/
  657. John Selbie ([email protected])
  658. Lee Sylvester <[email protected]>
  659. Erik Johnston <[email protected]>
  660. Roman Lisagor <[email protected]>
  661. Vladimir Tsanev <[email protected]>
  662. Po-sheng Lin <[email protected]>
  663. Peter Dunkley <[email protected]>
  664. Mutsutoshi Yoshimoto <[email protected]>
  665. Federico Pinna <[email protected]>