SIPサーバ(PartySIP)のインストールと起動


The GNU oSIP libraryのインストール

  • The GNU oSIP libraryのリンクを辿って、「ftp://ftp.gnu.org/pub/gnu/osip」から以下のファイルをダウンロードしました。
    ・libosip-0.9.7.tar.gz 451 KB 2003年05月06日 14:24:00

  • 以下の手順でコンパイル、インストールします。

    $ tar zxvf libosip-0.9.7.tar.gz
    $ cd libosip-0.9.7
    $ ./configure
    $ make
    $ su
    # make install
    

  • 「/etc/ld.so.conf」に、以下の様に1行を追加し、その後「/sbin/ldconfig」を実行します。

    # vi /etc/ld.so.conf
    /usr/local/lib      <−−この行追加
    
    
    # /sbin/ldconfig
    

PartySIPのインストール

  • PartySIPは、ダウンロードのページから以下のファイルをダウンロードします。

    ・partysip-0.6.0.tar.gz 13-May-2003 09:13 483k

  • 以下の手順でインストールし、その後「/sbin/ldconfig」を実行します。

    $ tar xzvf partysip-0.6.0.tar.gz
    $ cd partysip-0.6.0
    $ ./configure
    $ make
    $ su
    # make install
    # /sbin/ldconfig
    


設定ファイルの修正

  • PartySIPのソースファイルを展開したディレクトリにある設定ファイル「partysip.conf」を修正し、SIPサーバのIPアドレスとサーバ名を記述します。「partysip.conf」の全体はこちら

    # vi /usr/local/etc/partysip/partysip.conf
    
    # partysip.conf file
    
    
    ###
    ### serverip is now AUTODETECTED on linux/*BSD/Win32. (it may work on any Unix)
    ###
    ### You can force the order of ip address by giving you
    ### own list.
    ###
    
    # serverip = 192.168.1.10, 127.0.0.1
    (修正)
    serverip = 192.168.0.4, 127.0.0.1
    
    ###
    ### servername must be edited.
    ###
    ### Please give the list of all FQDNs of your host separated by commas.
    
    # servername  = sip.wellx.com, wellx.com
    # serverport_udp = 5060
    (修正)
    servername  = 192.168.0.4
    

PartySIPの起動

  • 以下のコマンドで起動します。

    # /usr/local/bin/partysip &
    



前に戻る | 次へ進む

メニューへもどる


Copyright (c) 2003 Hiroshi Nakamura. All rights reserved.