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