Asterisk outbound module: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 5: Line 5:
* Github : https://github.com/pchero/asterisk-outbound
* Github : https://github.com/pchero/asterisk-outbound
* Manual : https://rawgit.com/pchero/asterisk-outbound/master/doc/_build/html/index.html
* Manual : https://rawgit.com/pchero/asterisk-outbound/master/doc/_build/html/index.html
== Idea ==
* UUI setup.


== UUI(User to User Information) ==
== UUI(User to User Information) ==
* https://tools.ietf.org/html/draft-ietf-cuss-sip-uui-06 - IETF draft.
* https://tools.ietf.org/html/draft-ietf-cuss-sip-uui-06 - IETF draft.
* RFC 7433 - A Mechanism for Transporting User-to-User Call Control Information in SIP
* RFC 7433 - A Mechanism for Transporting User-to-User Call Control Information in SIP
RFC 7433 에서는 User-to-User information 을 위해 User-to-User 헤더를 권고하고 있다. 하지만 실제로는 각각의 벤더마다 다른 헤더를 사용하는 듯 하다.


Asterisk 에서 UUI 를 설정하기 위해서는 SIPAddHeader 를 설정해야 한다<ref>http://stackoverflow.com/questions/39641926/asterisk-sip-user-to-user</ref>.
Asterisk 에서 UUI 를 설정하기 위해서는 SIPAddHeader 를 설정해야 한다<ref>http://stackoverflow.com/questions/39641926/asterisk-sip-user-to-user</ref>.
* http://wiki.sangoma.com/NSG-advanced-parameters-new - Sangoma(X-FreeTDM-UUI 헤더 사용).
* https://developer.cisco.com/media/remote-expert-mobile-developer-tutorials/ios-sdk/08-encoding-user-to-user-data/encoding-user-to-user-data.html - Cisco(User-to-User 헤더 사용).
Originate AMI 에 Header 설정을 위한 부분이 있음.
<pre>
Action: Originate
Channel:......
....
Variable: __SIPADDHEADER51=X-Your-Header: header-val
...
...
</pre>
=== Others ===
* http://forums.asterisk.org/viewtopic.php?p=153708
* http://wiki.sangoma.com/NSG-advanced-parameters-new
== Trunk capacity ==
Asterisk 에서는 자동적으로 Trunk 의 capacity 를 알 수 있는 방법이 없음. 또한, 현재 사용중인 trunk 의 용량을 체크해주지 않음.
모든 발신/수신 중인 채널을 추적해서 Dialplan 에서 해결해야 함.


== Etc ==
== Etc ==

Latest revision as of 10:04, 25 October 2016

Overview

Asterisk outbound module project.

Basic

UUI(User to User Information)

RFC 7433 에서는 User-to-User information 을 위해 User-to-User 헤더를 권고하고 있다. 하지만 실제로는 각각의 벤더마다 다른 헤더를 사용하는 듯 하다.

Asterisk 에서 UUI 를 설정하기 위해서는 SIPAddHeader 를 설정해야 한다<ref>http://stackoverflow.com/questions/39641926/asterisk-sip-user-to-user</ref>.

Originate AMI 에 Header 설정을 위한 부분이 있음.

Action: Originate
Channel:......
....
Variable: __SIPADDHEADER51=X-Your-Header: header-val
...
...

Others

Trunk capacity

Asterisk 에서는 자동적으로 Trunk 의 capacity 를 알 수 있는 방법이 없음. 또한, 현재 사용중인 trunk 의 용량을 체크해주지 않음.

모든 발신/수신 중인 채널을 추적해서 Dialplan 에서 해결해야 함.

Etc

Reference

<references />