您的位置:首页 > 其它

Asterisk Letting SIP clients connect directly

2010-11-22 13:44 190 查看
Asterisk by default connects all media streams through asterisk to be able to connect various protocols and media to each other.

If you have two SIP phones, the media path can be connected directly between the phones without going through Asterisk. Asterisk in this case only handles signalling. It requires that both extensions are using SIP and support the same codecs.

Disable transfer

If you want to transfer calls by pressing the # key during a call, Asterisk will stay in the media stream to be able to listen for # signals. Remove the "tT" from the dial() command to disable this.

Configuration

This is done in sip.conf by using
  canreinvite=yes

in the configuration of the SIP extension. This is the default behaviour.

Example

 [morgan]
 secret=thesweet43
 type=friend
 host=dynamic
 context=sipexts
 mailbox=1050
 callerid="morgan@yourdomain.com" <1050>
 dmtfmode=rfc2833
 canreinvite=yes

Please note

There are SIP clients that do not work well with these settings, like the Cisco ATA 186.

 

See Asterisk sip canreinvite for more information.

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息