README.turnserver 40 KB

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