iax.conf.sample 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. ;
  2. ; Inter-Asterisk eXchange v2 (IAX2) Channel Driver configuration
  3. ;
  4. ; This configuration is read when the chan_iax2.so module is loaded, and is
  5. ; re-read when the module is reloaded, such as when invoking the CLI command:
  6. ;
  7. ; *CLI> iax2 reload
  8. ;
  9. ; General settings, like port number to bind to, and an option address (the
  10. ; default is to bind to all local addresses).
  11. [general]
  12. ; Listener Addresses
  13. ;
  14. ; Use the 'bindaddr' and 'bindport' options to specify on which address and port
  15. ; the IAX2 channel driver will listen for incoming requests.
  16. ;
  17. ;
  18. ;bindport=4569 ; The default port to listen on
  19. ; NOTE: bindport must be specified BEFORE bindaddr or
  20. ; may be specified on a specific bindaddr if followed by
  21. ; colon and port (e.g. bindaddr=192.168.0.1:4569)
  22. ;bindaddr=192.168.0.1 ; You can specify 'bindaddr' more than once to bind to
  23. ; multiple addresses, but the first will be the
  24. ; default.
  25. ;
  26. ; Set 'iaxcompat' to yes if you plan to use layered switches or some other
  27. ; scenario which may cause some delay when doing a lookup in the dialplan. It
  28. ; incurs a small performance hit to enable it. This option causes Asterisk to
  29. ; spawn a separate thread when it receives an IAX2 DPREQ (Dialplan Request)
  30. ; instead of blocking while it waits for a response.
  31. ;
  32. ; Accepted values: yes, no
  33. ; Default value: no
  34. ;
  35. ;iaxcompat=yes
  36. ;
  37. ;
  38. ; Disable UDP checksums (if nochecksums is set, then no checkums will
  39. ; be calculated/checked on systems supporting this feature)
  40. ;
  41. ; Accepted values: yes, no
  42. ; Default value: no
  43. ;
  44. ;nochecksums=yes
  45. ;
  46. ;
  47. ; For increased security against brute force password attacks enable
  48. ; 'delayreject' which will delay the sending of authentication reject for REGREQ
  49. ; or AUTHREP if there is a password.
  50. ;
  51. ; Accepted values: yes, no
  52. ; Default value: no
  53. ;
  54. ;delayreject=yes
  55. ;
  56. ;
  57. ; You may specify a global default AMA flag for iaxtel calls. These flags are
  58. ; used in the generation of call detail records.
  59. ;
  60. ; Accepted values: default, omit, billing, documentation
  61. ; Default value: default
  62. ;
  63. ;amaflags=billing
  64. ;
  65. ;
  66. ; ADSI (Analog Display Services Interface) can be enabled if you have (or may
  67. ; have) ADSI compatible CPE equipment.
  68. ;
  69. ; Accepted values: yes, no
  70. ; Default value: no
  71. ;
  72. ;adsi=yes
  73. ;
  74. ;
  75. ; Whether or not to perform an SRV lookup on outbound calls.
  76. ;
  77. ; Accepted values: yes, no
  78. ; Default value: no
  79. ;
  80. ;srvlookup=yes
  81. ;
  82. ;
  83. ; You may specify a default account for Call Detail Records (CDRs) in addition to
  84. ; specifying on a per-user basis.
  85. ;
  86. ; Accepted values: Any string value up to 19 characters in length
  87. ; Default value: <empty>
  88. ;
  89. ;accountcode=lss0101
  90. ;
  91. ;
  92. ; You may specify a global default language for users. This can be specified
  93. ; also on a per-user basis. If omitted, will fallback to English (en).
  94. ;
  95. ; Accepted values: A language tag such as 'en' or 'es'
  96. ; Default value: en
  97. ;
  98. ;language=en
  99. ;
  100. ;
  101. ; This option specifies a preference for which music-on-hold class this channel
  102. ; should listen to when put on hold if the music class has not been set on the
  103. ; channel with Set(CHANNEL(musicclass)=whatever) in the dialplan, and the peer
  104. ; channel putting this one on hold did not suggest a music class.
  105. ;
  106. ; If this option is set to "passthrough", then the hold message will always be
  107. ; passed through as signalling instead of generating hold music locally.
  108. ;
  109. ; This option may be specified globally, or on a per-user or per-peer basis.
  110. ;
  111. ; Accepted values: passthrough, or any music-on-hold class name
  112. ; Default value: <empty>
  113. ;
  114. ;mohinterpret=default
  115. ;
  116. ;
  117. ; The 'mohsuggest' option specifies which music on hold class to suggest to the
  118. ; peer channel when this channel places the peer on hold. It may be specified
  119. ; globally or on a per-user or per-peer basis.
  120. ;
  121. ;mohsuggest=default
  122. ;
  123. ;
  124. ; Specify bandwidth of low, medium, or high to control which codecs are used
  125. ; in general.
  126. ;
  127. bandwidth=low
  128. ;
  129. ;
  130. ; You can also fine tune codecs here using "allow" and "disallow" clauses with
  131. ; specific codecs. Use "all" to represent all formats.
  132. ;
  133. ;allow=all
  134. ;disallow=g723.1
  135. disallow=lpc10
  136. ;allow=gsm
  137. ;
  138. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  139. ; Jitter Buffer
  140. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  141. ;
  142. ; You can adjust several parameters relating to the jitter buffer. The jitter
  143. ; buffer's function is to compensate for varying network delay.
  144. ;
  145. ; All of the jitter buffer settings are in milliseconds. The jitter buffer
  146. ; works for INCOMING audio only - the outbound audio will be dejittered by the
  147. ; jitter buffer at the other end.
  148. ;
  149. ; jitterbuffer=yes|no: global default as to whether you want
  150. ; the jitter buffer at all.
  151. ;
  152. ; forcejitterbuffer=yes|no: in the ideal world, when we bridge VoIP channels
  153. ; we don't want to do jitterbuffering on the switch, since the endpoints
  154. ; can each handle this. However, some endpoints may have poor jitterbuffers
  155. ; themselves, so this option will force * to always jitterbuffer, even in this
  156. ; case.
  157. ;
  158. ; maxjitterbuffer: a maximum size for the jitter buffer.
  159. ; Setting a reasonable maximum here will prevent the call delay
  160. ; from rising to silly values in extreme situations; you'll hear
  161. ; SOMETHING, even though it will be jittery.
  162. ;
  163. ; resyncthreshold: when the jitterbuffer notices a significant change in delay
  164. ; that continues over a few frames, it will resync, assuming that the change in
  165. ; delay was caused by a timestamping mix-up. The threshold for noticing a
  166. ; change in delay is measured as twice the measured jitter plus this resync
  167. ; threshold.
  168. ; Resyncing can be disabled by setting this parameter to -1.
  169. ;
  170. ; maxjitterinterps: the maximum number of interpolation frames the jitterbuffer
  171. ; should return in a row. Since some clients do not send CNG/DTX frames to
  172. ; indicate silence, the jitterbuffer will assume silence has begun after
  173. ; returning this many interpolations. This prevents interpolating throughout
  174. ; a long silence.
  175. ;
  176. ; jittertargetextra: number of milliseconds by which the new jitter buffer
  177. ; will pad its size. the default is 40, so without modification, the new
  178. ; jitter buffer will set its size to the jitter value plus 40 milliseconds.
  179. ; increasing this value may help if your network normally has low jitter,
  180. ; but occasionally has spikes.
  181. ;
  182. jitterbuffer=no
  183. forcejitterbuffer=no
  184. ;maxjitterbuffer=1000
  185. ;maxjitterinterps=10
  186. ;resyncthreshold=1000
  187. ;jittertargetextra=40
  188. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  189. ; IAX2 Encryption
  190. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  191. ;
  192. ; Enable IAX2 encryption. The default is no.
  193. ;
  194. ;encryption=yes
  195. ;
  196. ;
  197. ; Force encryption insures no connection is established unless both sides
  198. ; support encryption. By turning this option on, encryption is automatically
  199. ; turned on as well. The default is no.
  200. ;
  201. ;forceencryption=yes
  202. ;
  203. ; This option defines the maximum payload in bytes an IAX2 trunk can support at
  204. ; a given time. The best way to explain this is to provide an example. If the
  205. ; maximum number of calls to be supported is 800, and each call transmits 20ms
  206. ; frames of audio using ulaw:
  207. ;
  208. ; (8000hz / 1000ms) * 20ms * 1 byte per sample = 160 bytes per frame
  209. ;
  210. ; The maximum load in bytes is:
  211. ;
  212. ; (160 bytes per frame) * (800 calls) = 128000 bytes
  213. ;
  214. ; Once this limit is reached, calls may be dropped or begin to lose audio.
  215. ; Depending on the codec in use and number of channels to be supported this value
  216. ; may need to be raised, but in most cases the default value is large enough.
  217. ;
  218. ; trunkmaxsize = 128000 ; defaults to 128000 bytes, which supports up to 800
  219. ; calls of ulaw at 20ms a frame.
  220. ; With a large amount of traffic on IAX2 trunks, there is a risk of bad voice
  221. ; quality when allowing the Linux system to handle fragmentation of UDP packets.
  222. ; Depending on the size of each payload, allowing the OS to handle fragmentation
  223. ; may not be very efficient. This setting sets the maximum transmission unit for
  224. ; IAX2 UDP trunking. The default is 1240 bytes which means if a trunk's payload
  225. ; is over 1240 bytes for every 20ms it will be broken into multiple 1240 byte
  226. ; messages. Zero disables this functionality and let's the OS handle
  227. ; fragmentation.
  228. ;
  229. ; trunkmtu = 1240 ; trunk data will be sent in 1240 byte messages.
  230. ; trunkfreq sets how frequently trunk messages are sent in milliseconds. This
  231. ; value is 20ms by default, which means the trunk will send all the data queued
  232. ; to it in the past 20ms. By increasing the time between sending trunk messages,
  233. ; the trunk's payload size will increase as well. Note, depending on the size
  234. ; set by trunkmtu, messages may be sent more often than specified. For example
  235. ; if a trunk's message size grows to the trunkmtu size before 20ms is reached
  236. ; that message will be sent immediately. Acceptable values are between 10ms and
  237. ; 1000ms.
  238. ;
  239. ; trunkfreq=20 ; How frequently to send trunk msgs (in ms). This is 20ms by
  240. ; default.
  241. ; Should we send timestamps for the individual sub-frames within trunk frames?
  242. ; There is a small bandwidth use for these (less than 1kbps/call), but they
  243. ; ensure that frame timestamps get sent end-to-end properly. If both ends of
  244. ; all your trunks go directly to TDM, _and_ your trunkfreq equals the frame
  245. ; length for your codecs, you can probably suppress these. The receiver must
  246. ; also support this feature, although they do not also need to have it enabled.
  247. ;
  248. ; trunktimestamps=yes
  249. ; Minimum and maximum amounts of time that IAX2 peers can request as a
  250. ; registration expiration interval (in seconds).
  251. ; minregexpire = 60
  252. ; maxregexpire = 60
  253. ; IAX2 helper threads
  254. ; Establishes the number of iax helper threads to handle I/O.
  255. ; iaxthreadcount = 10
  256. ; Establishes the number of extra dynamic threads that may be spawned to handle I/O
  257. ; iaxmaxthreadcount = 100
  258. ;
  259. ; We can register with another IAX2 server to let him know where we are
  260. ; in case we have a dynamic IP address for example
  261. ;
  262. ; Register with tormenta using username marko and password secretpass
  263. ;
  264. ;register => marko:secretpass@tormenta.linux-support.net
  265. ;
  266. ; Register joe at remote host with no password
  267. ;
  268. ;register => joe@remotehost:5656
  269. ;
  270. ; Register marko at tormenta.linux-support.net using RSA key "torkey"
  271. ;
  272. ;register => marko:[torkey]@tormenta.linux-support.net
  273. ;
  274. ; Sample Registration for iaxtel
  275. ;
  276. ; Visit http://www.iaxtel.com to register with iaxtel. Replace "user"
  277. ; and "pass" with your username and password for iaxtel. Incoming
  278. ; calls arrive at the "s" extension of "default" context.
  279. ;
  280. ;register => user:pass@iaxtel.com
  281. ;
  282. ; Sample Registration for IAX2 + FWD
  283. ;
  284. ; To register using IAX2 with FWD, it must be enabled by visiting the URL
  285. ; http://www.fwdnet.net/index.php?section_id=112
  286. ;
  287. ; Note that you need an extension in you default context which matches
  288. ; your free world dialup number. Please replace "FWDNumber" with your
  289. ; FWD number and "passwd" with your password.
  290. ;
  291. ;register => FWDNumber:passwd@iax.fwdnet.net
  292. ;
  293. ; Through the use of the res_stun_monitor module, Asterisk has the ability to detect when the
  294. ; perceived external network address has changed. When the stun_monitor is installed and
  295. ; configured, chan_iax will renew all outbound registrations when the monitor detects any sort
  296. ; of network change has occurred. By default this option is enabled, but only takes effect once
  297. ; res_stun_monitor is configured. If res_stun_monitor is enabled and you wish to not
  298. ; generate all outbound registrations on a network change, use the option below to disable
  299. ; this feature.
  300. ;
  301. ; subscribe_network_change_event = yes ; on by default
  302. ;
  303. ; You can enable authentication debugging to increase the amount of
  304. ; debugging traffic.
  305. ;
  306. ;authdebug = yes
  307. ;
  308. ; See https://wiki.asterisk.org/wiki/display/AST/IP+Quality+of+Service for a description of these parameters.
  309. ;tos=ef
  310. ;cos=5
  311. ;
  312. ; If regcontext is specified, Asterisk will dynamically create and destroy
  313. ; a NoOp priority 1 extension for a given peer who registers or unregisters
  314. ; with us. The actual extension is the 'regexten' parameter of the registering
  315. ; peer or its name if 'regexten' is not provided. More than one regexten
  316. ; may be supplied if they are separated by '&'. Patterns may be used in
  317. ; regexten.
  318. ;
  319. ;regcontext=iaxregistrations
  320. ;
  321. ; If we don't get ACK to our NEW within 2000ms, and autokill is set to yes,
  322. ; then we cancel the whole thing (that's enough time for one retransmission
  323. ; only). This is used to keep things from stalling for a long time for a host
  324. ; that is not available, but would be ill advised for bad connections. In
  325. ; addition to 'yes' or 'no' you can also specify a number of milliseconds.
  326. ; See 'qualify' for individual peers to turn on for just a specific peer.
  327. ;
  328. autokill=yes
  329. ;
  330. ; codecpriority controls the codec negotiation of an inbound IAX2 call.
  331. ; This option is inherited to all user entities. It can also be defined
  332. ; in each user entity separately which will override the setting in general.
  333. ;
  334. ; The valid values are:
  335. ;
  336. ; caller - Consider the callers preferred order ahead of the host's.
  337. ; host - Consider the host's preferred order ahead of the caller's.
  338. ; disabled - Disable the consideration of codec preference altogether.
  339. ; (this is the original behaviour before preferences were added)
  340. ; reqonly - Same as disabled, only do not consider capabilities if
  341. ; the requested format is not available the call will only
  342. ; be accepted if the requested format is available.
  343. ;
  344. ; The default value is 'host'
  345. ;
  346. ;codecpriority=host
  347. ;
  348. ; allowfwdownload controls whether this host will serve out firmware to
  349. ; IAX2 clients which request it. This has only been used for the IAXy,
  350. ; and it has been recently proven that this firmware distribution method
  351. ; can be used as a source of traffic amplification attacks. Also, the
  352. ; IAXy firmware has not been updated for at least 18 months, so unless
  353. ; you are provisioning IAXys in a secure network, we recommend that you
  354. ; leave this option to the default, off.
  355. ;
  356. ;allowfwdownload=yes
  357. ;rtcachefriends=yes ; Cache realtime friends by adding them to the internal list
  358. ; just like friends added from the config file only on a
  359. ; as-needed basis? (yes|no)
  360. ;rtsavesysname=yes ; Save systemname in realtime database at registration
  361. ; Default = no
  362. ;rtupdate=yes ; Send registry updates to database using realtime? (yes|no)
  363. ; If set to yes, when a IAX2 peer registers successfully,
  364. ; the IP address, the origination port, the registration period,
  365. ; and the username of the peer will be set to database via realtime.
  366. ; If not present, defaults to 'yes'.
  367. ;rtautoclear=yes ; Auto-Expire friends created on the fly on the same schedule
  368. ; as if it had just registered? (yes|no|<seconds>)
  369. ; If set to yes, when the registration expires, the friend will
  370. ; vanish from the configuration until requested again.
  371. ; If set to an integer, friends expire within this number of
  372. ; seconds instead of the registration interval.
  373. ;rtignoreregexpire=yes ; When reading a peer from Realtime, if the peer's registration
  374. ; has expired based on its registration interval, used the stored
  375. ; address information regardless. (yes|no)
  376. ;parkinglot=edvina ; Default parkinglot for IAX2 peers and users
  377. ; This can also be configured per device
  378. ; Parkinglots are defined in features.conf
  379. ;
  380. ; The following two options are used to disable call token validation for the
  381. ; purposes of interoperability with IAX2 endpoints that do not yet support it.
  382. ;
  383. ; Call token validation can be set as optional for a single IP address or IP
  384. ; address range by using the 'calltokenoptional' option. 'calltokenoptional' is
  385. ; only a global option.
  386. ;
  387. ;calltokenoptional=209.16.236.73/255.255.255.0
  388. ;
  389. ; By setting 'requirecalltoken=no', call token validation becomes optional for
  390. ; that peer/user. By setting 'requirecalltoken=auto', call token validation
  391. ; is optional until a call token supporting peer registers successfully using
  392. ; call token validation. This is used as an indication that from now on, we
  393. ; can require it from this peer. So, requirecalltoken is internally set to yes.
  394. ; requirecalltoken may only be used in peer/user/friend definitions,
  395. ; not in the global scope.
  396. ; By default, 'requirecalltoken=yes'.
  397. ;
  398. ;requirecalltoken=no
  399. ;
  400. ;
  401. ; These options are used to limit the amount of call numbers allocated to a
  402. ; single IP address. Before changing any of these values, it is highly encouraged
  403. ; to read the user guide associated with these options first. In most cases, the
  404. ; default values for these options are sufficient.
  405. ;
  406. ; The 'maxcallnumbers' option limits the amount of call numbers allowed for each
  407. ; individual remote IP address. Once an IP address reaches it's call number
  408. ; limit, no more new connections are allowed until the previous ones close. This
  409. ; option can be used in a peer definition as well, but only takes effect for
  410. ; the IP of a dynamic peer after it completes registration.
  411. ;
  412. ;maxcallnumbers=512
  413. ;
  414. ; The 'maxcallnumbers_nonvalidated' is used to set the combined number of call
  415. ; numbers that can be allocated for connections where call token validation
  416. ; has been disabled. Unlike the 'maxcallnumbers' option, this limit is not
  417. ; separate for each individual IP address. Any connection resulting in a
  418. ; non-call token validated call number being allocated contributes to this
  419. ; limit. For use cases, see the call token user guide. This option's
  420. ; default value of 8192 should be sufficient in most cases.
  421. ;
  422. ;maxcallnumbers_nonvalidated=1024
  423. ;
  424. ; The [callnumberlimits] section allows custom call number limits to be set
  425. ; for specific IP addresses and IP address ranges. These limits take precedence
  426. ; over the global 'maxcallnumbers' option, but may still be overridden by a
  427. ; peer defined 'maxcallnumbers' entry. Note that these limits take effect
  428. ; for every individual address within the range, not the range as a whole.
  429. ;
  430. ;[callnumberlimits]
  431. ;10.1.1.0/255.255.255.0 = 24
  432. ;10.1.2.0/255.255.255.0 = 32
  433. ;
  434. ; The shrinkcallerid function removes '(', ' ', ')', non-trailing '.', and '-' not
  435. ; in square brackets. For example, the Caller*ID value 555.5555 becomes 5555555
  436. ; when this option is enabled. Disabling this option results in no modification
  437. ; of the Caller*ID value, which is necessary when the Caller*ID represents something
  438. ; that must be preserved. This option can only be used in the [general] section.
  439. ; By default this option is on.
  440. ;
  441. ;shrinkcallerid=yes ; on by default
  442. ; Guest sections for unauthenticated connection attempts. Just specify an
  443. ; empty secret, or provide no secret section.
  444. ;
  445. [guest]
  446. type=user
  447. context=public
  448. callerid="Guest IAX User"
  449. ;
  450. ; Trust Caller*ID Coming from iaxtel.com
  451. ;
  452. [iaxtel]
  453. type=user
  454. context=default
  455. auth=rsa
  456. inkeys=iaxtel
  457. ;
  458. ; Trust Caller*ID Coming from iax.fwdnet.net
  459. ;
  460. [iaxfwd]
  461. type=user
  462. context=default
  463. auth=rsa
  464. inkeys=freeworlddialup
  465. ;
  466. ; Trust Caller*ID delivered over DUNDi/e164
  467. ;
  468. ;[dundi]
  469. ;type=user
  470. ;dbsecret=dundi/secret
  471. ;context=dundi-e164-local
  472. ;
  473. ; Further user sections may be added, specifying a context and a secret used
  474. ; for connections with that given authentication name. Limited IP based
  475. ; access control is allowed by use of "permit", "deny", and "acl" keywords.
  476. ; Multiple rules are permitted. Multiple permitted contexts may be specified,
  477. ; in which case the first will be the default. You can also override
  478. ; Caller*ID so that when you receive a call you set the Caller*ID to be what
  479. ; you want instead of trusting what the remote user provides
  480. ;
  481. ; There are three authentication methods that are supported: md5, plaintext,
  482. ; and rsa. The least secure is "plaintext", which sends passwords cleartext
  483. ; across the net. "md5" uses a challenge/response md5 sum arrangement, but
  484. ; still requires both ends have plain text access to the secret. "rsa" allows
  485. ; unidirectional secret knowledge through public/private keys. If "rsa"
  486. ; authentication is used, "inkeys" is a list of acceptable public keys on the
  487. ; local system that can be used to authenticate the remote peer, separated by
  488. ; the ":" character. "outkey" is a single, private key to use to authenticate
  489. ; to the other side. Public keys are named /var/lib/asterisk/keys/<name>.pub
  490. ; while private keys are named /var/lib/asterisk/keys/<name>.key. Private
  491. ; keys should always be 3DES encrypted.
  492. ;
  493. ;
  494. ; NOTE: All hostnames and IP addresses in this file are for example purposes
  495. ; only; you should not expect any of them to actually be available for
  496. ; your use.
  497. ;
  498. ;[markster]
  499. ;type=user
  500. ;context=default
  501. ;context=local
  502. ;auth=md5,plaintext,rsa
  503. ;secret=markpasswd
  504. ;setvar=ATTENDED_TRANSFER_COMPLETE_SOUND=beep ; This channel variable will
  505. ; cause the given audio file to
  506. ; be played upon completion of
  507. ; an attended transfer.
  508. ;dbsecret=mysecrets/place ; Secrets can be stored in astdb, too
  509. ;transfer=no ; Disable IAX2 native transfer
  510. ;transfer=mediaonly ; When doing IAX2 native transfers, transfer only
  511. ; the media stream
  512. ;jitterbuffer=yes ; Override the global setting and enable the jitter
  513. ; buffer for this user
  514. ;maxauthreq=10 ; Set the maximum number of outstanding AUTHREQs
  515. ; waiting for replies. If this limit is reached,
  516. ; any further authentication will be blocked, until
  517. ; the pending requests expire or a reply is
  518. ; received.
  519. ;callerid="Mark Spencer" <(256) 428-6275>
  520. ;deny=0.0.0.0/0.0.0.0
  521. ;accountcode=markster0101
  522. ;permit=209.16.236.73/255.255.255.0
  523. ;language=en ; Use english as default language
  524. ;encryption=yes ; Enable IAX2 encryption. The default is no.
  525. ;keyrotate=off ; This is a compatibility option for older versions
  526. ; of IAX2 that do not support key rotation with
  527. ; encryption. This option will disable the
  528. ; IAX_COMMAND_RTENC message. The default is on.
  529. ;
  530. ; Peers may also be specified, with a secret and a remote hostname.
  531. ;
  532. [demo]
  533. type=peer
  534. username=asterisk
  535. secret=supersecret
  536. host=216.207.245.47
  537. description=Demo System At Digium ; Description of this peer, as listed by
  538. ; 'iax2 show peers'
  539. ;sendani=no
  540. ;host=asterisk.linux-support.net
  541. ;port=5036
  542. ;mask=255.255.255.255
  543. ;qualify=yes ; Make sure this peer is alive.
  544. ;qualifysmoothing = yes ; Use an average of the last two PONG results to
  545. ; reduce falsely detected LAGGED hosts. The default
  546. ; is 'no.'
  547. ;qualifyfreqok = 60000 ; How frequently to ping the peer when everything
  548. ; seems to be OK, in milliseconds.
  549. ;qualifyfreqnotok = 10000 ; How frequently to ping the peer when it's either
  550. ; LAGGED or UNAVAILABLE, in milliseconds.
  551. ;jitterbuffer=no ; Turn off jitter buffer for this peer
  552. ;
  553. ;encryption=yes ; Enable IAX2 encryption. The default is no.
  554. ;keyrotate=off ; This is a compatibility option for older versions
  555. ; of IAX2 that do not support key rotation with
  556. ; encryption. This option will disable the
  557. ; IAX_COMMAND_RTENC message. The default is 'on.'
  558. ; Peers can remotely register as well, so that they can be mobile. Default
  559. ; IPs can also optionally be given but are not required. Caller*ID can be
  560. ; suggested to the other side as well if it is for example a phone instead of
  561. ; another PBX.
  562. ;connectedline=yes ; Set if connected line and redirecting information updates
  563. ; ; are passed between Asterisk servers for this peer.
  564. ; ; yes - Sending and receiving updates are enabled.
  565. ; ; send - Only send updates.
  566. ; ; receive - Only process received updates.
  567. ; ; no - Sending and receiving updates are disabled.
  568. ; ; Default is "no".
  569. ; ;
  570. ; ; Note: Because of an incompatibility between Asterisk v1.4
  571. ; ; and Asterisk v1.8 or later, this option must be set
  572. ; ; to "no" toward the Asterisk v1.4 peer. A symptom of the
  573. ; ; incompatibility is the call gets disconnected unexpectedly.
  574. ;[dynamichost]
  575. ;host=dynamic
  576. ;secret=mysecret
  577. ;mailbox=1234 ; Notify about mailbox 1234
  578. ;inkeys=key1:key2
  579. ;peercontext=local ; Default context to request for calls to peer
  580. ;defaultip=216.207.245.34
  581. ;callerid="Some Host" <(256) 428-6011>
  582. ;[biggateway]
  583. ;type=peer
  584. ;host=192.168.0.1
  585. ;description=Gateway to PSTN
  586. ;context=*
  587. ;secret=myscret
  588. ;trunk=yes ; Use IAX2 trunking with this host
  589. ;timezone=America/New_York ; Set a timezone for the date/time IE
  590. ;
  591. ; Friends are a shortcut for creating a user and a peer with the same values.
  592. ;
  593. ;[marko]
  594. ;type=friend
  595. ;host=dynamic
  596. ;regexten=1234
  597. ;secret=moofoo ; Multiple secrets may be specified. For a "user", all
  598. ;secret=foomoo ; specified entries will be accepted as valid. For a "peer",
  599. ;secret=shazbot ; only the last specified secret will be used.
  600. ;context=default
  601. ;permit=0.0.0.0/0.0.0.0
  602. ;acl=example_named_acl
  603. ;
  604. ; With immediate=yes, an IAX2 phone or a phone on an IAXy acts as a hot-line
  605. ; which goes immediately to the s extension when picked up. Useful for
  606. ; elevator phones, manual service, or other similar applications.
  607. ;
  608. ;[manual]
  609. ;type=friend
  610. ;host=dynamic
  611. ;immediate=yes ; go immediately to s extension when picked up
  612. ;secret=moofoo ; when immediate=yes is specified, secret is required
  613. ;context=number-please ; we start at the s extension in this context
  614. ;