README.turnserver 40 KB

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