H323 To SIP Signalling Proxy

From Yate Documentation
(Difference between revisions)
Jump to: navigation, search
(Note)
 
(59 intermediate revisions by one user not shown)
Line 1: Line 1:
== H323 - SIP signalling proxy ==
 
  
 
One of the most common features requested for Yate is proxying between the H.323 and SIP protocols. This allows equipment that only knows one of the protocols to make calls to equipment that knows only the other protocol.
 
One of the most common features requested for Yate is proxying between the H.323 and SIP protocols. This allows equipment that only knows one of the protocols to make calls to equipment that knows only the other protocol.
  
An extra bonus is that both H.323 and SIP use the RTP protocol to transport the actual voice data. The proxy is configured to tell both ends to forward the RTP packets directly to the other end. This way the proxy machine doesn't need to handle the voice traffic, unpack the RTP packets, or understand the data format. Formats for which Yate has no codec can still be proxied provided they are supported by both endpoints.
+
[[File:yate_h323toSIP.png]]
  
Some of the Yate modules - namely h323chan and ysipchan - have the ability to negotiate [[RTP Forwarding]] during the routing stage.  
+
An extra bonus is that both H.323 and SIP use the RTP protocol to transport the actual voice data. The proxy is configured to tell both ends to forward the RTP packets directly to the other end. This way the proxy machine doesn't need to handle the voice traffic, unpack the RTP packets, or understand the data format. Formats for which Yate has no codec, can still be proxied provided they are supported by both endpoints. The endpoints in this case can be phones or softphones.
  
=== Compiling H323plus ===
+
Some of the Yate modules - namely h323chan and ysipchan - have the ability to negotiate [[RTP Forwarding]] during the routing stage.
  
Yate with [[http://yate.null.ro/pmwiki/index.php?n=Main.H323plus| H323plus compiling]]
+
Below you can find the steps to follow to configure Yate as a H323 to SIP signalling Proxy.  
  
 +
=== Compiling H323 library ===
  
NOTE !!! OpenH323 has been deprecated by H323plus.
+
There are two libraries that can be used:
 +
* OpenH323 library
 +
<font color="green">Note!</font> OpenH323 is the recommanded library to use with Yate because is the stable version.
 +
Take a look to learn how to [[OpenH323| compile OpenH323]] or [[#Quick how to install OpenH323 library under linux|see the quick how to]].
  
 +
* H323plus library
 +
<font color="red">Note!</font> Yate works with H323plus support but it is not stable. 
 +
Here is how to compile Yate with [[Compiling Yate with H323plus support |H323plus]].
  
=== Compiling OpenH323 ===
+
==== Quick how to install OpenH323 library under linux====
  
Take a look to learn how to [[http://yate.null.ro/pmwiki/index.php?n=Main.OpenH323| compile OpenH323]].
+
The OpenH323 library together with matching PWLib are available at: http://yate.null.ro/tarballs/openh323/
 +
 
 +
Yate needs OpenH323 and PWLib to be installed in '''/usr/local''' directory.  
 +
 
 +
=====Install PwLib=====
 +
 
 +
For doing a basic installation just run in the main PwLib folder:
 +
 
 +
  ./configure with --prefix=/usr/local/pwlib
 +
  make opt
 +
  make install
 +
 
 +
=====Install OpenH323=====
 +
 
 +
For doing a basic installation just run in the main OpenH323 folder:
 +
./configure --disable-ixj --prefix=/usr/local/openh323
 +
make opt
 +
make install
 +
 
 +
=====Install Yate with Pwlib and OpenH323=====
 +
 
 +
In Yate folder do:
 +
 
 +
./configure --with-pwlib=/usr/local/pwlib --with-openh323=/usr/local/openh323
 +
make
  
 
=== Creating a H.323 to SIP proxy ===
 
=== Creating a H.323 to SIP proxy ===
  
 
Here's how to create the desired application: a H.323 to SIP proxy using the G.711u or G.711a or G.723 audio formats. Note that we have no codec for G.723 but we still can pass it directly between clients.
 
Here's how to create the desired application: a H.323 to SIP proxy using the G.711u or G.711a or G.723 audio formats. Note that we have no codec for G.723 but we still can pass it directly between clients.
 +
 +
==== Configuring H323 Channel module ====
  
 
First we have to set up the H.323 channel to use RTP pass-through mode. In this channel the RTP mode must be configured globally, not per call.
 
First we have to set up the H.323 channel to use RTP pass-through mode. In this channel the RTP mode must be configured globally, not per call.
  
 
In the file h323chan.conf we put:
 
In the file h323chan.conf we put:
{|width="85%" class="wikitable"
+
 
|
+
 
  [general]
 
  [general]
 +
; Use an external RTP module instead of the native OpenH323 RTP stack, which is
 +
;  very cpu intensive. If no external RTP can be found it will fallback to the
 +
;  native stack.
 
  external_rtp=yes
 
  external_rtp=yes
  passtrough_rtp=yes  ; note the incorrect spelling
+
   
 
+
 
  [codecs]
 
  [codecs]
 +
; This section allows to individually enable or disable the codecs
 
  default=no
 
  default=no
 +
; mulaw: bool: Companded-only G711 mu-law (G.711-uLaw-64k)
 
  mulaw=yes
 
  mulaw=yes
 +
; alaw: bool: Companded-only G711 a-law (G.711-ALaw-64k)
 
  alaw=yes
 
  alaw=yes
 +
; g723: bool: ITU G.723 all variations (G.723)
 
  g723=on
 
  g723=on
 +
; g729: bool: ITU G.729 all variations (G.729)
 
  g729=on
 
  g729=on
 
+
 
  [ep]
 
  [ep]
 +
; Control the endpoint operation of the module
 +
; faststart: bool: Enable Fast Start mode (offer media channels early)
 +
; This setting is required when doing direct RTP forwarding between endpoints
 
  faststart=on
 
  faststart=on
|}
 
  
 
We must enable fast start mode as it will provide the media network address early enough to send it to SIP.
 
We must enable fast start mode as it will provide the media network address early enough to send it to SIP.
 +
 +
==== Configuring SIP Channel module====
  
 
In the ysipchan.conf file we put:
 
In the ysipchan.conf file we put:
  
{|width="85%" class="wikitable"
 
|
 
 
  [codecs]
 
  [codecs]
 
  default=off
 
  default=off
Line 54: Line 94:
 
  alaw=yes
 
  alaw=yes
 
  g723=yes
 
  g723=yes
|}
 
  
 
There is no special setting for RTP pass-through as the SIP module can use the routing time decision.
 
There is no special setting for RTP pass-through as the SIP module can use the routing time decision.
  
Now we have to establish routes and to activate RTP pass-trough for them. We will use the Regular expression routing module for that.
+
==== Configuring routing module====
 +
 
 +
Now we have to establish routes and to activate RTP for them. We will use the Regular expression routing module for that.
  
 
In the regexroute.conf file we put:
 
In the regexroute.conf file we put:
  
{| width="85%" class="wikitable"
 
|
 
 
  [default]
 
  [default]
 
   ${rtp_forward}possible=;rtp_forward=yes
 
   ${rtp_forward}possible=;rtp_forward=yes
 
   ${formats}^\([^,]*\)=;formats=\1
 
   ${formats}^\([^,]*\)=;formats=\1
   ^00.*=h323/\0@10.0.0.3
+
    
  .*=sip/sip:\0@10.1.0.5
+
;numbers starting with 00 are sent to a H.323 gateway at address 10.0.0.3
|}
+
^00.*=h323/\0@10.0.0.3
 +
;all other numbers are routed to a SIP agent at address 10.1.0.5
 +
.*=sip/sip:\0@10.1.0.5
  
 
We accept RTP Forwarding for all modules that declare that capability. If the data formats list holds more than one we will only keep the first one. This is required so that we know in advance which codec will be used. While SIP sends a list of formats and accepts data in any of them, H.323 requires negotiating a specific format. Since that would require re-INVITE in SIP, we are better off deciding early what format we like.
 
We accept RTP Forwarding for all modules that declare that capability. If the data formats list holds more than one we will only keep the first one. This is required so that we know in advance which codec will be used. While SIP sends a list of formats and accepts data in any of them, H.323 requires negotiating a specific format. Since that would require re-INVITE in SIP, we are better off deciding early what format we like.
Line 75: Line 116:
 
In the sample routing rules above, numbers starting with 00 are sent to a H.323 gateway at address 10.0.0.3 while all others are routed to a SIP agent at address 10.1.0.5
 
In the sample routing rules above, numbers starting with 00 are sent to a H.323 gateway at address 10.0.0.3 while all others are routed to a SIP agent at address 10.1.0.5
  
This is another example that routes everything from protocol sip to ip 10.0.0.3 on protocol h.323 and everything that comes from h323 goes to 10.1.0.5 on protocol SIP:
+
==== Another routing example ====
 +
 
 +
This is another example that routes everything from protocol SIP to IP 10.0.0.3 on protocol H323 and everything that comes from H323 goes to 10.1.0.5 on protocol SIP:
  
{|width="85%" class="wikitable"
 
|
 
 
   [default]
 
   [default]
 
   ${rtp_forward}possible=;rtp_forward=yes
 
   ${rtp_forward}possible=;rtp_forward=yes
Line 85: Line 126:
 
   ${module}^h323$=sip/sip:${called}@10.1.0.5
 
   ${module}^h323$=sip/sip:${called}@10.1.0.5
 
   .*=-;error=forbidden;reason=Protocol not allowed
 
   .*=-;error=forbidden;reason=Protocol not allowed
|}
+
 
 +
==== Troubleshooting ====
 +
 
 +
When testing this configuration if you will find this error:
 +
<WARN> libh323_linux_x86_.so.1.23.0: cannot open shared object file: No such file or directory;
 +
 
 +
To solve it, you must add in file /etc/ld.so.conf this line: /usr/local/lib. And then run ldconfig as root.
 +
 
 +
=== Handling simultaneous calls===
  
 
Here are some ideas for configuring the system for [[handling many simultaneous calls]]. The RTP section will probably not apply.
 
Here are some ideas for configuring the system for [[handling many simultaneous calls]]. The RTP section will probably not apply.
  
As a final note, there is nothing wrong in proxying the signalling between two endpoints that use the same protocol! It may be less optimal than a native protocol proxy but it works and preserves the uniformity of configurations.
+
===Note===
 +
 
 +
There is nothing wrong in proxying the signalling between two endpoints that use the same protocol!<br>
 +
It may be less optimal than a native protocol proxy but it works and preserves the uniformity of configurations.
 +
 
 +
 
 +
'''See also'''
 +
 
 +
*[[OpenH323]]
 +
*[[RTP Forwarding]]
 +
 
 +
[[Category:SIP]] [[Category:H323]] [[Category:Proxy]] [[Category:Server]]

Latest revision as of 17:24, 31 October 2013

One of the most common features requested for Yate is proxying between the H.323 and SIP protocols. This allows equipment that only knows one of the protocols to make calls to equipment that knows only the other protocol.

Yate h323toSIP.png

An extra bonus is that both H.323 and SIP use the RTP protocol to transport the actual voice data. The proxy is configured to tell both ends to forward the RTP packets directly to the other end. This way the proxy machine doesn't need to handle the voice traffic, unpack the RTP packets, or understand the data format. Formats for which Yate has no codec, can still be proxied provided they are supported by both endpoints. The endpoints in this case can be phones or softphones.

Some of the Yate modules - namely h323chan and ysipchan - have the ability to negotiate RTP Forwarding during the routing stage.

Below you can find the steps to follow to configure Yate as a H323 to SIP signalling Proxy.

Contents

[edit] Compiling H323 library

There are two libraries that can be used:

  • OpenH323 library
Note! OpenH323 is the recommanded library to use with Yate because is the stable version.

Take a look to learn how to compile OpenH323 or see the quick how to.

  • H323plus library
Note! Yate works with H323plus support but it is not stable.  

Here is how to compile Yate with H323plus.

[edit] Quick how to install OpenH323 library under linux

The OpenH323 library together with matching PWLib are available at: http://yate.null.ro/tarballs/openh323/

Yate needs OpenH323 and PWLib to be installed in /usr/local directory.

[edit] Install PwLib

For doing a basic installation just run in the main PwLib folder:

 ./configure with --prefix=/usr/local/pwlib
 make opt
 make install
[edit] Install OpenH323

For doing a basic installation just run in the main OpenH323 folder:

./configure --disable-ixj --prefix=/usr/local/openh323
make opt
make install
[edit] Install Yate with Pwlib and OpenH323

In Yate folder do:

./configure --with-pwlib=/usr/local/pwlib --with-openh323=/usr/local/openh323
make

[edit] Creating a H.323 to SIP proxy

Here's how to create the desired application: a H.323 to SIP proxy using the G.711u or G.711a or G.723 audio formats. Note that we have no codec for G.723 but we still can pass it directly between clients.

[edit] Configuring H323 Channel module

First we have to set up the H.323 channel to use RTP pass-through mode. In this channel the RTP mode must be configured globally, not per call.

In the file h323chan.conf we put:

[general]
; Use an external RTP module instead of the native OpenH323 RTP stack, which is
;  very cpu intensive. If no external RTP can be found it will fallback to the
;  native stack. 
external_rtp=yes

[codecs]
; This section allows to individually enable or disable the codecs
default=no
; mulaw: bool: Companded-only G711 mu-law (G.711-uLaw-64k)
mulaw=yes
; alaw: bool: Companded-only G711 a-law (G.711-ALaw-64k)
alaw=yes
; g723: bool: ITU G.723 all variations (G.723)
g723=on
; g729: bool: ITU G.729 all variations (G.729)
g729=on

[ep]
; Control the endpoint operation of the module
; faststart: bool: Enable Fast Start mode (offer media channels early)
; This setting is required when doing direct RTP forwarding between endpoints
faststart=on

We must enable fast start mode as it will provide the media network address early enough to send it to SIP.

[edit] Configuring SIP Channel module

In the ysipchan.conf file we put:

[codecs]
default=off
mulaw=yes
alaw=yes
g723=yes

There is no special setting for RTP pass-through as the SIP module can use the routing time decision.

[edit] Configuring routing module

Now we have to establish routes and to activate RTP for them. We will use the Regular expression routing module for that.

In the regexroute.conf file we put:

[default]
 ${rtp_forward}possible=;rtp_forward=yes
 ${formats}^\([^,]*\)=;formats=\1
 
;numbers starting with 00 are sent to a H.323 gateway at address 10.0.0.3
^00.*=h323/\0@10.0.0.3
;all other numbers are routed to a SIP agent at address 10.1.0.5
.*=sip/sip:\0@10.1.0.5

We accept RTP Forwarding for all modules that declare that capability. If the data formats list holds more than one we will only keep the first one. This is required so that we know in advance which codec will be used. While SIP sends a list of formats and accepts data in any of them, H.323 requires negotiating a specific format. Since that would require re-INVITE in SIP, we are better off deciding early what format we like.

In the sample routing rules above, numbers starting with 00 are sent to a H.323 gateway at address 10.0.0.3 while all others are routed to a SIP agent at address 10.1.0.5

[edit] Another routing example

This is another example that routes everything from protocol SIP to IP 10.0.0.3 on protocol H323 and everything that comes from H323 goes to 10.1.0.5 on protocol SIP:

 [default]
 ${rtp_forward}possible=;rtp_forward=yes
 ${formats}^\([^,]*\)=;formats=\1
 ${module}^sip$=h323/${called}@10.0.0.3
 ${module}^h323$=sip/sip:${called}@10.1.0.5
 .*=-;error=forbidden;reason=Protocol not allowed

[edit] Troubleshooting

When testing this configuration if you will find this error:

<WARN> libh323_linux_x86_.so.1.23.0: cannot open shared object file: No such file or directory; 

To solve it, you must add in file /etc/ld.so.conf this line: /usr/local/lib. And then run ldconfig as root.

[edit] Handling simultaneous calls

Here are some ideas for configuring the system for handling many simultaneous calls. The RTP section will probably not apply.

[edit] Note

There is nothing wrong in proxying the signalling between two endpoints that use the same protocol!
It may be less optimal than a native protocol proxy but it works and preserves the uniformity of configurations.


See also

Personal tools
Namespaces

Variants
Actions
Preface
Configuration
Administrators
Developers