Advertisement
Guest User

rigel voip lab backup

a guest
Oct 19th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 82.41 KB | None | 0 0
  1. ;
  2. ; SIP Configuration example for Asterisk
  3. ;
  4. ; Note: Please read the security documentation for Asterisk in order to
  5. ; understand the risks of installing Asterisk with the sample
  6. ; configuration. If your Asterisk is installed on a public
  7. ; IP address connected to the Internet, you will want to learn
  8. ; about the various security settings BEFORE you start
  9. ; Asterisk.
  10. ;
  11. ; Especially note the following settings:
  12. ; - allowguest (default enabled)
  13. ; - permit/deny - IP address filters
  14. ; - contactpermit/contactdeny - IP address filters for registrations
  15. ; - context - Which set of services you offer various users
  16. ;
  17. ; SIP dial strings
  18. ;-----------------------------------------------------------
  19. ; In the dialplan (extensions.conf) you can use several
  20. ; syntaxes for dialing SIP devices.
  21. ; SIP/devicename
  22. ; SIP/username@domain (SIP uri)
  23. ; SIP/username[:password[:md5secret[:authname[:transport]]]]@host[:port]
  24. ; SIP/devicename/extension
  25. ; SIP/devicename/extension/IPorHost
  26. ; SIP/username@domain//IPorHost
  27. ;
  28. ;
  29. ; Devicename
  30. ; devicename is defined as a peer in a section below.
  31. ;
  32. ; username@domain
  33. ; Call any SIP user on the Internet
  34. ; (Don't forget to enable DNS SRV records if you want to use this)
  35. ;
  36. ; devicename/extension
  37. ; If you define a SIP proxy as a peer below, you may call
  38. ; SIP/proxyhostname/user or SIP/user@proxyhostname
  39. ; where the proxyhostname is defined in a section below
  40. ; This syntax also works with ATA's with FXO ports
  41. ;
  42. ; SIP/username[:password[:md5secret[:authname]]]@host[:port]
  43. ; This form allows you to specify password or md5secret and authname
  44. ; without altering any authentication data in config.
  45. ; Examples:
  46. ;
  47. ; SIP/*98@mysipproxy
  48. ; SIP/sales:topsecret::account02@domain.com:5062
  49. ; SIP/12345678::bc53f0ba8ceb1ded2b70e05c3f91de4f:myname@192.168.0.1
  50. ;
  51. ; IPorHost
  52. ; The next server for this call regardless of domain/peer
  53. ;
  54. ; All of these dial strings specify the SIP request URI.
  55. ; In addition, you can specify a specific To: header by adding an
  56. ; exclamation mark after the dial string, like
  57. ;
  58. ; SIP/sales@mysipproxy!sales@edvina.net
  59. ;
  60. ; A new feature for 1.8 allows one to specify a host or IP address to use
  61. ; when routing the call. This is typically used in tandem with func_srv if
  62. ; multiple methods of reaching the same domain exist. The host or IP address
  63. ; is specified after the third slash in the dialstring. Examples:
  64. ;
  65. ; SIP/devicename/extension/IPorHost
  66. ; SIP/username@domain//IPorHost
  67. ;
  68. ; CLI Commands
  69. ; -------------------------------------------------------------
  70. ; Useful CLI commands to check peers/users:
  71. ; sip show peers Show all SIP peers (including friends)
  72. ; sip show registry Show status of hosts we register with
  73. ;
  74. ; sip set debug on Show all SIP messages
  75. ;
  76. ; sip reload Reload configuration file
  77. ; sip show settings Show the current channel configuration
  78. ;
  79. ;------- Naming devices ------------------------------------------------------
  80. ;
  81. ; When naming devices, make sure you understand how Asterisk matches calls
  82. ; that come in.
  83. ; 1. Asterisk checks the SIP From: address username and matches against
  84. ; names of devices with type=user
  85. ; The name is the text between square brackets [name]
  86. ; 2. Asterisk checks the From: addres and matches the list of devices
  87. ; with a type=peer
  88. ; 3. Asterisk checks the IP address (and port number) that the INVITE
  89. ; was sent from and matches against any devices with type=peer
  90. ;
  91. ; Don't mix extensions with the names of the devices. Devices need a unique
  92. ; name. The device name is *not* used as phone numbers. Phone numbers are
  93. ; anything you declare as an extension in the dialplan (extensions.conf).
  94. ;
  95. ; When setting up trunks, make sure there's no risk that any From: username
  96. ; (caller ID) will match any of your device names, because then Asterisk
  97. ; might match the wrong device.
  98. ;
  99. ; Note: The parameter "username" is not the username and in most cases is
  100. ; not needed at all. Check below. In later releases, it's renamed
  101. ; to "defaultuser" which is a better name, since it is used in
  102. ; combination with the "defaultip" setting.
  103. ;-----------------------------------------------------------------------------
  104.  
  105. ; ** Old configuration options **
  106. ; The "call-limit" configuation option is considered old is replaced
  107. ; by new functionality. To enable callcounters, you use the new
  108. ; "callcounter" setting (for extension states in queue and subscriptions)
  109. ; You are encouraged to use the dialplan groupcount functionality
  110. ; to enforce call limits instead of using this channel-specific method.
  111. ; You can still set limits per device in sip.conf or in a database by using
  112. ; "setvar" to set variables that can be used in the dialplan for various limits.
  113.  
  114. [general]
  115. context=default ; Default context for incoming calls
  116. ;allowguest=no ; Allow or reject guest calls (default is yes)
  117. ; If your Asterisk is connected to the Internet
  118. ; and you have allowguest=yes
  119. ; you want to check which services you offer everyone
  120. ; out there, by enabling them in the default context (see below).
  121. ;match_auth_username=yes ; if available, match user entry using the
  122. ; 'username' field from the authentication line
  123. ; instead of the From: field.
  124. allowoverlap=no ; Disable overlap dialing support. (Default is yes)
  125. ;allowoverlap=yes ; Enable RFC3578 overlap dialing support.
  126. ; Can use the Incomplete application to collect the
  127. ; needed digits from an ambiguous dialplan match.
  128. ;allowoverlap=dtmf ; Enable overlap dialing support using DTMF delivery
  129. ; methods (inband, RFC2833, SIP INFO) in the early
  130. ; media phase. Uses the Incomplete application to
  131. ; collect the needed digits.
  132. ;allowtransfer=no ; Disable all transfers (unless enabled in peers or users)
  133. ; Default is enabled. The Dial() options 't' and 'T' are not
  134. ; related as to whether SIP transfers are allowed or not.
  135. ;realm=mydomain.tld ; Realm for digest authentication
  136. ; defaults to "asterisk". If you set a system name in
  137. ; asterisk.conf, it defaults to that system name
  138. ; Realms MUST be globally unique according to RFC 3261
  139. ; Set this to your host name or domain name
  140. ;domainsasrealm=no ; Use domains list as realms
  141. ; You can serve multiple Realms specifying several
  142. ; 'domain=...' directives (see below).
  143. ; In this case Realm will be based on request 'From'/'To' header
  144. ; and should match one of domain names.
  145. ; Otherwise default 'realm=...' will be used.
  146.  
  147. ; With the current situation, you can do one of four things:
  148. ; a) Listen on a specific IPv4 address. Example: bindaddr=192.0.2.1
  149. ; b) Listen on a specific IPv6 address. Example: bindaddr=2001:db8::1
  150. ; c) Listen on the IPv4 wildcard. Example: bindaddr=0.0.0.0
  151. ; d) Listen on the IPv4 and IPv6 wildcards. Example: bindaddr=::
  152. ; (You can choose independently for UDP, TCP, and TLS, by specifying different values for
  153. ; "udpbindaddr", "tcpbindaddr", and "tlsbindaddr".)
  154. ; (Note that using bindaddr=:: will show only a single IPv6 socket in netstat.
  155. ; IPv4 is supported at the same time using IPv4-mapped IPv6 addresses.)
  156. ;
  157. ; Using bindaddr will only enable UDP support in order to be backwards compatible with those systems
  158. ; that were upgraded prior to TCP support. Use udpbindaddr and tcpbindaddr to bind to UDP and TCP
  159. ; independently.
  160. ;
  161. ; You may optionally add a port number. (The default is port 5060 for UDP and TCP, 5061
  162. ; for TLS).
  163. ; IPv4 example: bindaddr=0.0.0.0:5062
  164. ; IPv6 example: bindaddr=[::]:5062
  165. ;
  166. ; The address family of the bound UDP address is used to determine how Asterisk performs
  167. ; DNS lookups. In cases a) and c) above, only A records are considered. In case b), only
  168. ; AAAA records are considered. In case d), both A and AAAA records are considered. Note,
  169. ; however, that Asterisk ignores all records except the first one. In case d), when both A
  170. ; and AAAA records are available, either an A or AAAA record will be first, and which one
  171. ; depends on the operating system. On systems using glibc, AAAA records are given
  172. ; priority.
  173.  
  174. udpbindaddr=0.0.0.0 ; IP address to bind UDP listen socket to (0.0.0.0 binds to all)
  175. ; Optionally add a port number, 192.168.1.1:5062 (default is port 5060)
  176.  
  177. ; When a dialog is started with another SIP endpoint, the other endpoint
  178. ; should include an Allow header telling us what SIP methods the endpoint
  179. ; implements. However, some endpoints either do not include an Allow header
  180. ; or lie about what methods they implement. In the former case, Asterisk
  181. ; makes the assumption that the endpoint supports all known SIP methods.
  182. ; If you know that your SIP endpoint does not provide support for a specific
  183. ; method, then you may provide a comma-separated list of methods that your
  184. ; endpoint does not implement in the disallowed_methods option. Note that
  185. ; if your endpoint is truthful with its Allow header, then there is no need
  186. ; to set this option. This option may be set in the general section or may
  187. ; be set per endpoint. If this option is set both in the general section and
  188. ; in a peer section, then the peer setting completely overrides the general
  189. ; setting (i.e. the result is *not* the union of the two options).
  190. ;
  191. ; Note also that while Asterisk currently will parse an Allow header to learn
  192. ; what methods an endpoint supports, the only actual use for this currently
  193. ; is for determining if Asterisk may send connected line UPDATE requests and
  194. ; MESSAGE requests. Its use may be expanded in the future.
  195. ;
  196. ; disallowed_methods = UPDATE
  197.  
  198. ;
  199. ; Note that the TCP and TLS support for chan_sip is currently considered
  200. ; experimental. Since it is new, all of the related configuration options are
  201. ; subject to change in any release. If they are changed, the changes will
  202. ; be reflected in this sample configuration file, as well as in the UPGRADE.txt file.
  203. ;
  204. tcpenable=no ; Enable server for incoming TCP connections (default is no)
  205. tcpbindaddr=0.0.0.0 ; IP address for TCP server to bind to (0.0.0.0 binds to all interfaces)
  206. ; Optionally add a port number, 192.168.1.1:5062 (default is port 5060)
  207.  
  208. ;tlsenable=no ; Enable server for incoming TLS (secure) connections (default is no)
  209. ;tlsbindaddr=0.0.0.0 ; IP address for TLS server to bind to (0.0.0.0) binds to all interfaces)
  210. ; Optionally add a port number, 192.168.1.1:5063 (default is port 5061)
  211. ; Remember that the IP address must match the common name (hostname) in the
  212. ; certificate, so you don't want to bind a TLS socket to multiple IP addresses.
  213. ; For details how to construct a certificate for SIP see
  214. ; http://tools.ietf.org/html/draft-ietf-sip-domain-certs
  215.  
  216. ;tcpauthtimeout = 30 ; tcpauthtimeout specifies the maximum number
  217. ; of seconds a client has to authenticate. If
  218. ; the client does not authenticate beofre this
  219. ; timeout expires, the client will be
  220. ; disconnected. (default: 30 seconds)
  221.  
  222. ;tcpauthlimit = 100 ; tcpauthlimit specifies the maximum number of
  223. ; unauthenticated sessions that will be allowed
  224. ; to connect at any given time. (default: 100)
  225.  
  226. transport=udp ; Set the default transports. The order determines the primary default transport.
  227. ; If tcpenable=no and the transport set is tcp, we will fallback to UDP.
  228.  
  229. srvlookup=yes ; Enable DNS SRV lookups on outbound calls
  230. ; Note: Asterisk only uses the first host
  231. ; in SRV records
  232. ; Disabling DNS SRV lookups disables the
  233. ; ability to place SIP calls based on domain
  234. ; names to some other SIP users on the Internet
  235. ; Specifying a port in a SIP peer definition or
  236. ; when dialing outbound calls will supress SRV
  237. ; lookups for that peer or call.
  238.  
  239. ;pedantic=yes ; Enable checking of tags in headers,
  240. ; international character conversions in URIs
  241. ; and multiline formatted headers for strict
  242. ; SIP compatibility (defaults to "yes")
  243.  
  244. ; See https://wiki.asterisk.org/wiki/display/AST/IP+Quality+of+Service for a description of these parameters.
  245. ;tos_sip=cs3 ; Sets TOS for SIP packets.
  246. ;tos_audio=ef ; Sets TOS for RTP audio packets.
  247. ;tos_video=af41 ; Sets TOS for RTP video packets.
  248. ;tos_text=af41 ; Sets TOS for RTP text packets.
  249.  
  250. ;cos_sip=3 ; Sets 802.1p priority for SIP packets.
  251. ;cos_audio=5 ; Sets 802.1p priority for RTP audio packets.
  252. ;cos_video=4 ; Sets 802.1p priority for RTP video packets.
  253. ;cos_text=3 ; Sets 802.1p priority for RTP text packets.
  254.  
  255. ;maxexpiry=3600 ; Maximum allowed time of incoming registrations
  256. ; and subscriptions (seconds)
  257. ;minexpiry=60 ; Minimum length of registrations/subscriptions (default 60)
  258. ;defaultexpiry=120 ; Default length of incoming/outgoing registration
  259. ;mwiexpiry=3600 ; Expiry time for outgoing MWI subscriptions
  260. ;maxforwards=70 ; Setting for the SIP Max-Forwards: header (loop prevention)
  261. ; Default value is 70
  262. ;qualifyfreq=60 ; Qualification: How often to check for the host to be up in seconds
  263. ; and reported in milliseconds with sip show settings.
  264. ; Set to low value if you use low timeout for NAT of UDP sessions
  265. ; Default: 60
  266. ;qualifygap=100 ; Number of milliseconds between each group of peers being qualified
  267. ; Default: 100
  268. ;qualifypeers=1 ; Number of peers in a group to be qualified at the same time
  269. ; Default: 1
  270. ;notifymimetype=text/plain ; Allow overriding of mime type in MWI NOTIFY
  271. ;buggymwi=no ; Cisco SIP firmware doesn't support the MWI RFC
  272. ; fully. Enable this option to not get error messages
  273. ; when sending MWI to phones with this bug.
  274. ;mwi_from=asterisk ; When sending MWI NOTIFY requests, use this setting in
  275. ; the From: header as the "name" portion. Also fill the
  276. ; "user" portion of the URI in the From: header with this
  277. ; value if no fromuser is set
  278. ; Default: empty
  279. ;vmexten=voicemail ; dialplan extension to reach mailbox sets the
  280. ; Message-Account in the MWI notify message
  281. ; defaults to "asterisk"
  282.  
  283. ; Codec negotiation
  284. ;
  285. ; When Asterisk is receiving a call, the codec will initially be set to the
  286. ; first codec in the allowed codecs defined for the user receiving the call
  287. ; that the caller also indicates that it supports. But, after the caller
  288. ; starts sending RTP, Asterisk will switch to using whatever codec the caller
  289. ; is sending.
  290. ;
  291. ; When Asterisk is placing a call, the codec used will be the first codec in
  292. ; the allowed codecs that the callee indicates that it supports. Asterisk will
  293. ; *not* switch to whatever codec the callee is sending.
  294. ;
  295. ;preferred_codec_only=yes ; Respond to a SIP invite with the single most preferred codec
  296. ; rather than advertising all joint codec capabilities. This
  297. ; limits the other side's codec choice to exactly what we prefer.
  298.  
  299. ;disallow=all ; First disallow all codecs
  300. ;allow=ulaw ; Allow codecs in order of preference
  301. ;allow=ilbc ; see https://wiki.asterisk.org/wiki/display/AST/RTP+Packetization
  302. ; for framing options
  303. ;autoframing=yes ; Set packetization based on the remote endpoint's (ptime)
  304. ; preferences. Defaults to no.
  305. ;
  306. ; This option specifies a preference for which music on hold class this channel
  307. ; should listen to when put on hold if the music class has not been set on the
  308. ; channel with Set(CHANNEL(musicclass)=whatever) in the dialplan, and the peer
  309. ; channel putting this one on hold did not suggest a music class.
  310. ;
  311. ; This option may be specified globally, or on a per-user or per-peer basis.
  312. ;
  313. ;mohinterpret=default
  314. ;
  315. ; This option specifies which music on hold class to suggest to the peer channel
  316. ; when this channel places the peer on hold. It may be specified globally or on
  317. ; a per-user or per-peer basis.
  318. ;
  319. ;mohsuggest=default
  320. ;
  321. ;parkinglot=plaza ; Sets the default parking lot for call parking
  322. ; This may also be set for individual users/peers
  323. ; Parkinglots are configured in features.conf
  324. ;language=en ; Default language setting for all users/peers
  325. ; This may also be set for individual users/peers
  326. ;relaxdtmf=yes ; Relax dtmf handling
  327. ;trustrpid = no ; If Remote-Party-ID should be trusted
  328. ;sendrpid = yes ; If Remote-Party-ID should be sent (defaults to no)
  329. ;sendrpid = rpid ; Use the "Remote-Party-ID" header
  330. ; to send the identity of the remote party
  331. ; This is identical to sendrpid=yes
  332. ;sendrpid = pai ; Use the "P-Asserted-Identity" header
  333. ; to send the identity of the remote party
  334. ;rpid_update = no ; In certain cases, the only method by which a connected line
  335. ; change may be immediately transmitted is with a SIP UPDATE request.
  336. ; If communicating with another Asterisk server, and you wish to be able
  337. ; transmit such UPDATE messages to it, then you must enable this option.
  338. ; Otherwise, we will have to wait until we can send a reinvite to
  339. ; transmit the information.
  340. ;trust_id_outbound = no ; Controls whether or not we trust this peer with private identity
  341. ; information (when the remote party has callingpres=prohib or equivalent).
  342. ; no - RPID/PAI headers will not be included for private peer information
  343. ; yes - RPID/PAI headers will include the private peer information. Privacy
  344. ; requirements will be indicated in a Privacy header for sendrpid=pai
  345. ; legacy - RPID/PAI will be included for private peer information. In the
  346. ; case of sendrpid=pai, private data that would be included in them
  347. ; will be anonymized. For sendrpid=rpid, private data may be included
  348. ; but the remote party's domain will be anonymized. The way legacy
  349. ; behaves may violate RFC-3325, but it follows historic behavior.
  350. ; This option is set to 'legacy' by default
  351. ;prematuremedia=no ; Some ISDN links send empty media frames before
  352. ; the call is in ringing or progress state. The SIP
  353. ; channel will then send 183 indicating early media
  354. ; which will be empty - thus users get no ring signal.
  355. ; Setting this to "yes" will stop any media before we have
  356. ; call progress (meaning the SIP channel will not send 183 Session
  357. ; Progress for early media). Default is "yes". Also make sure that
  358. ; the SIP peer is configured with progressinband=never.
  359. ;
  360. ; In order for "noanswer" applications to work, you need to run
  361. ; the progress() application in the priority before the app.
  362.  
  363. ;progressinband=never ; If we should generate in-band ringing always
  364. ; use 'never' to never use in-band signalling, even in cases
  365. ; where some buggy devices might not render it
  366. ; Valid values: yes, no, never Default: never
  367. ;useragent=Asterisk PBX ; Allows you to change the user agent string
  368. ; The default user agent string also contains the Asterisk
  369. ; version. If you don't want to expose this, change the
  370. ; useragent string.
  371. ;promiscredir = no ; If yes, allows 302 or REDIR to non-local SIP address
  372. ; Note that promiscredir when redirects are made to the
  373. ; local system will cause loops since Asterisk is incapable
  374. ; of performing a "hairpin" call.
  375. ;usereqphone = no ; If yes, ";user=phone" is added to uri that contains
  376. ; a valid phone number
  377. ;dtmfmode = rfc2833 ; Set default dtmfmode for sending DTMF. Default: rfc2833
  378. ; Other options:
  379. ; info : SIP INFO messages (application/dtmf-relay)
  380. ; shortinfo : SIP INFO messages (application/dtmf)
  381. ; inband : Inband audio (requires 64 kbit codec -alaw, ulaw)
  382. ; auto : Use rfc2833 if offered, inband otherwise
  383.  
  384. ;compactheaders = yes ; send compact sip headers.
  385. ;
  386. ;videosupport=yes ; Turn on support for SIP video. You need to turn this
  387. ; on in this section to get any video support at all.
  388. ; You can turn it off on a per peer basis if the general
  389. ; video support is enabled, but you can't enable it for
  390. ; one peer only without enabling in the general section.
  391. ; If you set videosupport to "always", then RTP ports will
  392. ; always be set up for video, even on clients that don't
  393. ; support it. This assists callfile-derived calls and
  394. ; certain transferred calls to use always use video when
  395. ; available. [yes|NO|always]
  396.  
  397. ;textsupport=no ; Support for ITU-T T.140 realtime text.
  398. ; The default value is "no".
  399.  
  400. ;maxcallbitrate=384 ; Maximum bitrate for video calls (default 384 kb/s)
  401. ; Videosupport and maxcallbitrate is settable
  402. ; for peers and users as well
  403. ;callevents=no ; generate manager events when sip ua
  404. ; performs events (e.g. hold)
  405. ;authfailureevents=no ; generate manager "peerstatus" events when peer can't
  406. ; authenticate with Asterisk. Peerstatus will be "rejected".
  407. ;alwaysauthreject = yes ; When an incoming INVITE or REGISTER is to be rejected,
  408. ; for any reason, always reject with an identical response
  409. ; equivalent to valid username and invalid password/hash
  410. ; instead of letting the requester know whether there was
  411. ; a matching user or peer for their request. This reduces
  412. ; the ability of an attacker to scan for valid SIP usernames.
  413. ; This option is set to "yes" by default.
  414.  
  415. ;auth_options_requests = yes ; Enabling this option will authenticate OPTIONS requests just like
  416. ; INVITE requests are. By default this option is disabled.
  417.  
  418. ;g726nonstandard = yes ; If the peer negotiates G726-32 audio, use AAL2 packing
  419. ; order instead of RFC3551 packing order (this is required
  420. ; for Sipura and Grandstream ATAs, among others). This is
  421. ; contrary to the RFC3551 specification, the peer _should_
  422. ; be negotiating AAL2-G726-32 instead :-(
  423. ;outboundproxy=proxy.provider.domain ; send outbound signaling to this proxy, not directly to the devices
  424. ;outboundproxy=proxy.provider.domain:8080 ; send outbound signaling to this proxy, not directly to the devices
  425. ;outboundproxy=proxy.provider.domain,force ; Send ALL outbound signalling to proxy, ignoring route: headers
  426. ;outboundproxy=tls://proxy.provider.domain ; same as '=proxy.provider.domain' except we try to connect with tls
  427. ;outboundproxy=192.0.2.1 ; IPv4 address literal (default port is 5060)
  428. ;outboundproxy=2001:db8::1 ; IPv6 address literal (default port is 5060)
  429. ;outboundproxy=192.168.0.2.1:5062 ; IPv4 address literal with explicit port
  430. ;outboundproxy=[2001:db8::1]:5062 ; IPv6 address literal with explicit port
  431. ; ; (could also be tcp,udp) - defining transports on the proxy line only
  432. ; ; applies for the global proxy, otherwise use the transport= option
  433. ;matchexternaddrlocally = yes ; Only substitute the externaddr or externhost setting if it matches
  434. ; your localnet setting. Unless you have some sort of strange network
  435. ; setup you will not need to enable this.
  436.  
  437. ;dynamic_exclude_static = yes ; Disallow all dynamic hosts from registering
  438. ; as any IP address used for staticly defined
  439. ; hosts. This helps avoid the configuration
  440. ; error of allowing your users to register at
  441. ; the same address as a SIP provider.
  442.  
  443. ;contactdeny=0.0.0.0/0.0.0.0 ; Use contactpermit and contactdeny to
  444. ;contactpermit=172.16.0.0/255.255.0.0 ; restrict at what IPs your users may
  445. ; register their phones.
  446.  
  447. ;rtp_engine=asterisk ; RTP engine to use when communicating with the device
  448.  
  449. ;
  450. ; If regcontext is specified, Asterisk will dynamically create and destroy a
  451. ; NoOp priority 1 extension for a given peer who registers or unregisters with
  452. ; us and have a "regexten=" configuration item.
  453. ; Multiple contexts may be specified by separating them with '&'. The
  454. ; actual extension is the 'regexten' parameter of the registering peer or its
  455. ; name if 'regexten' is not provided. If more than one context is provided,
  456. ; the context must be specified within regexten by appending the desired
  457. ; context after '@'. More than one regexten may be supplied if they are
  458. ; separated by '&'. Patterns may be used in regexten.
  459. ;
  460. ;regcontext=sipregistrations
  461. ;regextenonqualify=yes ; Default "no"
  462. ; If you have qualify on and the peer becomes unreachable
  463. ; this setting will enforce inactivation of the regexten
  464. ; extension for the peer
  465. ;legacy_useroption_parsing=yes ; Default "no" ; If you have this option enabled and there are semicolons
  466. ; in the user field of a sip URI, the field be truncated
  467. ; at the first semicolon seen. This effectively makes
  468. ; semicolon a non-usable character for peer names, extensions,
  469. ; and maybe other, less tested things. This can be useful
  470. ; for improving compatability with devices that like to use
  471. ; user options for whatever reason. The behavior is similar to
  472. ; how SIP URI's were typically handled in 1.6.2, hence the name.
  473.  
  474. ; The shrinkcallerid function removes '(', ' ', ')', non-trailing '.', and '-' not
  475. ; in square brackets. For example, the caller id value 555.5555 becomes 5555555
  476. ; when this option is enabled. Disabling this option results in no modification
  477. ; of the caller id value, which is necessary when the caller id represents something
  478. ; that must be preserved. This option can only be used in the [general] section.
  479. ; By default this option is on.
  480. ;
  481. ;shrinkcallerid=yes ; on by default
  482.  
  483.  
  484. ;use_q850_reason = no ; Default "no"
  485. ; Set to yes add Reason header and use Reason header if it is available.
  486. ;
  487. ;------------------------ TLS settings ------------------------------------------------------------
  488. ;tlscertfile=</path/to/certificate.pem> ; Certificate chain (*.pem format only) to use for TLS connections
  489. ; The certificates must be sorted starting with the subject's certificate
  490. ; and followed by intermediate CA certificates if applicable.
  491. ; Default is to look for "asterisk.pem" in current directory
  492.  
  493. ;tlsprivatekey=</path/to/private.pem> ; Private key file (*.pem format only) for TLS connections.
  494. ; If no tlsprivatekey is specified, tlscertfile is searched for
  495. ; for both public and private key.
  496.  
  497. ;tlscafile=</path/to/certificate>
  498. ; If the server your connecting to uses a self signed certificate
  499. ; you should have their certificate installed here so the code can
  500. ; verify the authenticity of their certificate.
  501.  
  502. ;tlscapath=</path/to/ca/dir>
  503. ; A directory full of CA certificates. The files must be named with
  504. ; the CA subject name hash value.
  505. ; (see man SSL_CTX_load_verify_locations for more info)
  506.  
  507. ;tlsdontverifyserver=[yes|no]
  508. ; If set to yes, don't verify the servers certificate when acting as
  509. ; a client. If you don't have the server's CA certificate you can
  510. ; set this and it will connect without requiring tlscafile to be set.
  511. ; Default is no.
  512.  
  513. ;tlscipher=<SSL cipher string>
  514. ; A string specifying which SSL ciphers to use or not use
  515. ; A list of valid SSL cipher strings can be found at:
  516. ; http://www.openssl.org/docs/apps/ciphers.html#CIPHER_STRINGS
  517. ;
  518. ;tlsclientmethod=tlsv1 ; values include tlsv1, sslv3, sslv2.
  519. ; Specify protocol for outbound client connections.
  520. ; If left unspecified, the default is sslv2.
  521. ;
  522. ;--------------------------- SIP timers ----------------------------------------------------
  523. ; These timers are used primarily in INVITE transactions.
  524. ; The default for Timer T1 is 500 ms or the measured run-trip time between
  525. ; Asterisk and the device if you have qualify=yes for the device.
  526. ;
  527. ;t1min=100 ; Minimum roundtrip time for messages to monitored hosts
  528. ; Defaults to 100 ms
  529. ;timert1=500 ; Default T1 timer
  530. ; Defaults to 500 ms or the measured round-trip
  531. ; time to a peer (qualify=yes).
  532. ;timerb=32000 ; Call setup timer. If a provisional response is not received
  533. ; in this amount of time, the call will autocongest
  534. ; Defaults to 64*timert1
  535.  
  536. ;--------------------------- RTP timers ----------------------------------------------------
  537. ; These timers are currently used for both audio and video streams. The RTP timeouts
  538. ; are only applied to the audio channel.
  539. ; The settings are settable in the global section as well as per device
  540. ;
  541. ;rtptimeout=60 ; Terminate call if 60 seconds of no RTP or RTCP activity
  542. ; on the audio channel
  543. ; when we're not on hold. This is to be able to hangup
  544. ; a call in the case of a phone disappearing from the net,
  545. ; like a powerloss or grandma tripping over a cable.
  546. ;rtpholdtimeout=300 ; Terminate call if 300 seconds of no RTP or RTCP activity
  547. ; on the audio channel
  548. ; when we're on hold (must be > rtptimeout)
  549. ;rtpkeepalive=<secs> ; Send keepalives in the RTP stream to keep NAT open
  550. ; (default is off - zero)
  551.  
  552. ;--------------------------- SIP Session-Timers (RFC 4028)------------------------------------
  553. ; SIP Session-Timers provide an end-to-end keep-alive mechanism for active SIP sessions.
  554. ; This mechanism can detect and reclaim SIP channels that do not terminate through normal
  555. ; signaling procedures. Session-Timers can be configured globally or at a user/peer level.
  556. ; The operation of Session-Timers is driven by the following configuration parameters:
  557. ;
  558. ; * session-timers - Session-Timers feature operates in the following three modes:
  559. ; originate : Request and run session-timers always
  560. ; accept : Run session-timers only when requested by other UA
  561. ; refuse : Do not run session timers in any case
  562. ; The default mode of operation is 'accept'.
  563. ; * session-expires - Maximum session refresh interval in seconds. Defaults to 1800 secs.
  564. ; * session-minse - Minimum session refresh interval in seconds. Defualts to 90 secs.
  565. ; * session-refresher - The session refresher (uac|uas). Defaults to 'uas'.
  566. ; uac - Default to the caller initially refreshing when possible
  567. ; uas - Default to the callee initially refreshing when possible
  568. ;
  569. ; Note that, due to recommendations in RFC 4028, Asterisk will always honor the other
  570. ; endpoint's preference for who will handle refreshes. Asterisk will never override the
  571. ; preferences of the other endpoint. Doing so could result in Asterisk and the endpoint
  572. ; fighting over who sends the refreshes. This holds true for the initiation of session
  573. ; timers and subsequent re-INVITE requests whether Asterisk is the caller or callee, or
  574. ; whether Asterisk is currently the refresher or not.
  575. ;
  576. ;session-timers=originate
  577. ;session-expires=600
  578. ;session-minse=90
  579. ;session-refresher=uac
  580. ;
  581. ;--------------------------- SIP DEBUGGING ---------------------------------------------------
  582. ;sipdebug = yes ; Turn on SIP debugging by default, from
  583. ; the moment the channel loads this configuration.
  584. ; NOTE: You cannot use the CLI to turn it off. You'll
  585. ; need to edit this and reload the config.
  586. ;recordhistory=yes ; Record SIP history by default
  587. ; (see sip history / sip no history)
  588. ;dumphistory=yes ; Dump SIP history at end of SIP dialogue
  589. ; SIP history is output to the DEBUG logging channel
  590.  
  591.  
  592. ;--------------------------- STATUS NOTIFICATIONS (SUBSCRIPTIONS) ----------------------------
  593. ; You can subscribe to the status of extensions with a "hint" priority
  594. ; (See extensions.conf.sample for examples)
  595. ; chan_sip support two major formats for notifications: dialog-info and SIMPLE
  596. ;
  597. ; You will get more detailed reports (busy etc) if you have a call counter enabled
  598. ; for a device.
  599. ;
  600. ; If you set the busylevel, we will indicate busy when we have a number of calls that
  601. ; matches the busylevel treshold.
  602. ;
  603. ; For queues, you will need this level of detail in status reporting, regardless
  604. ; if you use SIP subscriptions. Queues and manager use the same internal interface
  605. ; for reading status information.
  606. ;
  607. ; Note: Subscriptions does not work if you have a realtime dialplan and use the
  608. ; realtime switch.
  609. ;
  610. ;allowsubscribe=no ; Disable support for subscriptions. (Default is yes)
  611. ;subscribecontext = default ; Set a specific context for SUBSCRIBE requests
  612. ; Useful to limit subscriptions to local extensions
  613. ; Settable per peer/user also
  614. ;notifyringing = no ; Control whether subscriptions already INUSE get sent
  615. ; RINGING when another call is sent (default: yes)
  616. ;notifyhold = yes ; Notify subscriptions on HOLD state (default: no)
  617. ; Turning on notifyringing and notifyhold will add a lot
  618. ; more database transactions if you are using realtime.
  619. ;notifycid = yes ; Control whether caller ID information is sent along with
  620. ; dialog-info+xml notifications (supported by snom phones).
  621. ; Note that this feature will only work properly when the
  622. ; incoming call is using the same extension and context that
  623. ; is being used as the hint for the called extension. This means
  624. ; that it won't work when using subscribecontext for your sip
  625. ; user or peer (if subscribecontext is different than context).
  626. ; This is also limited to a single caller, meaning that if an
  627. ; extension is ringing because multiple calls are incoming,
  628. ; only one will be used as the source of caller ID. Specify
  629. ; 'ignore-context' to ignore the called context when looking
  630. ; for the caller's channel. The default value is 'no.' Setting
  631. ; notifycid to 'ignore-context' also causes call-pickups attempted
  632. ; via SNOM's NOTIFY mechanism to set the context for the call pickup
  633. ; to PICKUPMARK.
  634. ;callcounter = yes ; Enable call counters on devices. This can be set per
  635. ; device too.
  636.  
  637. ;----------------------------------------- T.38 FAX SUPPORT ----------------------------------
  638. ;
  639. ; This setting is available in the [general] section as well as in device configurations.
  640. ; Setting this to yes enables T.38 FAX (UDPTL) on SIP calls; it defaults to off.
  641. ;
  642. ; t38pt_udptl = yes ; Enables T.38 with FEC error correction.
  643. ; t38pt_udptl = yes,fec ; Enables T.38 with FEC error correction.
  644. ; t38pt_udptl = yes,redundancy ; Enables T.38 with redundancy error correction.
  645. ; t38pt_udptl = yes,none ; Enables T.38 with no error correction.
  646. ;
  647. ; In some cases, T.38 endpoints will provide a T38FaxMaxDatagram value (during T.38 setup) that
  648. ; is based on an incorrect interpretation of the T.38 recommendation, and results in failures
  649. ; because Asterisk does not believe it can send T.38 packets of a reasonable size to that
  650. ; endpoint (Cisco media gateways are one example of this situation). In these cases, during a
  651. ; T.38 call you will see warning messages on the console/in the logs from the Asterisk UDPTL
  652. ; stack complaining about lack of buffer space to send T.38 FAX packets. If this occurs, you
  653. ; can set an override (globally, or on a per-device basis) to make Asterisk ignore the
  654. ; T38FaxMaxDatagram value specified by the other endpoint, and use a configured value instead.
  655. ; This can be done by appending 'maxdatagram=<value>' to the t38pt_udptl configuration option,
  656. ; like this:
  657. ;
  658. ; t38pt_udptl = yes,fec,maxdatagram=400 ; Enables T.38 with FEC error correction and overrides
  659. ; ; the other endpoint's provided value to assume we can
  660. ; ; send 400 byte T.38 FAX packets to it.
  661. ;
  662. ; FAX detection will cause the SIP channel to jump to the 'fax' extension (if it exists)
  663. ; based one or more events being detected. The events that can be detected are an incoming
  664. ; CNG tone or an incoming T.38 re-INVITE request.
  665. ;
  666. ; faxdetect = yes ; Default 'no', 'yes' enables both CNG and T.38 detection
  667. ; faxdetect = cng ; Enables only CNG detection
  668. ; faxdetect = t38 ; Enables only T.38 detection
  669. ;
  670. ;----------------------------------------- OUTBOUND SIP REGISTRATIONS ------------------------
  671. ; Asterisk can register as a SIP user agent to a SIP proxy (provider)
  672. ; Format for the register statement is:
  673. ; register => [peer?][transport://]user[@domain][:secret[:authuser]]@host[:port][/extension][~expiry]
  674. ;
  675. ;
  676. ;
  677. ; domain is either
  678. ; - domain in DNS
  679. ; - host name in DNS
  680. ; - the name of a peer defined below or in realtime
  681. ; The domain is where you register your username, so your SIP uri you are registering to
  682. ; is username@domain
  683. ;
  684. ; If no extension is given, the 's' extension is used. The extension needs to
  685. ; be defined in extensions.conf to be able to accept calls from this SIP proxy
  686. ; (provider).
  687. ;
  688. ; A similar effect can be achieved by adding a "callbackextension" option in a peer section.
  689. ; this is equivalent to having the following line in the general section:
  690. ;
  691. ; register => username:secret@host/callbackextension
  692. ;
  693. ; and more readable because you don't have to write the parameters in two places
  694. ; (note that the "port" is ignored - this is a bug that should be fixed).
  695. ;
  696. ; Note that a register= line doesn't mean that we will match the incoming call in any
  697. ; other way than described above. If you want to control where the call enters your
  698. ; dialplan, which context, you want to define a peer with the hostname of the provider's
  699. ; server. If the provider has multiple servers to place calls to your system, you need
  700. ; a peer for each server.
  701. ;
  702. ; Beginning with Asterisk version 1.6.2, the "user" portion of the register line may
  703. ; contain a port number. Since the logical separator between a host and port number is a
  704. ; ':' character, and this character is already used to separate between the optional "secret"
  705. ; and "authuser" portions of the line, there is a bit of a hoop to jump through if you wish
  706. ; to use a port here. That is, you must explicitly provide a "secret" and "authuser" even if
  707. ; they are blank. See the third example below for an illustration.
  708. ;
  709. ;
  710. ; Examples:
  711. ;
  712. ;register => 1234:password@mysipprovider.com
  713. ;
  714. ; This will pass incoming calls to the 's' extension
  715. ;
  716. ;
  717. ;register => 2345:password@sip_proxy/1234
  718. ;
  719. ; Register 2345 at sip provider 'sip_proxy'. Calls from this provider
  720. ; connect to local extension 1234 in extensions.conf, default context,
  721. ; unless you configure a [sip_proxy] section below, and configure a
  722. ; context.
  723. ; Tip 1: Avoid assigning hostname to a sip.conf section like [provider.com]
  724. ; Tip 2: Use separate inbound and outbound sections for SIP providers
  725. ; (instead of type=friend) if you have calls in both directions
  726. ;
  727. ;register => 3456@mydomain:5082::@mysipprovider.com
  728. ;
  729. ; Note that in this example, the optional authuser and secret portions have
  730. ; been left blank because we have specified a port in the user section
  731. ;
  732. ;register => tls://username:xxxxxx@sip-tls-proxy.example.org
  733. ;
  734. ; The 'transport' part defaults to 'udp' but may also be 'tcp' or 'tls'.
  735. ; Using 'udp://' explicitly is also useful in case the username part
  736. ; contains a '/' ('user/name').
  737.  
  738. ;registertimeout=20 ; retry registration calls every 20 seconds (default)
  739. ;registerattempts=10 ; Number of registration attempts before we give up
  740. ; 0 = continue forever, hammering the other server
  741. ; until it accepts the registration
  742. ; Default is 0 tries, continue forever
  743. ;register_retry_403=yes ; Treat 403 responses to registrations as if they were
  744. ; 401 responses and continue retrying according to normal
  745. ; retry rules.
  746.  
  747. ;----------------------------------------- OUTBOUND MWI SUBSCRIPTIONS -------------------------
  748. ; Asterisk can subscribe to receive the MWI from another SIP server and store it locally for retrieval
  749. ; by other phones. At this time, you can only subscribe using UDP as the transport.
  750. ; Format for the mwi register statement is:
  751. ; mwi => user[:secret[:authuser]]@host[:port]/mailbox
  752. ;
  753. ; Examples:
  754. ;mwi => 1234:password@mysipprovider.com/1234
  755. ;mwi => 1234:password@myportprovider.com:6969/1234
  756. ;mwi => 1234:password:authuser@myauthprovider.com/1234
  757. ;mwi => 1234:password:authuser@myauthportprovider.com:6969/1234
  758. ;
  759. ; MWI received will be stored in the 1234 mailbox of the SIP_Remote context. It can be used by other phones by following the below:
  760. ; mailbox=1234@SIP_Remote
  761. ;----------------------------------------- NAT SUPPORT ------------------------
  762. ;
  763. ; WARNING: SIP operation behind a NAT is tricky and you really need
  764. ; to read and understand well the following section.
  765. ;
  766. ; When Asterisk is behind a NAT device, the "local" address (and port) that
  767. ; a socket is bound to has different values when seen from the inside or
  768. ; from the outside of the NATted network. Unfortunately this address must
  769. ; be communicated to the outside (e.g. in SIP and SDP messages), and in
  770. ; order to determine the correct value Asterisk needs to know:
  771. ;
  772. ; + whether it is talking to someone "inside" or "outside" of the NATted network.
  773. ; This is configured by assigning the "localnet" parameter with a list
  774. ; of network addresses that are considered "inside" of the NATted network.
  775. ; IF LOCALNET IS NOT SET, THE EXTERNAL ADDRESS WILL NOT BE SET CORRECTLY.
  776. ; Multiple entries are allowed, e.g. a reasonable set is the following:
  777. ;
  778. ; localnet=192.168.0.0/255.255.0.0 ; RFC 1918 addresses
  779. ; localnet=10.0.0.0/255.0.0.0 ; Also RFC1918
  780. ; localnet=172.16.0.0/12 ; Another RFC1918 with CIDR notation
  781. ; localnet=169.254.0.0/255.255.0.0 ; Zero conf local network
  782. ;
  783. ; + the "externally visible" address and port number to be used when talking
  784. ; to a host outside the NAT. This information is derived by one of the
  785. ; following (mutually exclusive) config file parameters:
  786. ;
  787. ; a. "externaddr = hostname[:port]" specifies a static address[:port] to
  788. ; be used in SIP and SDP messages.
  789. ; The hostname is looked up only once, when [re]loading sip.conf .
  790. ; If a port number is not present, use the port specified in the "udpbindaddr"
  791. ; (which is not guaranteed to work correctly, because a NAT box might remap the
  792. ; port number as well as the address).
  793. ; This approach can be useful if you have a NAT device where you can
  794. ; configure the mapping statically. Examples:
  795. ;
  796. ; externaddr = 12.34.56.78 ; use this address.
  797. ; externaddr = 12.34.56.78:9900 ; use this address and port.
  798. ; externaddr = mynat.my.org:12600 ; Public address of my nat box.
  799. ; externtcpport = 9900 ; The externally mapped tcp port, when Asterisk is behind a static NAT or PAT.
  800. ; ; externtcpport will default to the externaddr or externhost port if either one is set.
  801. ; externtlsport = 12600 ; The externally mapped tls port, when Asterisk is behind a static NAT or PAT.
  802. ; ; externtlsport port will default to the RFC designated port of 5061.
  803. ;
  804. ; b. "externhost = hostname[:port]" is similar to "externaddr" except
  805. ; that the hostname is looked up every "externrefresh" seconds
  806. ; (default 10s). This can be useful when your NAT device lets you choose
  807. ; the port mapping, but the IP address is dynamic.
  808. ; Beware, you might suffer from service disruption when the name server
  809. ; resolution fails. Examples:
  810. ;
  811. ; externhost=foo.dyndns.net ; refreshed periodically
  812. ; externrefresh=180 ; change the refresh interval
  813. ;
  814. ; Note that at the moment all these mechanism work only for the SIP socket.
  815. ; The IP address discovered with externaddr/externhost is reused for
  816. ; media sessions as well, but the port numbers are not remapped so you
  817. ; may still experience problems.
  818. ;
  819. ; NOTE 1: in some cases, NAT boxes will use different port numbers in
  820. ; the internal<->external mapping. In these cases, the "externaddr" and
  821. ; "externhost" might not help you configure addresses properly.
  822. ;
  823. ; NOTE 2: when using "externaddr" or "externhost", the address part is
  824. ; also used as the external address for media sessions. Thus, the port
  825. ; information in the SDP may be wrong!
  826. ;
  827. ; In addition to the above, Asterisk has an additional "nat" parameter to
  828. ; address NAT-related issues in incoming SIP or media sessions.
  829. ; In particular, depending on the 'nat= ' settings described below, Asterisk
  830. ; may override the address/port information specified in the SIP/SDP messages,
  831. ; and use the information (sender address) supplied by the network stack instead.
  832. ; However, this is only useful if the external traffic can reach us.
  833. ; The following settings are allowed (both globally and in individual sections):
  834. ;
  835. ; nat = no ; Use rport if the remote side says to use it.
  836. ; nat = force_rport ; Force rport to always be on. (default)
  837. ; nat = yes ; Force rport to always be on and perform comedia RTP handling.
  838. ; nat = comedia ; Use rport if the remote side says to use it and perform comedia RTP handling.
  839. ;
  840. ; 'comedia RTP handling' refers to the technique of sending RTP to the port that the
  841. ; the other endpoint's RTP arrived from, and means 'connection-oriented media'. This is
  842. ; only partially related to RFC 4145 which was referred to as COMEDIA while it was in
  843. ; draft form. This method is used to accomodate endpoints that may be located behind
  844. ; NAT devices, and as such the port number they tell Asterisk to send RTP packets to
  845. ; for their media streams is not actual port number that will be used on the nearer
  846. ; side of the NAT.
  847. ;
  848. ; IT IS IMPORTANT TO NOTE that if the nat setting in the general section differs from
  849. ; the nat setting in a peer definition, then the peer username will be discoverable
  850. ; by outside parties as Asterisk will respond to different ports for defined and
  851. ; undefined peers. For this reason it is recommended to ONLY DEFINE NAT SETTINGS IN THE
  852. ; GENERAL SECTION. Specifically, if nat=force_rport in one section and nat=no in the
  853. ; other, then valid peers with settings differing from those in the general section will
  854. ; be discoverable.
  855. ;
  856. ; In addition to these settings, Asterisk *always* uses 'symmetric RTP' mode as defined by
  857. ; RFC 4961; Asterisk will always send RTP packets from the same port number it expects
  858. ; to receive them on.
  859. ;
  860. ; The IP address used for media (audio, video, and text) in the SDP can also be overridden by using
  861. ; the media_address configuration option. This is only applicable to the general section and
  862. ; can not be set per-user or per-peer.
  863. ;
  864. ; media_address = 172.16.42.1
  865. ;
  866. ; Through the use of the res_stun_monitor module, Asterisk has the ability to detect when the
  867. ; perceived external network address has changed. When the stun_monitor is installed and
  868. ; configured, chan_sip will renew all outbound registrations when the monitor detects any sort
  869. ; of network change has occurred. By default this option is enabled, but only takes effect once
  870. ; res_stun_monitor is configured. If res_stun_monitor is enabled and you wish to not
  871. ; generate all outbound registrations on a network change, use the option below to disable
  872. ; this feature.
  873. ;
  874. ; subscribe_network_change_event = yes ; on by default
  875.  
  876. ;----------------------------------- MEDIA HANDLING --------------------------------
  877. ; By default, Asterisk tries to re-invite media streams to an optimal path. If there's
  878. ; no reason for Asterisk to stay in the media path, the media will be redirected.
  879. ; This does not really work well in the case where Asterisk is outside and the
  880. ; clients are on the inside of a NAT. In that case, you want to set directmedia=nonat.
  881. ;
  882. ;directmedia=yes ; Asterisk by default tries to redirect the
  883. ; RTP media stream to go directly from
  884. ; the caller to the callee. Some devices do not
  885. ; support this (especially if one of them is behind a NAT).
  886. ; The default setting is YES. If you have all clients
  887. ; behind a NAT, or for some other reason want Asterisk to
  888. ; stay in the audio path, you may want to turn this off.
  889.  
  890. ; This setting also affect direct RTP
  891. ; at call setup (a new feature in 1.4 - setting up the
  892. ; call directly between the endpoints instead of sending
  893. ; a re-INVITE).
  894.  
  895. ; Additionally this option does not disable all reINVITE operations.
  896. ; It only controls Asterisk generating reINVITEs for the specific
  897. ; purpose of setting up a direct media path. If a reINVITE is
  898. ; needed to switch a media stream to inactive (when placed on
  899. ; hold) or to T.38, it will still be done, regardless of this
  900. ; setting. Note that direct T.38 is not supported.
  901.  
  902. ;directmedia=nonat ; An additional option is to allow media path redirection
  903. ; (reinvite) but only when the peer where the media is being
  904. ; sent is known to not be behind a NAT (as the RTP core can
  905. ; determine it based on the apparent IP address the media
  906. ; arrives from).
  907.  
  908. ;directmedia=update ; Yet a third option... use UPDATE for media path redirection,
  909. ; instead of INVITE. This can be combined with 'nonat', as
  910. ; 'directmedia=update,nonat'. It implies 'yes'.
  911.  
  912. ;directmedia=outgoing ; When sending directmedia reinvites, do not send an immediate
  913. ; reinvite on an incoming call leg. This option is useful when
  914. ; peered with another SIP user agent that is known to send
  915. ; immediate direct media reinvites upon call establishment. Setting
  916. ; the option in this situation helps to prevent potential glares.
  917. ; Setting this option implies 'yes'.
  918.  
  919. ;directrtpsetup=yes ; Enable the new experimental direct RTP setup. This sets up
  920. ; the call directly with media peer-2-peer without re-invites.
  921. ; Will not work for video and cases where the callee sends
  922. ; RTP payloads and fmtp headers in the 200 OK that does not match the
  923. ; callers INVITE. This will also fail if directmedia is enabled when
  924. ; the device is actually behind NAT.
  925.  
  926. ;directmediadeny=0.0.0.0/0 ; Use directmediapermit and directmediadeny to restrict
  927. ;directmediapermit=172.16.0.0/16; which peers should be able to pass directmedia to each other
  928. ; (There is no default setting, this is just an example)
  929. ; Use this if some of your phones are on IP addresses that
  930. ; can not reach each other directly. This way you can force
  931. ; RTP to always flow through asterisk in such cases.
  932.  
  933. ;ignoresdpversion=yes ; By default, Asterisk will honor the session version
  934. ; number in SDP packets and will only modify the SDP
  935. ; session if the version number changes. This option will
  936. ; force asterisk to ignore the SDP session version number
  937. ; and treat all SDP data as new data. This is required
  938. ; for devices that send us non standard SDP packets
  939. ; (observed with Microsoft OCS). By default this option is
  940. ; off.
  941.  
  942. ;sdpsession=Asterisk PBX ; Allows you to change the SDP session name string, (s=)
  943. ; Like the useragent parameter, the default user agent string
  944. ; also contains the Asterisk version.
  945. ;sdpowner=root ; Allows you to change the username field in the SDP owner string, (o=)
  946. ; This field MUST NOT contain spaces
  947. ;encryption=no ; Whether to offer SRTP encrypted media (and only SRTP encrypted media)
  948. ; on outgoing calls to a peer. Calls will fail with HANGUPCAUSE=58 if
  949. ; the peer does not support SRTP. Defaults to no.
  950.  
  951. ;----------------------------------------- REALTIME SUPPORT ------------------------
  952. ; For additional information on ARA, the Asterisk Realtime Architecture,
  953. ; please read https://wiki.asterisk.org/wiki/display/AST/Realtime+Database+Configuration
  954. ;
  955. ;rtcachefriends=yes ; Cache realtime friends by adding them to the internal list
  956. ; just like friends added from the config file only on a
  957. ; as-needed basis? (yes|no)
  958.  
  959. ;rtsavesysname=yes ; Save systemname in realtime database at registration
  960. ; Default= no
  961.  
  962. ;rtupdate=yes ; Send registry updates to database using realtime? (yes|no)
  963. ; If set to yes, when a SIP UA registers successfully, the ip address,
  964. ; the origination port, the registration period, and the username of
  965. ; the UA will be set to database via realtime.
  966. ; If not present, defaults to 'yes'. Note: realtime peers will
  967. ; probably not function across reloads in the way that you expect, if
  968. ; you turn this option off.
  969. ;rtautoclear=yes ; Auto-Expire friends created on the fly on the same schedule
  970. ; as if it had just registered? (yes|no|<seconds>)
  971. ; If set to yes, when the registration expires, the friend will
  972. ; vanish from the configuration until requested again. If set
  973. ; to an integer, friends expire within this number of seconds
  974. ; instead of the registration interval.
  975.  
  976. ;ignoreregexpire=yes ; Enabling this setting has two functions:
  977. ;
  978. ; For non-realtime peers, when their registration expires, the
  979. ; information will _not_ be removed from memory or the Asterisk database
  980. ; if you attempt to place a call to the peer, the existing information
  981. ; will be used in spite of it having expired
  982. ;
  983. ; For realtime peers, when the peer is retrieved from realtime storage,
  984. ; the registration information will be used regardless of whether
  985. ; it has expired or not; if it expires while the realtime peer
  986. ; is still in memory (due to caching or other reasons), the
  987. ; information will not be removed from realtime storage
  988.  
  989. ;----------------------------------------- SIP DOMAIN SUPPORT ------------------------
  990. ; Incoming INVITE and REFER messages can be matched against a list of 'allowed'
  991. ; domains, each of which can direct the call to a specific context if desired.
  992. ; By default, all domains are accepted and sent to the default context or the
  993. ; context associated with the user/peer placing the call.
  994. ; REGISTER to non-local domains will be automatically denied if a domain
  995. ; list is configured.
  996. ;
  997. ; Domains can be specified using:
  998. ; domain=<domain>[,<context>]
  999. ; Examples:
  1000. ; domain=myasterisk.dom
  1001. ; domain=customer.com,customer-context
  1002. ;
  1003. ; In addition, all the 'default' domains associated with a server should be
  1004. ; added if incoming request filtering is desired.
  1005. ; autodomain=yes
  1006. ;
  1007. ; To disallow requests for domains not serviced by this server:
  1008. ; allowexternaldomains=no
  1009.  
  1010. ;domain=mydomain.tld,mydomain-incoming
  1011. ; Add domain and configure incoming context
  1012. ; for external calls to this domain
  1013. ;domain=1.2.3.4 ; Add IP address as local domain
  1014. ; You can have several "domain" settings
  1015. ;allowexternaldomains=no ; Disable INVITE and REFER to non-local domains
  1016. ; Default is yes
  1017. ;autodomain=yes ; Turn this on to have Asterisk add local host
  1018. ; name and local IP to domain list.
  1019.  
  1020. ; fromdomain=mydomain.tld ; When making outbound SIP INVITEs to
  1021. ; non-peers, use your primary domain "identity"
  1022. ; for From: headers instead of just your IP
  1023. ; address. This is to be polite and
  1024. ; it may be a mandatory requirement for some
  1025. ; destinations which do not have a prior
  1026. ; account relationship with your server.
  1027.  
  1028. ;------------------------------ Advice of Charge CONFIGURATION --------------------------
  1029. ; snom_aoc_enabled = yes; ; This options turns on and off support for sending AOC-D and
  1030. ; AOC-E to snom endpoints. This option can be used both in the
  1031. ; peer and global scope. The default for this option is off.
  1032.  
  1033.  
  1034. ;------------------------------ JITTER BUFFER CONFIGURATION --------------------------
  1035. ; jbenable = yes ; Enables the use of a jitterbuffer on the receiving side of a
  1036. ; SIP channel. Defaults to "no". An enabled jitterbuffer will
  1037. ; be used only if the sending side can create and the receiving
  1038. ; side can not accept jitter. The SIP channel can accept jitter,
  1039. ; thus a jitterbuffer on the receive SIP side will be used only
  1040. ; if it is forced and enabled.
  1041.  
  1042. ; jbforce = no ; Forces the use of a jitterbuffer on the receive side of a SIP
  1043. ; channel. Defaults to "no".
  1044.  
  1045. ; jbmaxsize = 200 ; Max length of the jitterbuffer in milliseconds.
  1046.  
  1047. ; jbresyncthreshold = 1000 ; Jump in the frame timestamps over which the jitterbuffer is
  1048. ; resynchronized. Useful to improve the quality of the voice, with
  1049. ; big jumps in/broken timestamps, usually sent from exotic devices
  1050. ; and programs. Defaults to 1000.
  1051.  
  1052. ; jbimpl = fixed ; Jitterbuffer implementation, used on the receiving side of a SIP
  1053. ; channel. Two implementations are currently available - "fixed"
  1054. ; (with size always equals to jbmaxsize) and "adaptive" (with
  1055. ; variable size, actually the new jb of IAX2). Defaults to fixed.
  1056.  
  1057. ; jbtargetextra = 40 ; This option only affects the jb when 'jbimpl = adaptive' is set.
  1058. ; The option represents the number of milliseconds by which the new jitter buffer
  1059. ; will pad its size. the default is 40, so without modification, the new
  1060. ; jitter buffer will set its size to the jitter value plus 40 milliseconds.
  1061. ; increasing this value may help if your network normally has low jitter,
  1062. ; but occasionally has spikes.
  1063.  
  1064. ; jblog = no ; Enables jitterbuffer frame logging. Defaults to "no".
  1065.  
  1066. ;----------------------------- SIP_CAUSE reporting ---------------------------------
  1067. ; storesipcause = no ; This option causes chan_sip to set the
  1068. ; HASH(SIP_CAUSE,<channel name>) channel variable
  1069. ; to the value of the last sip response.
  1070. ; WARNING: enabling this option carries a
  1071. ; significant performance burden. It should only
  1072. ; be used in low call volume situations. This
  1073. ; option defaults to "no".
  1074.  
  1075. ;-----------------------------------------------------------------------------------
  1076.  
  1077. [authentication]
  1078. ; Global credentials for outbound calls, i.e. when a proxy challenges your
  1079. ; Asterisk server for authentication. These credentials override
  1080. ; any credentials in peer/register definition if realm is matched.
  1081. ;
  1082. ; This way, Asterisk can authenticate for outbound calls to other
  1083. ; realms. We match realm on the proxy challenge and pick an set of
  1084. ; credentials from this list
  1085. ; Syntax:
  1086. ; auth = <user>:<secret>@<realm>
  1087. ; auth = <user>#<md5secret>@<realm>
  1088. ; Example:
  1089. ;auth=mark:topsecret@digium.com
  1090. ;
  1091. ; You may also add auth= statements to [peer] definitions
  1092. ; Peer auth= override all other authentication settings if we match on realm
  1093.  
  1094. ;------------------------------------------------------------------------------
  1095. ; DEVICE CONFIGURATION
  1096. ;
  1097. ; SIP entities have a 'type' which determines their roles within Asterisk.
  1098. ; * For entities with 'type=peer':
  1099. ; Peers handle both inbound and outbound calls and are matched by ip/port, so for
  1100. ; The case of incoming calls from the peer, the IP address must match in order for
  1101. ; The invitation to work. This means calls made from either direction won't work if
  1102. ; The peer is unregistered while host=dynamic or if the host is otherise not set to
  1103. ; the correct IP of the sender.
  1104. ; * For entities with 'type=user':
  1105. ; Asterisk users handle inbound calls only (meaning they call Asterisk, Asterisk can't
  1106. ; call them) and are matched by their authorization information (authname and secret).
  1107. ; Asterisk doesn't rely on their IP and will accept calls regardless of the host setting
  1108. ; as long as the incoming SIP invite authorizes successfully.
  1109. ; * For entities with 'type=friend':
  1110. ; Asterisk will create the entity as both a friend and a peer. Asterisk will accept
  1111. ; calls from friends like it would for users, requiring only that the authorization
  1112. ; matches rather than the IP address. Since it is also a peer, a friend entity can
  1113. ; be called as long as its IP is known to Asterisk. In the case of host=dynamic,
  1114. ; this means it is necessary for the entity to register before Asterisk can call it.
  1115. ;
  1116. ; Use remotesecret for outbound authentication, and secret for authenticating
  1117. ; inbound requests. For historical reasons, if no remotesecret is supplied for an
  1118. ; outbound registration or call, the secret will be used.
  1119. ;
  1120. ; For device names, we recommend using only a-z, numerics (0-9) and underscore
  1121. ;
  1122. ; For local phones, type=friend works most of the time
  1123. ;
  1124. ; If you have one-way audio, you probably have NAT problems.
  1125. ; If Asterisk is on a public IP, and the phone is inside of a NAT device
  1126. ; you will need to configure nat option for those phones.
  1127. ; Also, turn on qualify=yes to keep the nat session open
  1128. ;
  1129. ; Configuration options available
  1130. ; --------------------
  1131. ; context
  1132. ; callingpres
  1133. ; permit
  1134. ; deny
  1135. ; secret
  1136. ; md5secret
  1137. ; remotesecret
  1138. ; transport
  1139. ; dtmfmode
  1140. ; directmedia
  1141. ; nat
  1142. ; callgroup
  1143. ; pickupgroup
  1144. ; language
  1145. ; allow
  1146. ; disallow
  1147. ; autoframing
  1148. ; insecure
  1149. ; trustrpid
  1150. ; trust_id_outbound
  1151. ; progressinband
  1152. ; promiscredir
  1153. ; useclientcode
  1154. ; accountcode
  1155. ; setvar
  1156. ; callerid
  1157. ; amaflags
  1158. ; callcounter
  1159. ; busylevel
  1160. ; allowoverlap
  1161. ; allowsubscribe
  1162. ; allowtransfer
  1163. ; ignoresdpversion
  1164. ; subscribecontext
  1165. ; template
  1166. ; videosupport
  1167. ; maxcallbitrate
  1168. ; rfc2833compensate
  1169. ; mailbox
  1170. ; session-timers
  1171. ; session-expires
  1172. ; session-minse
  1173. ; session-refresher
  1174. ; t38pt_usertpsource
  1175. ; regexten
  1176. ; fromdomain
  1177. ; fromuser
  1178. ; host
  1179. ; port
  1180. ; qualify
  1181. ; defaultip
  1182. ; defaultuser
  1183. ; rtptimeout
  1184. ; rtpholdtimeout
  1185. ; sendrpid
  1186. ; outboundproxy
  1187. ; rfc2833compensate
  1188. ; callbackextension
  1189. ; timert1
  1190. ; timerb
  1191. ; qualifyfreq
  1192. ; t38pt_usertpsource
  1193. ; contactpermit ; Limit what a host may register as (a neat trick
  1194. ; contactdeny ; is to register at the same IP as a SIP provider,
  1195. ; ; then call oneself, and get redirected to that
  1196. ; ; same location).
  1197. ; directmediapermit
  1198. ; directmediadeny
  1199. ; unsolicited_mailbox
  1200. ; use_q850_reason
  1201. ; maxforwards
  1202. ; encryption
  1203.  
  1204. ;[sip_proxy]
  1205. ; For incoming calls only. Example: FWD (Free World Dialup)
  1206. ; We match on IP address of the proxy for incoming calls
  1207. ; since we can not match on username (caller id)
  1208. ;type=peer
  1209. ;context=from-fwd
  1210. ;host=fwd.pulver.com
  1211.  
  1212. ;[sip_proxy-out]
  1213. ;type=peer ; we only want to call out, not be called
  1214. ;remotesecret=guessit ; Our password to their service
  1215. ;defaultuser=yourusername ; Authentication user for outbound proxies
  1216. ;fromuser=yourusername ; Many SIP providers require this!
  1217. ;fromdomain=provider.sip.domain
  1218. ;host=box.provider.com
  1219. ;transport=udp,tcp ; This sets the default transport type to udp for outgoing, and will
  1220. ; ; accept both tcp and udp. The default transport type is only used for
  1221. ; ; outbound messages until a Registration takes place. During the
  1222. ; ; peer Registration the transport type may change to another supported
  1223. ; ; type if the peer requests so.
  1224.  
  1225. ;usereqphone=yes ; This provider requires ";user=phone" on URI
  1226. ;callcounter=yes ; Enable call counter
  1227. ;busylevel=2 ; Signal busy at 2 or more calls
  1228. ;outboundproxy=proxy.provider.domain ; send outbound signaling to this proxy, not directly to the peer
  1229. ;port=80 ; The port number we want to connect to on the remote side
  1230. ; Also used as "defaultport" in combination with "defaultip" settings
  1231.  
  1232. ;--- sample definition for a provider
  1233. ;[provider1]
  1234. ;type=peer
  1235. ;host=sip.provider1.com
  1236. ;fromuser=4015552299 ; how your provider knows you
  1237. ;remotesecret=youwillneverguessit ; The password we use to authenticate to them
  1238. ;secret=gissadetdu ; The password they use to contact us
  1239. ;callbackextension=123 ; Register with this server and require calls coming back to this extension
  1240. ;transport=udp,tcp ; This sets the transport type to udp for outgoing, and will
  1241. ; ; accept both tcp and udp. Default is udp. The first transport
  1242. ; ; listed will always be used for outgoing connections.
  1243. ;unsolicited_mailbox=4015552299 ; If the remote SIP server sends an unsolicited MWI NOTIFY message the new/old
  1244. ; ; message count will be stored in the configured virtual mailbox. It can be used
  1245. ; ; by any device supporting MWI by specifying <configured value>@SIP_Remote as the
  1246. ; ; mailbox.
  1247.  
  1248. ;
  1249. ; Because you might have a large number of similar sections, it is generally
  1250. ; convenient to use templates for the common parameters, and add them
  1251. ; the the various sections. Examples are below, and we can even leave
  1252. ; the templates uncommented as they will not harm:
  1253.  
  1254. [basic-options](!) ; a template
  1255. dtmfmode=rfc2833
  1256. context=from-office
  1257. type=friend
  1258.  
  1259. [natted-phone](!,basic-options) ; another template inheriting basic-options
  1260. directmedia=no
  1261. host=dynamic
  1262.  
  1263. [public-phone](!,basic-options) ; another template inheriting basic-options
  1264. directmedia=yes
  1265.  
  1266. [my-codecs](!) ; a template for my preferred codecs
  1267. disallow=all
  1268. allow=ilbc
  1269. allow=g729
  1270. allow=gsm
  1271. allow=g723
  1272. allow=ulaw
  1273.  
  1274. [ulaw-phone](!) ; and another one for ulaw-only
  1275. disallow=all
  1276. allow=ulaw
  1277.  
  1278. ; and finally instantiate a few phones
  1279. ;
  1280. ; [2133](natted-phone,my-codecs)
  1281. ; secret = peekaboo
  1282. ; [2134](natted-phone,ulaw-phone)
  1283. ; secret = not_very_secret
  1284. ; [2136](public-phone,ulaw-phone)
  1285. ; secret = not_very_secret_either
  1286. ; ...
  1287. ;
  1288.  
  1289. ; Standard configurations not using templates look like this:
  1290. ;
  1291. ;[grandstream1]
  1292. ;type=friend
  1293. ;context=from-sip ; Where to start in the dialplan when this phone calls
  1294. ;callerid=John Doe <1234> ; Full caller ID, to override the phones config
  1295. ; on incoming calls to Asterisk
  1296. ;host=192.168.0.23 ; we have a static but private IP address
  1297. ; No registration allowed
  1298. ;directmedia=yes ; allow RTP voice traffic to bypass Asterisk
  1299. ;dtmfmode=info ; either RFC2833 or INFO for the BudgeTone
  1300. ;call-limit=1 ; permit only 1 outgoing call and 1 incoming call at a time
  1301. ; from the phone to asterisk (deprecated)
  1302. ; 1 for the explicit peer, 1 for the explicit user,
  1303. ; remember that a friend equals 1 peer and 1 user in
  1304. ; memory
  1305. ; There is no combined call counter for a "friend"
  1306. ; so there's currently no way in sip.conf to limit
  1307. ; to one inbound or outbound call per phone. Use
  1308. ; the group counters in the dial plan for that.
  1309. ;
  1310. ;mailbox=1234@default ; mailbox 1234 in voicemail context "default"
  1311. ;disallow=all ; need to disallow=all before we can use allow=
  1312. ;allow=ulaw ; Note: In user sections the order of codecs
  1313. ; listed with allow= does NOT matter!
  1314. ;allow=alaw
  1315. ;allow=g723.1 ; Asterisk only supports g723.1 pass-thru!
  1316. ;allow=g729 ; Pass-thru only unless g729 license obtained
  1317. ;callingpres=allowed_passed_screen ; Set caller ID presentation
  1318. ; See function CALLERPRES documentation for possible
  1319. ; values.
  1320.  
  1321. ;[xlite1]
  1322. ; Turn off silence suppression in X-Lite ("Transmit Silence"=YES)!
  1323. ; Note that Xlite sends NAT keep-alive packets, so qualify=yes is not needed
  1324. ;type=friend
  1325. ;regexten=1234 ; When they register, create extension 1234
  1326. ;callerid="Jane Smith" <5678>
  1327. ;host=dynamic ; This device needs to register
  1328. ;directmedia=no ; Typically set to NO if behind NAT
  1329. ;disallow=all
  1330. ;allow=gsm ; GSM consumes far less bandwidth than ulaw
  1331. ;allow=ulaw
  1332. ;allow=alaw
  1333. ;mailbox=1234@default,1233@default ; Subscribe to status of multiple mailboxes
  1334. ;registertrying=yes ; Send a 100 Trying when the device registers.
  1335.  
  1336. ;[snom]
  1337. ;type=friend ; Friends place calls and receive calls
  1338. ;context=from-sip ; Context for incoming calls from this user
  1339. ;secret=blah
  1340. ;subscribecontext=localextensions ; Only allow SUBSCRIBE for local extensions
  1341. ;language=de ; Use German prompts for this user
  1342. ;host=dynamic ; This peer register with us
  1343. ;dtmfmode=inband ; Choices are inband, rfc2833, or info
  1344. ;defaultip=192.168.0.59 ; IP used until peer registers
  1345. ;mailbox=1234@context,2345 ; Mailbox(-es) for message waiting indicator
  1346. ;subscribemwi=yes ; Only send notifications if this phone
  1347. ; subscribes for mailbox notification
  1348. ;vmexten=voicemail ; dialplan extension to reach mailbox
  1349. ; sets the Message-Account in the MWI notify message
  1350. ; defaults to global vmexten which defaults to "asterisk"
  1351. ;disallow=all
  1352. ;allow=ulaw ; dtmfmode=inband only works with ulaw or alaw!
  1353.  
  1354.  
  1355. ;[polycom]
  1356. ;type=friend ; Friends place calls and receive calls
  1357. ;context=from-sip ; Context for incoming calls from this user
  1358. ;secret=blahpoly
  1359. ;host=dynamic ; This peer register with us
  1360. ;dtmfmode=rfc2833 ; Choices are inband, rfc2833, or info
  1361. ;defaultuser=polly ; Username to use in INVITE until peer registers
  1362. ;defaultip=192.168.40.123
  1363. ; Normally you do NOT need to set this parameter
  1364. ;disallow=all
  1365. ;allow=ulaw ; dtmfmode=inband only works with ulaw or alaw!
  1366. ;progressinband=no ; Polycom phones don't work properly with "never"
  1367.  
  1368.  
  1369. ;[pingtel]
  1370. ;type=friend
  1371. ;secret=blah
  1372. ;host=dynamic
  1373. ;insecure=port ; Allow matching of peer by IP address without
  1374. ; matching port number
  1375. ;insecure=invite ; Do not require authentication of incoming INVITEs
  1376. ;insecure=port,invite ; (both)
  1377. ;qualify=1000 ; Consider it down if it's 1 second to reply
  1378. ; Helps with NAT session
  1379. ; qualify=yes uses default value
  1380. ;qualifyfreq=60 ; Qualification: How often to check for the
  1381. ; host to be up in seconds
  1382. ; Set to low value if you use low timeout for
  1383. ; NAT of UDP sessions
  1384. ;
  1385. ; Call group and Pickup group should be in the range from 0 to 63
  1386. ;
  1387. ;callgroup=1,3-4 ; We are in caller groups 1,3,4
  1388. ;pickupgroup=1,3-5 ; We can do call pick-p for call group 1,3,4,5
  1389. ;defaultip=192.168.0.60 ; IP address to use if peer has not registered
  1390. ;deny=0.0.0.0/0.0.0.0 ; ACL: Control access to this account based on IP address
  1391. ;permit=192.168.0.60/255.255.255.0
  1392. ;permit=192.168.0.60/24 ; we can also use CIDR notation for subnet masks
  1393. ;permit=2001:db8::/32 ; IPv6 ACLs can be specified if desired. IPv6 ACLs
  1394. ; apply only to IPv6 addresses, and IPv4 ACLs apply
  1395. ; only to IPv4 addresses.
  1396.  
  1397. ;[cisco1]
  1398. ;type=friend
  1399. ;secret=blah
  1400. ;qualify=200 ; Qualify peer is no more than 200ms away
  1401. ;host=dynamic ; This device registers with us
  1402. ;directmedia=no ; Asterisk by default tries to redirect the
  1403. ; RTP media stream (audio) to go directly from
  1404. ; the caller to the callee. Some devices do not
  1405. ; support this (especially if one of them is
  1406. ; behind a NAT).
  1407. ;defaultip=192.168.0.4 ; IP address to use until registration
  1408. ;defaultuser=goran ; Username to use when calling this device before registration
  1409. ; Normally you do NOT need to set this parameter
  1410. ;setvar=CUSTID=5678 ; Channel variable to be set for all calls from or to this device
  1411. ;setvar=ATTENDED_TRANSFER_COMPLETE_SOUND=beep ; This channel variable will
  1412. ; cause the given audio file to
  1413. ; be played upon completion of
  1414. ; an attended transfer.
  1415.  
  1416. ;[pre14-asterisk]
  1417. ;type=friend
  1418. ;secret=digium
  1419. ;host=dynamic
  1420. ;rfc2833compensate=yes ; Compensate for pre-1.4 DTMF transmission from another Asterisk machine.
  1421. ; You must have this turned on or DTMF reception will work improperly.
  1422. ;t38pt_usertpsource=yes ; Use the source IP address of RTP as the destination IP address for UDPTL packets
  1423. ; if the nat option is enabled. If a single RTP packet is received Asterisk will know the
  1424. ; external IP address of the remote device. If port forwarding is done at the client side
  1425. ; then UDPTL will flow to the remote device.
  1426.  
  1427.  
  1428. [BrahamCell]
  1429. type = friend
  1430. host = dynamic
  1431. secret = abraham
  1432. context = default
  1433. mailbox = 103@default
  1434.  
  1435. [BrahamPC]
  1436. type = friend
  1437. host = dynamic
  1438. secret = abraham
  1439. context = default
  1440. mailbox = 102@default
  1441.  
  1442. [101]
  1443. type = friend
  1444. host = dynamic
  1445. secret = abraham
  1446. context = inside
  1447.  
  1448. [campuzano]
  1449. type = friend
  1450. host = dynamic
  1451. secret = hola
  1452. context = inside
  1453.  
  1454. [martin]
  1455. type = friend
  1456. host = dynamic
  1457. secret = hola
  1458. context = inside
  1459.  
  1460. [abraham]
  1461. type = friend
  1462. host = dynamic
  1463. secret = hola
  1464. context = inside
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement