(M)  s i s t e m a   o p e r a c i o n a l   m a g n u x   l i n u x ~/ · documentação · suporte · sobre

  Next Previous Contents

7. Setup

In this chapter we try to setup VoIP system, simple at first, then more and more complex.

7.1 Simple communication: IP to IP


A (Win9x+Sound card)   -  -  -    B (Win9x+Sound card)

     192.168.1.1       -  -  -         192.168.1.2

        
             192.168.1.1 calls 192.168.1.2.

A and B should:

  1. have Microsoft Netmeeting (or other software) installed and properly configured.
  2. have a network card or other kind of TCP/IP interface to talk each other.

In this kind of view A can make a H323 call to B (if B has Netmeeting active) using B IP address. Then B can answer to it if it wants. After accepting call, VoIP data packets start to pass.

7.2 Using names

If you use Microsoft Windows in a lan you can call the other side using NetBIOS name. NetBIOS is a protocol that can work (stand over) with NetBEUI low level protocol and also with TCP/IP. It is only need to call the " computer name" on the other side to make a connection.

          A            -  -  -             B 
 
     192.168.1.1       -  -  -        192.168.1.2
   
        John           -  -  -           Alice

             
                    John calls Alice.

This is possible cause John call request to Alice is converted to IP calling by the NetBIOS protocol.

The above 2 examples are very easy to implement but aren't scalable.

In a more big view such as Internet it is impossible to use direct calling cause, usually, the callers don't know the destination IP address. Furthermore NetBIOS naming feature cannot work cause it uses broadcast messages, which typically don't pass ISP routers .

7.3 Internet calling using a WINS server

The NetBIOS name calling idea can be implemented also in a Internet environment, using a WINS server: NetBIOS clients can be configured to use a WINS server to resolve names.

PCs using the same WINS server will be able to make direct calling between them.


A (WINS Server is S) - - - - I  - - - -  B (WINS Server is S)
                             N
                             T  
                             E  - - - - -   S (WINS Server)   
C (WINS Server is S) - - - - R  
                             N
                             E  - - - -  D (WINS Server is S)
                             T
 
                   Internet communication

A, B, C and D are in different subnets, but they can call each other in a NetBIOS name calling fashion. The needed is that all are using S as WINS Server.

Note: WINS server hasn't very high performance cause it use NetBIOS feature and should only be used for joining few subnets.

7.4 A big problem: the masquering.

A problem of few IPs is commonly solved using the so called masquering (also NAT, network address translation): there is only 1 IP public address (that Internet can directly " see" ), the others machines are " masqueraded" using all this IP.

        
           A  - - -

           B  - - -   Router with NAT  - - -  Internet

           C  - - -
     
                     
                       This doesn't work

In the example A,B and C can navigate, pinging, using mail and news services with Internet people, but they CANNOT make a VoIP call. This because H323 protocol send IP address at application level, so the answer will never arrive to source (that is using a private IP address).

Solutions:

  • there is a Linux module that modifies H323 packets avoiding this problem. You can download the module here . To install it you have to copy it to source directory specified, modify Makefile and go compiling and installing module with " modprobe ip_masq_h323" . Unfortunately this module cannot work with ohphone software at this moment (I don't know why).

 
           A  - - -   Router with NAT 
 
           B  - - -         +           - - -  Internet

           C  - - -  ip_masq_h323 module
 
 
                         This works

  • There is a application program that also solves this problem: for more see Par 5.7

           
           A  - - -   
 
           B  - - -    PhonePatch   - - -  Internet

           C  - - -  
 
 
                         This works

7.5 Using Linux

With Linux (as an h323 terminal) you can experiment everything done before.

Ohphone Sintax

Sintax is:

" ohphone -l|--listen [options]"

" ohphone [options]... address"

  • " -l" , listen to standard port (1720)
  • " address" , mean that we don't wait for a call, but we connect to " address" host
  • " -n" , " --no-gatekeeper" , this is ok if we haven't a gatekeeper
  • " -q num" , " --quicknet num" , it uses Quicknet card, device /dev/phone(num)
  • " -s device" , " --sound device" , it uses /dev/device sound device.
  • " -j delay" , " --jitter delay" , it change delay buffer to " delay" .

Also, when you start ohphone, you can give command to the interpreter directly (like decrease AEC, Automatic Echo Cancellation).

7.6 Setting up a gatekeeper

You can also experiment gatekeeper feature

Example
  
        (Terminal H323) A  - - -    
                                 \
        (Terminal H323) B  - -  - D (Gatekeeper)
                                 /
        (Terminal H323) C  - - -  
               
                   Gatekeeper configuration

  1. Hosts A,B and C have gatekeeper setting to point to D.
  2. At start time each host tells D own address and own name (also with aliases) which could be used by a caller to reach it.
  3. When a terminal asks D for an host, D answers with right IP address, so communication can be established.

We have to notice that the Gatekeeper is able only to solve name in IP address, it couldn't join hosts that aren't reachable each other (at IP level), in other words it couldn't act as a NAT router.

You can find gatekeeper code here : openh323 library is also required.

Program has only to be launch with -d (as daemon) or -x (execute) parameter.

In addition you can use a config file (.ini) you find here .

7.7 Setting up a gateway

As we said, gateway is an entity that can join VoIP to PSTN lines allowing us to made call from Internet to a classic telephone. So, in addition, we need a card that could manage PSTN lines: Quicknet LineJack does it.

From OpenH323 web site we download:

  1. driver for Linejack
  2. PSTNGw application to create our gateway.

If executable doesn't work you need to download source code and openh323 library , then install all in a home user directory.

After that you only need to launch PSTNGw to start your H323 gateway.


Next Previous Contents